You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by db...@apache.org on 2008/09/30 10:10:01 UTC

svn commit: r700380 - in /geronimo/sandbox/failover/failover-tomcat-demo: pom.xml src/main/assembly/assembly.xml

Author: dblevins
Date: Tue Sep 30 01:10:00 2008
New Revision: 700380

URL: http://svn.apache.org/viewvc?rev=700380&view=rev
Log:
Fixed pom to run the assembly:assembly goal on "clean install"
Set the execution bits on the shell files

Modified:
    geronimo/sandbox/failover/failover-tomcat-demo/pom.xml
    geronimo/sandbox/failover/failover-tomcat-demo/src/main/assembly/assembly.xml

Modified: geronimo/sandbox/failover/failover-tomcat-demo/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/failover/failover-tomcat-demo/pom.xml?rev=700380&r1=700379&r2=700380&view=diff
==============================================================================
--- geronimo/sandbox/failover/failover-tomcat-demo/pom.xml (original)
+++ geronimo/sandbox/failover/failover-tomcat-demo/pom.xml Tue Sep 30 01:10:00 2008
@@ -33,7 +33,8 @@
     <groupId>org.apache.geronimo.failover</groupId>
     <artifactId>failover-tomcat-demo</artifactId>
     <version>2.2-SNAPSHOT</version>
- 
+    <packaging>pom</packaging> 
+
     <name>Geronimo Demos :: Failover on Tomcat</name>
 
     <description>
@@ -79,7 +80,7 @@
                 <executions>
                     <execution>
                         <id>package</id>
-                        <phase>attached</phase>
+                        <phase>package</phase>
                         <goals>
                             <goal>attached</goal>
                         </goals>

Modified: geronimo/sandbox/failover/failover-tomcat-demo/src/main/assembly/assembly.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/failover/failover-tomcat-demo/src/main/assembly/assembly.xml?rev=700380&r1=700379&r2=700380&view=diff
==============================================================================
--- geronimo/sandbox/failover/failover-tomcat-demo/src/main/assembly/assembly.xml (original)
+++ geronimo/sandbox/failover/failover-tomcat-demo/src/main/assembly/assembly.xml Tue Sep 30 01:10:00 2008
@@ -30,7 +30,19 @@
         <fileSet>
             <directory>src/main/resources</directory>
             <outputDirectory>/</outputDirectory>
+            <excludes>
+	        <exclude>*.sh</exclude>
+	    </excludes>
         </fileSet>
+	<fileSet>
+            <directory>src/main/resources</directory>
+            <outputDirectory>/</outputDirectory>
+	    <includes>
+                <include>*.sh</include>
+	    </includes>
+	    <lineEnding>unix</lineEnding>
+	    <fileMode>0755</fileMode>
+	</fileSet>
     </fileSets>
     
     <dependencySets>