r2351 - in trunk: jaxx-demo/src/license jaxx-maven-plugin jaxx-tutorial-config jaxx-tutorial-validation/src/license
Author: tchemit Date: 2012-06-29 01:43:02 +0200 (Fri, 29 Jun 2012) New Revision: 2351 Url: http://nuiton.org/repositories/revision/jaxx/2351 Log: optimize dependencies+ updates third parties Modified: trunk/jaxx-demo/src/license/THIRD-PARTY.properties trunk/jaxx-maven-plugin/pom.xml trunk/jaxx-tutorial-config/pom.xml trunk/jaxx-tutorial-validation/src/license/THIRD-PARTY.properties Modified: trunk/jaxx-demo/src/license/THIRD-PARTY.properties =================================================================== --- trunk/jaxx-demo/src/license/THIRD-PARTY.properties 2012-06-28 23:39:49 UTC (rev 2350) +++ trunk/jaxx-demo/src/license/THIRD-PARTY.properties 2012-06-28 23:43:02 UTC (rev 2351) @@ -6,18 +6,14 @@ # - Common Public License Version 1.0 # - GNU General Public License - Version 2 with the class path exception # - GNU Lesser General Public License +# - LGPL 2.1 # - Lesser General Public License (LGPL) # - Lesser General Public License (LGPL) v 3.0 -# - Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL) +# - MPL 1.1 # - The Apache Software License, Version 2.0 -# - http://asm.ow2.org/license.html #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Fri Sep 23 13:25:29 CEST 2011 -asm--asm--3.1=http\://asm.ow2.org/license.html -asm--asm-commons--3.1=http\://asm.ow2.org/license.html -asm--asm-tree--3.1=http\://asm.ow2.org/license.html +#Fri Jun 29 01:42:10 CEST 2012 commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0 -javassist--javassist--3.8.0.GA=Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL) Modified: trunk/jaxx-maven-plugin/pom.xml =================================================================== --- trunk/jaxx-maven-plugin/pom.xml 2012-06-28 23:39:49 UTC (rev 2350) +++ trunk/jaxx-maven-plugin/pom.xml 2012-06-28 23:43:02 UTC (rev 2351) @@ -99,6 +99,11 @@ </dependency> <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + + <dependency> <groupId>javax.help</groupId> <artifactId>javahelp</artifactId> </dependency> Modified: trunk/jaxx-tutorial-config/pom.xml =================================================================== --- trunk/jaxx-tutorial-config/pom.xml 2012-06-28 23:39:49 UTC (rev 2350) +++ trunk/jaxx-tutorial-config/pom.xml 2012-06-28 23:43:02 UTC (rev 2351) @@ -162,4 +162,81 @@ </plugins> </build> + <profiles> + + <!-- by default jnlp is only perform on a release stage when using the maven-release-plugin --> + <profile> + <id>jnlp</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + <build> + <plugins> + <!-- key store secrets availables --> + <plugin> + <groupId>org.nuiton</groupId> + <artifactId>helper-maven-plugin</artifactId> + <executions> + <execution> + <id>get-keystore</id> + <goals> + <goal>share-server-secret</goal> + </goals> + <phase>package</phase> + <configuration> + <serverId>codelutin-keystore</serverId> + <privateKeyOut>keystorepath</privateKeyOut> + <passwordOut>keystorepass</passwordOut> + <usernameOut>keyalias</usernameOut> + <passphraseOut>keypass</passphraseOut> + </configuration> + </execution> + </executions> + </plugin> + + <!-- make webstart --> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>webstart-maven-plugin</artifactId> + <executions> + <execution> + <id>generate-jnlp</id> + <phase>package</phase> + <goals> + <goal>jnlp-inline</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + </build> + </profile> + + <!-- by default jnlp is only perform on a release stage when using the maven-release-plugin --> + <profile> + <id>reporting</id> + <activation> + <property> + <name>performRelease</name> + <value>true</value> + </property> + </activation> + + <reporting> + <plugins> + <plugin> + <groupId>org.codehaus.mojo</groupId> + <artifactId>webstart-maven-plugin</artifactId> + <version>${webstartPluginVersion}</version> + </plugin> + </plugins> + </reporting> + + </profile> + + </profiles> + </project> Modified: trunk/jaxx-tutorial-validation/src/license/THIRD-PARTY.properties =================================================================== --- trunk/jaxx-tutorial-validation/src/license/THIRD-PARTY.properties 2012-06-28 23:39:49 UTC (rev 2350) +++ trunk/jaxx-tutorial-validation/src/license/THIRD-PARTY.properties 2012-06-28 23:43:02 UTC (rev 2351) @@ -3,18 +3,14 @@ # Already used licenses in project : # - BSD # - GNU General Public License - Version 2 with the class path exception +# - LGPL 2.1 # - Lesser General Public License (LGPL) # - Lesser General Public License (LGPL) v 3.0 -# - Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL) +# - MPL 1.1 # - The Apache Software License, Version 2.0 -# - http://asm.ow2.org/license.html #------------------------------------------------------------------------------- # Please fill the missing licenses for dependencies : # # -#Thu Feb 09 23:56:26 CET 2012 -asm--asm--3.1=http\://asm.ow2.org/license.html -asm--asm-commons--3.1=http\://asm.ow2.org/license.html -asm--asm-tree--3.1=http\://asm.ow2.org/license.html +#Fri Jun 29 01:42:25 CEST 2012 commons-primitives--commons-primitives--1.0=The Apache Software License, Version 2.0 -javassist--javassist--3.8.0.GA=Lesser General Public License v2.1,Mozilla Public License 1.1 (MPL)
participants (1)
-
tchemit@users.nuiton.org