You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by bo...@apache.org on 2006/04/15 11:36:40 UTC

svn commit: r394273 - in /incubator/tobago/trunk: core/pom.xml example/pom.xml pom.xml tobago-assembly/pom.xml

Author: bommel
Date: Sat Apr 15 02:36:35 2006
New Revision: 394273

URL: http://svn.apache.org/viewcvs?rev=394273&view=rev
Log:
speed up build

Modified:
    incubator/tobago/trunk/core/pom.xml
    incubator/tobago/trunk/example/pom.xml
    incubator/tobago/trunk/pom.xml
    incubator/tobago/trunk/tobago-assembly/pom.xml

Modified: incubator/tobago/trunk/core/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/core/pom.xml?rev=394273&r1=394272&r2=394273&view=diff
==============================================================================
--- incubator/tobago/trunk/core/pom.xml (original)
+++ incubator/tobago/trunk/core/pom.xml Sat Apr 15 02:36:35 2006
@@ -29,7 +29,8 @@
   <packaging>jar</packaging>
   <name>Tobago Core</name>
   <description>Tobago Core</description>
-   <build>
+  
+  <build>
     <resources>
       <resource>
         <directory>src/main/resources</directory>
@@ -70,15 +71,6 @@
     <plugins>
 
       <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>taglist-maven-plugin</artifactId>
-        <version>2.0-beta-1</version>
-        <configuration>
-          <tags>TODO, FIXME, XXX, @deprecated</tags>
-        </configuration>
-      </plugin>
-
-      <plugin>
         <groupId>net.sourceforge.maven-taglib</groupId>
         <artifactId>maven-taglib-plugin</artifactId>
         <configuration>
@@ -87,20 +79,6 @@
           </configuration>
       </plugin>
 
-      <!-- pmd has problems with annotations
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-pmd-plugin</artifactId>
-        <configuration>
-          <excludes>
-            <exclude>**/package-info.java</exclude>
-          </excludes>
-          <encoding>UTF-8</encoding>
-          <linkXref>true</linkXref>
-          <targetJdk>1.5</targetJdk>
-        </configuration>
-      </plugin-->
-
     </plugins>
   </reporting>
 
@@ -378,6 +356,23 @@
                 <id>attach-tlddoc</id>
                 <goals><goal>taglibdocjar</goal></goals>
                </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+    <profile>
+      <id>attach-source</id>
+      <build>
+        <plugins>
+          <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-source-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>attach-source</id>
+                <goals><goal>jar</goal></goals>
+              </execution>
             </executions>
           </plugin>
         </plugins>

Modified: incubator/tobago/trunk/example/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/example/pom.xml?rev=394273&r1=394272&r2=394273&view=diff
==============================================================================
--- incubator/tobago/trunk/example/pom.xml (original)
+++ incubator/tobago/trunk/example/pom.xml Sat Apr 15 02:36:35 2006
@@ -36,6 +36,26 @@
     <url>http://svn.apache.org/viewcvs.cgi/incubator/tobago/trunk/example</url>
   </scm>
 
+  <repositories>
+    <repository>
+      <id>atanion</id>
+      <url>http://www.atanion.com/maven2</url>
+    </repository>
+  </repositories>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <id>atanion</id>
+      <url>http://www.atanion.com/maven2</url>
+    </pluginRepository>
+  </pluginRepositories>
+
   <modules>
     <module>addressbook</module>
     <module>blank</module>

Modified: incubator/tobago/trunk/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/pom.xml?rev=394273&r1=394272&r2=394273&view=diff
==============================================================================
--- incubator/tobago/trunk/pom.xml (original)
+++ incubator/tobago/trunk/pom.xml Sat Apr 15 02:36:35 2006
@@ -173,6 +173,14 @@
 
       <plugin>
         <groupId>org.codehaus.mojo</groupId>
+        <artifactId>taglist-maven-plugin</artifactId>
+        <configuration>
+          <tags>TODO, FIXME, XXX, @deprecated</tags>
+        </configuration>
+      </plugin>
+
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
         <artifactId>jxr-maven-plugin</artifactId>
       </plugin>
 
@@ -214,6 +222,22 @@
         <configuration><basedir>${basedir}</basedir></configuration>
       </plugin>
 
+      <!-- pmd has problems with annotations -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-pmd-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <exclude>**/package-info.java</exclude>
+            <exclude>org/apache/myfaces/tobago/apt/annotation/*.java</exclude>
+          </excludes>
+          <encoding>UTF-8</encoding>
+          <linkXref>true</linkXref>
+          <targetJdk>1.5</targetJdk>
+        </configuration>
+      </plugin>
+
+
       <!--plugin>
         <groupId>org.codehaus.mojo</groupId>
         <artifactId>findbugs-maven-plugin</artifactId>
@@ -247,9 +271,9 @@
   </scm>
 
   <organization>
-     <name>Apache Software Foundation</name>
-     <url>http://www.apache.org/</url>
-   </organization>
+    <name>Apache Software Foundation</name>
+    <url>http://www.apache.org/</url>
+  </organization>
 
   <repositories>
     <repository>
@@ -262,33 +286,8 @@
       <id>apache-maven-snapshots</id>
       <url>http://cvs.apache.org/maven-snapshot-repository</url>
     </repository>
-    <repository>
-      <id>ibiblio</id>
-      <url>http://www.ibiblio.org/maven2</url>
-    </repository>
-    <repository>
-      <id>atanion</id>
-      <url>http://www.atanion.com/maven2</url>
-    </repository>
   </repositories>
-
-  <pluginRepositories>
-    <pluginRepository>
-      <releases>
-        <enabled>false</enabled>
-      </releases>
-      <snapshots>
-        <enabled>true</enabled>
-      </snapshots>
-      <id>atanion</id>
-      <url>http://www.atanion.com/maven2</url>
-    </pluginRepository>
-    <pluginRepository>
-      <id>ibiblio</id>
-      <url>http://www.ibiblio.org/maven2</url>
-    </pluginRepository>
-  </pluginRepositories>
-
+  
   <build>
     <defaultGoal>install</defaultGoal>
     <plugins>
@@ -306,12 +305,12 @@
       <extension>
         <groupId>org.apache.maven.wagon</groupId>
          <artifactId>wagon-ssh-external</artifactId>
-         <version>1.0-alpha-5</version>
+         <version>1.0-alpha-6</version>
       </extension>
       <extension>
         <groupId>org.apache.maven.wagon</groupId>
         <artifactId>wagon-ftp</artifactId>
-        <version>1.0-alpha-3</version>
+        <version>1.0-alpha-6</version>
       </extension>
       <extension>
         <groupId>org.apache.myfaces.maven</groupId>
@@ -336,10 +335,16 @@
   </modules>
 
   <distributionManagement>
+    <repository>
+      <id>apache-maven</id>
+      <name>Apache Maven Repository</name>
+      <url>scpexe://minotaur.apache.org/www/www.apache.org/dist/maven-repository</url>
+    </repository>
     <snapshotRepository>
-      <id>snapshot</id>
-      <name>Atanion Development Repository</name>
-      <url>ftp://www.atanion.com/maven2</url>
+      <uniqueVersion>false</uniqueVersion>
+      <id>apache-maven-snapshots</id>
+      <name>Apache Maven Snapshot Repository</name>
+      <url>scpexe://minotaur.apache.org/www/cvs.apache.org/maven-snapshot-repository</url>
     </snapshotRepository>
     <site>
       <id>website</id>

Modified: incubator/tobago/trunk/tobago-assembly/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/tobago/trunk/tobago-assembly/pom.xml?rev=394273&r1=394272&r2=394273&view=diff
==============================================================================
--- incubator/tobago/trunk/tobago-assembly/pom.xml (original)
+++ incubator/tobago/trunk/tobago-assembly/pom.xml Sat Apr 15 02:36:35 2006
@@ -126,5 +126,18 @@
       </exclusions>
     </dependency>
   </dependencies>
+
+  <pluginRepositories>
+    <pluginRepository>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+      <id>apache-maven-snapshots</id>
+      <url>http://cvs.apache.org/maven-snapshot-repository</url>
+    </pluginRepository>
+  </pluginRepositories>
   
 </project>