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 2009/06/12 20:53:52 UTC

svn commit: r784232 - in /myfaces/tobago/branches/tobago-1.0.x: example/tobago-example-assembly/pom.xml pom.xml tobago-assembly/pom.xml

Author: bommel
Date: Fri Jun 12 18:53:52 2009
New Revision: 784232

URL: http://svn.apache.org/viewvc?rev=784232&view=rev
Log:
generate source assembly

Modified:
    myfaces/tobago/branches/tobago-1.0.x/example/tobago-example-assembly/pom.xml
    myfaces/tobago/branches/tobago-1.0.x/pom.xml
    myfaces/tobago/branches/tobago-1.0.x/tobago-assembly/pom.xml

Modified: myfaces/tobago/branches/tobago-1.0.x/example/tobago-example-assembly/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/example/tobago-example-assembly/pom.xml?rev=784232&r1=784231&r2=784232&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/example/tobago-example-assembly/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/example/tobago-example-assembly/pom.xml Fri Jun 12 18:53:52 2009
@@ -32,12 +32,12 @@
     <plugins>
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.0-beta-1</version>
         <configuration>
           <descriptor>src/main/assembly/dep.xml</descriptor>
           <finalName>myfaces-tobago-${project.version}</finalName>
           <outputDirectory>target/assembly/out</outputDirectory>
           <workDirectory>target/assembly/work</workDirectory>
+          <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>
       </plugin>
 

Modified: myfaces/tobago/branches/tobago-1.0.x/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/pom.xml?rev=784232&r1=784231&r2=784232&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/pom.xml Fri Jun 12 18:53:52 2009
@@ -637,6 +637,11 @@
             </excludes>
           </configuration>
         </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-assembly-plugin</artifactId>
+          <version>2.2-beta-4</version>
+        </plugin>
       </plugins>
     </pluginManagement>
   </build>
@@ -691,6 +696,33 @@
         <module>tobago-assembly</module>
         <module>sandbox</module>
       </modules>
+      <build>
+        <plugins>
+          <plugin>
+            <!-- Using this plugin configuration to produce a buildable project source distro,
+                 per the discussion on members@ASF regarding what constitutes a valid release.
+             -->
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>make-project-src-distro</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <descriptorRefs>
+                    <descriptorRef>project</descriptorRef>
+                  </descriptorRefs>
+                  <tarLongFileMode>gnu</tarLongFileMode>
+                  <outputDirectory>target/assembly</outputDirectory>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
     </profile>
     <profile>
       <id>jdk14retro</id>
@@ -794,6 +826,28 @@
               </execution>
             </executions>
           </plugin>
+          <plugin>
+            <!-- Using this plugin configuration to produce a buildable project source distro,
+                 per the discussion on members@ASF regarding what constitutes a valid release.
+             -->
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <executions>
+              <execution>
+                <id>make-project-src-distro</id>
+                <phase>package</phase>
+                <goals>
+                  <goal>single</goal>
+                </goals>
+                <configuration>
+                  <descriptorRefs>
+                    <descriptorRef>project</descriptorRef>
+                  </descriptorRefs>
+                  <tarLongFileMode>gnu</tarLongFileMode>
+                </configuration>
+              </execution>
+            </executions>
+          </plugin>
         </plugins>
       </build>
       <modules>

Modified: myfaces/tobago/branches/tobago-1.0.x/tobago-assembly/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/branches/tobago-1.0.x/tobago-assembly/pom.xml?rev=784232&r1=784231&r2=784232&view=diff
==============================================================================
--- myfaces/tobago/branches/tobago-1.0.x/tobago-assembly/pom.xml (original)
+++ myfaces/tobago/branches/tobago-1.0.x/tobago-assembly/pom.xml Fri Jun 12 18:53:52 2009
@@ -32,12 +32,12 @@
     <plugins>
       <plugin>
         <artifactId>maven-assembly-plugin</artifactId>
-        <version>2.0-beta-1</version>
         <configuration>
           <descriptor>src/main/assembly/dep.xml</descriptor>
           <finalName>myfaces-tobago-${project.version}</finalName>
           <outputDirectory>target/assembly/out</outputDirectory>
           <workDirectory>target/assembly/work</workDirectory>
+          <tarLongFileMode>gnu</tarLongFileMode>
         </configuration>
       </plugin>