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/07/29 00:09:17 UTC

svn commit: r426680 - in /tapestry/tapestry4/trunk: pom.xml src/main/ src/main/assembly/ src/main/assembly/dep.xml

Author: jkuhnert
Date: Fri Jul 28 15:09:16 2006
New Revision: 426680

URL: http://svn.apache.org/viewvc?rev=426680&view=rev
Log:
Tried to create assembly configurations for realeasing binaries.

Added:
    tapestry/tapestry4/trunk/src/main/
    tapestry/tapestry4/trunk/src/main/assembly/
    tapestry/tapestry4/trunk/src/main/assembly/dep.xml   (with props)
Modified:
    tapestry/tapestry4/trunk/pom.xml

Modified: tapestry/tapestry4/trunk/pom.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/pom.xml?rev=426680&r1=426679&r2=426680&view=diff
==============================================================================
--- tapestry/tapestry4/trunk/pom.xml (original)
+++ tapestry/tapestry4/trunk/pom.xml Fri Jul 28 15:09:16 2006
@@ -274,9 +274,22 @@
                     <artifactId>maven-release-plugin</artifactId>
                     <version>2.0-beta-5-SNAPSHOT</version>
                     <configuration>
-                        <tagBase>
-                            https://svn.apache.org/repos/asf/tapestry/tapestry4/tags/
-                        </tagBase>
+                        <tagBase>https://svn.apache.org/repos/asf/tapestry/tapestry4/tags/</tagBase>
+                    </configuration>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-repository-plugin</artifactId>
+                    <version>2.1-SNAPSHOT</version>
+                    <inherited>true</inherited>
+                </plugin>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-assembly-plugin</artifactId>
+                    <version>2.2-SNAPSHOT</version>
+                    <inherited>true</inherited>
+                    <configuration>
+                        <descriptor>src/main/assembly/dep.xml</descriptor>
                     </configuration>
                 </plugin>
             </plugins>

Added: tapestry/tapestry4/trunk/src/main/assembly/dep.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/main/assembly/dep.xml?rev=426680&view=auto
==============================================================================
--- tapestry/tapestry4/trunk/src/main/assembly/dep.xml (added)
+++ tapestry/tapestry4/trunk/src/main/assembly/dep.xml Fri Jul 28 15:09:16 2006
@@ -0,0 +1,42 @@
+<assembly>
+  <id>bin</id>
+  <formats>
+    <format>tar.gz</format>
+    <format>tar.bz2</format>
+    <format>zip</format>
+  </formats>
+  <includeBaseDirectory>false</includeBaseDirectory>
+  <fileSets>
+    <fileSet>
+      <includes>
+        <include>README*</include>
+        <include>LICENSE*</include>
+        <include>NOTICE*</include>
+      </includes>
+    </fileSet>
+    <fileSet>
+      <directory>target</directory>
+      <outputDirectory></outputDirectory>
+      <includes>
+        <include>*.jar</include>
+      </includes>
+    </fileSet>
+  </fileSets>
+  <moduleSets>
+    <moduleSet>
+        <includes>
+            <include>org.apache.tapestry:tapestry-annotations</include>
+            <include>org.apache.tapestry:tapestry-contrib</include>
+            <include>org.apache.tapestry:tapestry-examples</include>
+            <include>org.apache.tapestry:tapestry-framework</include>
+            <include>org.apache.tapestry:tapestry-portlet</include>
+        </includes>
+        <binaries>
+            <includes>
+                <include>target/*.jar</include>
+                <include>target/*.war</include>
+            </includes>
+        </binaries>
+    </moduleSet>
+  </moduleSets>
+</assembly>

Propchange: tapestry/tapestry4/trunk/src/main/assembly/dep.xml
------------------------------------------------------------------------------
    svn:eol-style = native