You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@shiro.apache.org by bd...@apache.org on 2016/12/14 19:58:19 UTC

shiro git commit: Generate the shiro.daop.rdf file as part of the site build

Repository: shiro
Updated Branches:
  refs/heads/gen-doap 2fed5d196 -> 387c885c9


Generate the shiro.daop.rdf file as part of the site build


Project: http://git-wip-us.apache.org/repos/asf/shiro/repo
Commit: http://git-wip-us.apache.org/repos/asf/shiro/commit/387c885c
Tree: http://git-wip-us.apache.org/repos/asf/shiro/tree/387c885c
Diff: http://git-wip-us.apache.org/repos/asf/shiro/diff/387c885c

Branch: refs/heads/gen-doap
Commit: 387c885c96e25552b326b2ee59b87ad9f582febf
Parents: 2fed5d1
Author: Brian Demers <bd...@apache.org>
Authored: Wed Dec 14 11:58:08 2016 -0800
Committer: Brian Demers <bd...@apache.org>
Committed: Wed Dec 14 11:58:08 2016 -0800

----------------------------------------------------------------------
 pom.xml | 56 +++++++++++++++++++++++++++++++++++++++++++++++++++++---
 1 file changed, 53 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/shiro/blob/387c885c/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index 1162d41..787ca90 100644
--- a/pom.xml
+++ b/pom.xml
@@ -61,6 +61,7 @@
             <name>Apache Shiro Site</name>
             <url>scp://people.apache.org/www/shiro.apache.org/static/latest</url>
         </site>
+        <downloadUrl>https://shiro.apache.org/download.html</downloadUrl>
     </distributionManagement>
 
     <properties>
@@ -173,6 +174,9 @@
             <organization>Stormpath</organization>
             <organizationUrl>http://www.stormpath.com</organizationUrl>
             <timezone>-8</timezone>
+            <roles>
+                <role>PMC Chair</role>
+            </roles>
         </developer>
         <developer>
             <id>kaosko</id>
@@ -200,9 +204,9 @@
             <id>bdemers</id>
             <name>Brian Demers</name>
             <email>bdemers@apache.org</email>
-            <url>http://about.me/brian.demers</url>
-            <organization>Sonatype</organization>
-            <organizationUrl>http://www.sonatype.com/</organizationUrl>
+            <url>https://stormpath.com/blog/author/bdemers</url>
+            <organization>Stormpath</organization>
+            <organizationUrl>https://stormpath.com/</organizationUrl>
             <timezone>-5</timezone>
         </developer>
         <developer>
@@ -479,6 +483,52 @@
 
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-doap-plugin</artifactId>
+                <version>1.2</version>
+                <inherited>false</inherited>
+                <configuration>
+                    <artifact>
+
+                    </artifact>
+                    <doapOptions>
+                        <!-- See http://projects.apache.org/languages.html -->
+                        <programmingLanguage>Java</programmingLanguage>
+                        <!-- http://projects.apache.org/categories.html -->
+                        <category>library, web-framework</category>
+                        <!--<category>library, web-framework, security</category>-->
+                        <bugDatabase>${project.issueManagement.url}</bugDatabase>
+                        <created>${project.inceptionYear}-01-01</created>
+                        <description>${project.description}</description>
+                        <downloadPage>${project.distributionManagement.downloadUrl}</downloadPage>
+                        <homepage>${project.url}</homepage>
+                        <mailingList>${project.url}/mail-lists.html</mailingList>
+                        <name>${project.name}</name>
+                        <shortdesc>A simple to use Java Security Framework.</shortdesc>
+                        <vendor>${project.organization.name}</vendor>
+                    </doapOptions>
+
+                    <asfExtOptions>
+                        <charter>The mission of the Apache Shiro project is to create and maintain an easy to use authentication and authorization framework.</charter>
+
+                        <!-- Default values -->
+                        <pmc>${project.url}</pmc>
+                        <name>${project.name}</name>
+                    </asfExtOptions>
+
+                </configuration>
+                <executions>
+                    <execution>
+                        <id>site</id>
+                        <phase>pre-site</phase>
+                        <goals>
+                            <goal>generate</goal>
+                        </goals>
+                    </execution>
+                </executions>
+            </plugin>
+
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-release-plugin</artifactId>
                 <version>2.5.3</version>
                 <configuration>