You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ba...@apache.org on 2006/06/10 20:40:21 UTC

svn commit: r413350 - /myfaces/maven/trunk/myfaces-archetype/src/main/resources/archetype-resources/pom.xml

Author: baranda
Date: Sat Jun 10 11:40:21 2006
New Revision: 413350

URL: http://svn.apache.org/viewvc?rev=413350&view=rev
Log:
Putting build>finalName outside the jettyConfig profile, so the snapshot is never appended to the war name. Thanks Wendy!

Modified:
    myfaces/maven/trunk/myfaces-archetype/src/main/resources/archetype-resources/pom.xml

Modified: myfaces/maven/trunk/myfaces-archetype/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/myfaces/maven/trunk/myfaces-archetype/src/main/resources/archetype-resources/pom.xml?rev=413350&r1=413349&r2=413350&view=diff
==============================================================================
--- myfaces/maven/trunk/myfaces-archetype/src/main/resources/archetype-resources/pom.xml (original)
+++ myfaces/maven/trunk/myfaces-archetype/src/main/resources/archetype-resources/pom.xml Sat Jun 10 11:40:21 2006
@@ -11,12 +11,15 @@
     <name>A custom project using myfaces</name>
     <url>http://www.myorganization.org</url>
 
+    <build>
+        <finalName>${artifactId}</finalName>
+    </build>
+
     <!-- Profile to run jetty, so the tomcat jars are included in the bundle. They are not included by default -->
     <profiles>
         <profile>
             <id>jettyConfig</id>
             <build>
-                <finalName>${artifactId}</finalName>
                 <plugins>
                     <plugin>
                         <groupId>org.mortbay.jetty</groupId>