[Clirr-devel] CVS: clirr/core project.xml,1.3,1.4 maven.xml,1.2,1.3
Status: Alpha
Brought to you by:
lkuehne
From: <lk...@us...> - 2005-09-08 10:28:07
|
Update of /cvsroot/clirr/clirr/core In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12850 Modified Files: project.xml maven.xml Log Message: use javaapp plugin from maven-plugin.sf.net - improves startup time of CLI by not doing classloader magic (on my machine running clirr on one class now takes 0.3s instead of 1.8s) - allows usage of uberjar for Ant task Index: project.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/project.xml,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- project.xml 8 Aug 2005 13:21:20 -0000 1.3 +++ project.xml 8 Sep 2005 10:27:56 -0000 1.4 @@ -29,19 +29,26 @@ <properties> <uberjar.bundle>false</uberjar.bundle> </properties> - </dependency> - <dependency> + </dependency> + <dependency> <groupId>commons-cli</groupId> <artifactId>commons-cli</artifactId> <version>1.0</version> <url>http://jakarta.apache.org/commons-cli</url> </dependency> - <dependency> + <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>1.0.1</version> <url>http://jakarta.apache.org/commons-lang</url> - </dependency> + </dependency> + <dependency> + <groupId>maven-plugins</groupId> + <artifactId>maven-javaapp-plugin</artifactId> + <version>1.3.1</version> + <url>http://maven-plugins.sourceforge.org/maven-javaapp-plugin/</url> + <type>plugin</type> + </dependency> </dependencies> <!-- build information for the project --> Index: maven.xml =================================================================== RCS file: /cvsroot/clirr/clirr/core/maven.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- maven.xml 15 Aug 2004 11:01:13 -0000 1.2 +++ maven.xml 8 Sep 2005 10:27:56 -0000 1.3 @@ -4,7 +4,7 @@ xmlns:u="jelly:util" xmlns:j="jelly:core"> - <goal name="dist" prereqs="jar:install,uberjar:uberjar"/> + <goal name="dist" prereqs="jar:install,javaapp"/> <preGoal name="test:test"> <attainGoal name="clirr:compiletestlibs"/> |