You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by se...@apache.org on 2013/06/25 03:23:17 UTC

svn commit: r1496329 - /maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml

Author: sebb
Date: Tue Jun 25 01:23:17 2013
New Revision: 1496329

URL: http://svn.apache.org/r1496329
Log:
Maven layout conventions

Modified:
    maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml

Modified: maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml?rev=1496329&r1=1496328&r2=1496329&view=diff
==============================================================================
--- maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml (original)
+++ maven/sandbox/trunk/plugins/maven-digest-plugin/pom.xml Tue Jun 25 01:23:17 2013
@@ -30,29 +30,50 @@
   <version>0.1-SNAPSHOT</version>
   <packaging>maven-plugin</packaging>
   <name>maven-digest-plugin Apache Maven Mojo</name>
-  <inceptionYear>2013</inceptionYear>
-  <!-- TODO fix URL -->
-  <url>http://maven.apache.org/</url>
-
 <description>
 The Apache Maven Digest Mojo provides digest (hashing) facilities for files
 </description>
+  <!-- TODO fix URL -->
+  <url>http://maven.apache.org/</url>
+  <inceptionYear>2013</inceptionYear>
+  <organization>
+    <name>The Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
+  <!-- TODO -->
+  <licenses>
+    <license>
+      
+    </license>
+  </licenses>
+  
+  <developers/>
+  <contributors/>
 
-  <issueManagement>
-    <system>jira</system>
-    <!-- TODO fix -->
-    <url>http://jira.codehaus.org/browse/M-TODO-FIX</url>
-  </issueManagement>
+  <mailingLists/>
+
+  <prerequisites>
+    <maven>${mavenVersion}</maven>
+  </prerequisites>
 
+
+  <modules/>
+  
   <scm>
     <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/commons-digest-plugin/trunk/</connection>
     <developerConnection>scm:svn:https://svn.apache.org/repos/asf/commons/proper/commons-digest-plugin/trunk/</developerConnection>
     <url>http://svn.apache.org/viewvc/commons/proper/commons-digest-plugin/trunk/</url>
   </scm>
 
-  <prerequisites>
-    <maven>${mavenVersion}</maven>
-  </prerequisites>
+  <issueManagement>
+    <system>jira</system>
+    <!-- TODO fix -->
+    <url>http://jira.codehaus.org/browse/M-TODO-FIX</url>
+  </issueManagement>
+
+  <ciManagement/>
+
+  <distributionManagement/>
 
    <properties>
     <mavenVersion>2.2.1</mavenVersion>
@@ -61,6 +82,8 @@ The Apache Maven Digest Mojo provides di
     <maven.compiler.target>1.5</maven.compiler.target>
   </properties>
 
+  <dependencyManagement/>
+
   <dependencies>
     <!-- We use Commons Codec to create the hashes -->
     <dependency>
@@ -111,6 +134,9 @@ The Apache Maven Digest Mojo provides di
     </dependency>
   </dependencies>
 
+  <repositories/>
+  <pluginRepositories/>
+
   <build>
     <plugins>
       <plugin>
@@ -152,5 +178,9 @@ The Apache Maven Digest Mojo provides di
         </executions>
       </plugin>
     </plugins>
- </build>
+  </build>
+
+  <reporting/>
+
+  <profiles/>
 </project>