Author: ebourg
Date: Sat Oct 18 08:43:55 2008
New Revision: 705891
URL: http://svn.apache.org/viewvc?rev=705891&view=rev
Log:
Added the gump profile
Modified:
commons/proper/cli/trunk/pom.xml
Modified: commons/proper/cli/trunk/pom.xml
URL:
http://svn.apache.org/viewvc/commons/proper/cli/trunk/pom.xml?rev=705891&r1=705890&r2=705891&view=diff
==============================================================================
--- commons/proper/cli/trunk/pom.xml (original)
+++ commons/proper/cli/trunk/pom.xml Sat Oct 18 08:43:55 2008
@@ -251,4 +251,27 @@
</plugins>
</reporting>
+
+ <profiles>
+ <!-- Profile to let Gump choose the name of the jar file generated -->
+ <profile>
+ <id>gump</id>
+ <activation>
+ <property>
+ <name>maven.final.name</name>
+ </property>
+ </activation>
+ <build>
+ <plugins>
+ <plugin>
+ <artifactId>maven-jar-plugin</artifactId>
+ <configuration>
+ <finalName>${maven.final.name}</finalName>
+ </configuration>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
</project>