You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by vs...@apache.org on 2009/05/30 13:14:36 UTC

svn commit: r780239 - /maven/plugins/trunk/maven-pdf-plugin/pom.xml

Author: vsiveton
Date: Sat May 30 11:14:36 2009
New Revision: 780239

URL: http://svn.apache.org/viewvc?rev=780239&view=rev
Log:
o pom convention
o removed inherited plugins

Modified:
    maven/plugins/trunk/maven-pdf-plugin/pom.xml

Modified: maven/plugins/trunk/maven-pdf-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/pom.xml?rev=780239&r1=780238&r2=780239&view=diff
==============================================================================
--- maven/plugins/trunk/maven-pdf-plugin/pom.xml (original)
+++ maven/plugins/trunk/maven-pdf-plugin/pom.xml Sat May 30 11:14:36 2009
@@ -35,20 +35,6 @@
   <name>Maven PDF Plugin</name>
   <description>Generates a PDF document from the project site.</description>
 
-  <prerequisites>
-    <maven>2.0.6</maven>
-  </prerequisites>
-
-  <scm>
-    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pdf-plugin/</connection>
-    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pdf-plugin/</developerConnection>
-    <url>http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/</url>
-  </scm>
-  <issueManagement>
-    <system>JIRA</system>
-    <url>http://jira.codehaus.org/browse/MPDF</url>
-  </issueManagement>
-
   <developers>
     <developer>
       <id>vsiveton</id>
@@ -56,7 +42,7 @@
       <email>vsiveton@apache.org</email>
       <organization>Apache Software Foundation</organization>
       <roles>
-          <role>Java Developer</role>
+        <role>Java Developer</role>
       </roles>
       <timezone>-5</timezone>
     </developer>
@@ -66,28 +52,47 @@
       <email>ltheussl@apache.org</email>
       <organization>Apache Software Foundation</organization>
       <roles>
-          <role>Java Developer</role>
+        <role>Java Developer</role>
       </roles>
       <timezone>+1</timezone>
     </developer>
   </developers>
 
+  <prerequisites>
+    <maven>2.0.6</maven>
+  </prerequisites>
+
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pdf-plugin/</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/maven/plugins/trunk/maven-pdf-plugin/</developerConnection>
+    <url>http://svn.apache.org/viewvc/maven/plugins/trunk/maven-pdf-plugin/</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>http://jira.codehaus.org/browse/MPDF</url>
+  </issueManagement>
+
+  <properties>
+    <doxiaVersion>1.1.1-SNAPSHOT</doxiaVersion>
+    <mavenVersion>2.0.6</mavenVersion>
+  </properties>
+
   <dependencies>
     <!-- maven -->
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-project</artifactId>
-      <version>${maven.version}</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-model</artifactId>
-      <version>${maven.version}</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>${maven.version}</version>
+      <version>${mavenVersion}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.shared</groupId>
@@ -99,7 +104,7 @@
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-core</artifactId>
-      <version>${doxia.version}</version>
+      <version>${doxiaVersion}</version>
       <exclusions>
         <exclusion>
           <groupId>org.codehaus.plexus</groupId>
@@ -114,7 +119,7 @@
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-doc-renderer</artifactId>
-      <version>${doxiaSitetoolsVersion}</version>
+      <version>${doxiaVersion}</version>
       <exclusions>
         <exclusion>
           <groupId>org.codehaus.plexus</groupId>
@@ -129,7 +134,7 @@
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-decoration-model</artifactId>
-      <version>${doxiaSitetoolsVersion}</version>
+      <version>${doxiaVersion}</version>
       <exclusions>
         <exclusion>
           <groupId>org.codehaus.plexus</groupId>
@@ -144,7 +149,7 @@
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
       <artifactId>doxia-site-renderer</artifactId>
-      <version>${doxiaSitetoolsVersion}</version>
+      <version>${doxiaVersion}</version>
       <exclusions>
         <exclusion>
           <groupId>org.codehaus.plexus</groupId>
@@ -207,29 +212,25 @@
     </dependency>
   </dependencies>
 
-  <properties>
-    <doxia.version>1.1.1-SNAPSHOT</doxia.version>
-    <doxiaSitetoolsVersion>1.1.1-SNAPSHOT</doxiaSitetoolsVersion>
-    <maven.version>2.0.6</maven.version>
-  </properties>
-
   <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-site-plugin</artifactId>
-        <version>2.0</version>
-        <!--<version>2.1-SNAPSHOT</version>-->
-      </plugin>
-
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <version>2.3</version>
-      </plugin>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <artifactId>maven-shade-plugin</artifactId>
+          <version>1.2</version>
+        </plugin>
+        <plugin>
+          <artifactId>maven-site-plugin</artifactId>
+          <version>2.0</version>
+          <!--<version>2.1-SNAPSHOT</version>-->
+        </plugin>
+      </plugins>
+    </pluginManagement>
 
+    <plugins>
       <!-- Backward compatibility with Maven 2.0.x, see MNG-3402 -->
       <plugin>
         <artifactId>maven-shade-plugin</artifactId>
-        <version>1.2</version>
         <executions>
           <execution>
             <phase>package</phase>
@@ -267,15 +268,11 @@
         <version>2.0.1</version>
         <!--<version>2.3-SNAPSHOT</version>-->
       </plugin>
-      <plugin>
-        <artifactId>maven-plugin-plugin</artifactId>
-        <version>2.4.1</version>
-        <!--<version>2.5-SNAPSHOT</version>-->
-      </plugin>
     </plugins>
   </reporting>
 
   <profiles>
+    <!-- TODO Should be by default when release will be done -->
     <profile>
       <id>pdf</id>
       <build>