You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jd...@apache.org on 2006/06/01 21:37:01 UTC

svn commit: r410924 - in /geronimo/sandbox/gshell/trunk: gshell-retro-assembly/pom.xml pom.xml

Author: jdillon
Date: Thu Jun  1 12:37:00 2006
New Revision: 410924

URL: http://svn.apache.org/viewvc?rev=410924&view=rev
Log:
Profile to allow retro to build for release

Modified:
    geronimo/sandbox/gshell/trunk/gshell-retro-assembly/pom.xml
    geronimo/sandbox/gshell/trunk/pom.xml

Modified: geronimo/sandbox/gshell/trunk/gshell-retro-assembly/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/gshell-retro-assembly/pom.xml?rev=410924&r1=410923&r2=410924&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/gshell-retro-assembly/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/gshell-retro-assembly/pom.xml Thu Jun  1 12:37:00 2006
@@ -92,6 +92,10 @@
                             <goal>translate</goal>
                         </goals>
                         <configuration>
+                            <verify>false</verify>
+                            <failonwarning>true</failonwarning>
+                            <lazy>true</lazy>
+                            <verbose>false</verbose>
                             <includes>
                                 <include>
                                     <directory>${pom.basedir}/target/gshell-${pom.version}</directory>

Modified: geronimo/sandbox/gshell/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/sandbox/gshell/trunk/pom.xml?rev=410924&r1=410923&r2=410924&view=diff
==============================================================================
--- geronimo/sandbox/gshell/trunk/pom.xml (original)
+++ geronimo/sandbox/gshell/trunk/pom.xml Thu Jun  1 12:37:00 2006
@@ -226,12 +226,46 @@
          </plugins>
     </build>
     
-    <modules>
-        <module>gshell-core</module>
-        <module>gshell-cli</module>
-        <module>gshell-commands</module>
-        <module>gshell-server</module>
-        <module>gshell-assembly</module>
-    </modules>
+    <profiles>
+        <profile>
+            <id>default-environment</id>
+            <activation>
+                <activeByDefault>true</activeByDefault>
+            </activation>
+            <modules>
+                <module>gshell-core</module>
+                <module>gshell-cli</module>
+                <module>gshell-commands</module>
+                <module>gshell-server</module>
+                <module>gshell-assembly</module>
+            </modules>
+        </profile>
+        
+        <profile>
+            <id>release-environment</id>
+            <activation>
+                <property>
+                    <name>env</name>
+                    <value>release</value>
+                </property>
+            </activation>
+            <modules>
+                <module>gshell-core</module>
+                <module>gshell-cli</module>
+                <module>gshell-commands</module>
+                <module>gshell-server</module>
+                <module>gshell-assembly</module>
+                
+                <!--
+                
+                FIXME: Seems like the antrun plugin does not properly find plugin depenedencies
+                       when run in a multi-module build.  Need a real retrotransformer plugin
+                       to resolve this.
+                
+                <module>gshell-retro-assembly</module>
+                -->
+            </modules>
+        </profile>
+    </profiles>
     
 </project>