You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by de...@apache.org on 2009/01/28 21:22:00 UTC

svn commit: r738605 - /maven/shared/trunk/maven-doxia-tools/pom.xml

Author: dennisl
Date: Wed Jan 28 20:22:00 2009
New Revision: 738605

URL: http://svn.apache.org/viewvc?rev=738605&view=rev
Log:
o Reorder POM elements following our code convention.

Modified:
    maven/shared/trunk/maven-doxia-tools/pom.xml

Modified: maven/shared/trunk/maven-doxia-tools/pom.xml
URL: http://svn.apache.org/viewvc/maven/shared/trunk/maven-doxia-tools/pom.xml?rev=738605&r1=738604&r2=738605&view=diff
==============================================================================
--- maven/shared/trunk/maven-doxia-tools/pom.xml (original)
+++ maven/shared/trunk/maven-doxia-tools/pom.xml Wed Jan 28 20:22:00 2009
@@ -19,7 +19,7 @@
   under the License.
 -->
 
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
   <modelVersion>4.0.0</modelVersion>
 
   <parent>
@@ -31,6 +31,7 @@
   <groupId>org.apache.maven.shared</groupId>
   <artifactId>maven-doxia-tools</artifactId>
   <version>1.0.2-SNAPSHOT</version>
+
   <name>Maven Doxia Integration Tools</name>
   <description>A collection of tools to help the integration of Doxia in Maven plugins.</description>
 
@@ -49,22 +50,10 @@
     <url>http://jira.codehaus.org/browse/MSHARED</url>
   </issueManagement>
 
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.codehaus.plexus</groupId>
-        <artifactId>plexus-maven-plugin</artifactId>
-        <executions>
-          <execution>
-            <id>create-component-descriptor</id>
-            <goals>
-              <goal>descriptor</goal>
-            </goals>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
+  <properties>
+    <doxia-sitetools.version>1.0-alpha-11</doxia-sitetools.version>
+    <mavenVersion>2.0.6</mavenVersion>
+  </properties>
 
   <dependencies>
     <dependency>
@@ -76,22 +65,22 @@
     <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-project</artifactId>
+      <artifactId>maven-artifact</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-artifact</artifactId>
+      <artifactId>maven-artifact-manager</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-artifact-manager</artifactId>
+      <artifactId>maven-model</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
-      <artifactId>maven-model</artifactId>
+      <artifactId>maven-project</artifactId>
       <version>${mavenVersion}</version>
     </dependency>
     <dependency>
@@ -139,6 +128,23 @@
     </dependency>
   </dependencies>
 
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.codehaus.plexus</groupId>
+        <artifactId>plexus-maven-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>create-component-descriptor</id>
+            <goals>
+              <goal>descriptor</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+
   <reporting>
     <plugins>
       <plugin>
@@ -171,9 +177,4 @@
       </plugin>
     </plugins>
   </reporting>
-
-  <properties>
-    <doxia-sitetools.version>1.0-alpha-11</doxia-sitetools.version>
-    <mavenVersion>2.0.6</mavenVersion>
-  </properties>
 </project>