You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by jk...@apache.org on 2006/12/06 22:01:16 UTC

svn commit: r483225 - in /tapestry/tapestry4/trunk: pom.xml tapestry-annotations/pom.xml tapestry-contrib/pom.xml tapestry-framework/pom.xml tapestry-portlet/pom.xml

Author: jkuhnert
Date: Wed Dec  6 13:01:15 2006
New Revision: 483225

URL: http://svn.apache.org/viewvc?view=rev&rev=483225
Log:
Updates poms to reflect changes in main site pom.

Added jar indexing/compression as discovered when seeing Howard commit the same for t5. 

Modified:
    tapestry/tapestry4/trunk/pom.xml
    tapestry/tapestry4/trunk/tapestry-annotations/pom.xml
    tapestry/tapestry4/trunk/tapestry-contrib/pom.xml
    tapestry/tapestry4/trunk/tapestry-framework/pom.xml
    tapestry/tapestry4/trunk/tapestry-portlet/pom.xml

Modified: tapestry/tapestry4/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?view=diff&rev=483225&r1=483224&r2=483225
==============================================================================
--- tapestry/tapestry4/trunk/pom.xml (original)
+++ tapestry/tapestry4/trunk/pom.xml Wed Dec  6 13:01:15 2006
@@ -40,12 +40,19 @@
             <subscribe>users-subscribe@tapestry.apache.org</subscribe>
             <unsubscribe>users-unsubscribe@tapestry.apache.org</unsubscribe>
             <archive>http://mail-archives.apache.org/mod_mbox/tapestry-users/</archive>
+            <otherArchives>
+                <otherArchive>http://www.nabble.com/Tapestry---User-f340.html</otherArchive>
+                <otherArchive>http://www.nabble.com/Jakarta-Tapestry-f302.html</otherArchive>
+            </otherArchives>
         </mailingList>
         <mailingList>
             <name>Tapestry Developer List</name>
             <subscribe>dev-subscribe@tapestry.apache.org</subscribe>
             <unsubscribe>dev-unsubscribe@tapestry.apache.org</unsubscribe>
             <archive>http://mail-archives.apache.org/mod_mbox/tapestry-dev/</archive>
+            <otherArchives>
+                <otherArchive>http://www.nabble.com/Tapestry---Dev-f339.html</otherArchive>
+            </otherArchives>
         </mailingList>
         <mailingList>
             <name>Tapestry Commits List</name>
@@ -64,7 +71,7 @@
             <roles>
                 <role>Menace</role>
             </roles>
-            <timezone>5</timezone>
+            <timezone>-8</timezone>
         </developer>
         <developer>
             <id>jk</id>
@@ -74,7 +81,7 @@
             <roles>
                 <role>Developer</role>
             </roles>
-            <timezone>8</timezone>
+            <timezone>-5</timezone>
         </developer>
         <developer>
             <id>aa</id>

Modified: tapestry/tapestry4/trunk/tapestry-annotations/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-annotations/pom.xml?view=diff&rev=483225&r1=483224&r2=483225
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-annotations/pom.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-annotations/pom.xml Wed Dec  6 13:01:15 2006
@@ -1,5 +1,4 @@
-<project xmlns="http://maven.apache.org/POM/4.0.0"
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+<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">
     <modelVersion>4.0.0</modelVersion>
     <groupId>org.apache.tapestry</groupId>
@@ -14,7 +13,7 @@
     </parent>
     <name>Annotations</name>
     <inceptionYear>2006</inceptionYear>
-    
+
     <dependencies>
         <dependency>
             <groupId>org.apache.tapestry</groupId>
@@ -77,7 +76,7 @@
                 </excludes>
             </resource>
         </resources>
-        
+
         <testSourceDirectory>src/test</testSourceDirectory>
         <testResources>
             <testResource>
@@ -102,6 +101,12 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
                 <version>2.1-SNAPSHOT</version>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
@@ -126,8 +131,8 @@
                             <tasks>
                                 <ant antfile="../support/build.xml" inheritRefs="true">
                                     <property name="target.dir" value="../target/site/tapestry-annotations" />
-                                    <target name="build"/>
-                                 </ant>
+                                    <target name="build" />
+                                </ant>
                             </tasks>
                         </configuration>
                         <goals>
@@ -179,5 +184,5 @@
     <reporting>
         <outputDirectory>../target/site/tapestry-annotations</outputDirectory>
     </reporting>
-    
+
 </project>

Modified: tapestry/tapestry4/trunk/tapestry-contrib/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-contrib/pom.xml?view=diff&rev=483225&r1=483224&r2=483225
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-contrib/pom.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-contrib/pom.xml Wed Dec  6 13:01:15 2006
@@ -100,6 +100,12 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
                 <version>2.1-SNAPSHOT</version>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

Modified: tapestry/tapestry4/trunk/tapestry-framework/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-framework/pom.xml?view=diff&rev=483225&r1=483224&r2=483225
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-framework/pom.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-framework/pom.xml Wed Dec  6 13:01:15 2006
@@ -193,6 +193,12 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
                 <version>2.1-SNAPSHOT</version>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

Modified: tapestry/tapestry4/trunk/tapestry-portlet/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/tapestry-portlet/pom.xml?view=diff&rev=483225&r1=483224&r2=483225
==============================================================================
--- tapestry/tapestry4/trunk/tapestry-portlet/pom.xml (original)
+++ tapestry/tapestry4/trunk/tapestry-portlet/pom.xml Wed Dec  6 13:01:15 2006
@@ -105,6 +105,12 @@
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-jar-plugin</artifactId>
                 <version>2.1-SNAPSHOT</version>
+                <configuration>
+                    <archive>
+                        <compress>true</compress>
+                        <index>true</index>
+                    </archive>
+                </configuration>
             </plugin>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>