From: Andy J. <and...@us...> - 2004-05-09 07:30:47
|
andy_jefferson 04/05/09 00:30:36 Modified: jpox/xdocs changes.xml jpox plugin.jelly plugin.properties project.xml . maven.xml Log: Updated to include verbose flag Revision Changes Path 1.8 +3 -4 maven-plugins/jpox/xdocs/changes.xml Index: changes.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jpox/xdocs/changes.xml,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- changes.xml 25 Apr 2004 12:47:09 -0000 1.7 +++ changes.xml 9 May 2004 07:30:10 -0000 1.8 @@ -2,14 +2,13 @@ <document> <properties> <title>Maven JPOX plugin - Changes</title> - <author email="an...@aj...">Andy Jefferson</author> + <author email="an...@jp...">Andy Jefferson</author> </properties> <body> <release version="1.0.0-beta-4" date="27-Apr-2004" description="Use of JPOX 1.0.0-beta-4"> - <action dev="andy_jefferson" type="add"> - Matching release for JPOX 1.0.0-beta-4. - </action> + <action dev="andy_jefferson" type="update">Changed to use JPOX 1.0.0-beta-4</action> + <action dev="andy_jefferson" type="add">Addition of verbose option to get diagnostics</action> </release> <release version="1.0.0-beta-3" date="31-Mar-2004" description="Use of JPOX 1.0.0-beta-3"> 1.6 +6 -0 maven-plugins/jpox/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jpox/plugin.jelly,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- plugin.jelly 31 Mar 2004 14:37:42 -0000 1.5 +++ plugin.jelly 9 May 2004 07:30:11 -0000 1.6 @@ -69,8 +69,14 @@ failonerror="true" fork="true"> <classpath refid="jpoxClasspath"/> + <arg line="-s"/> <arg path="${sourcepath}"/> + + <j:if test="${context.getVariable('maven.jpox.verbose').toString().trim().equalsIgnoreCase('true')}"> + <arg line="-v"/> + </j:if> + <arg line="${jdoMetaDataFiles}"/> </ant:java> 1.4 +3 -0 maven-plugins/jpox/plugin.properties Index: plugin.properties =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jpox/plugin.properties,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- plugin.properties 31 Mar 2004 14:37:42 -0000 1.3 +++ plugin.properties 9 May 2004 07:30:11 -0000 1.4 @@ -24,3 +24,6 @@ # Log4J log maven.jpox.log4j.configuration= + +# Verbose Mode +maven.jpox.verbose=false 1.11 +5 -1 maven-plugins/jpox/project.xml Index: project.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/jpox/project.xml,v retrieving revision 1.10 retrieving revision 1.11 diff -u -r1.10 -r1.11 --- project.xml 25 Apr 2004 12:49:21 -0000 1.10 +++ project.xml 9 May 2004 07:30:11 -0000 1.11 @@ -34,7 +34,11 @@ <version>1.0.0-beta-4</version> <url>http://maven-plugins.sf.net/maven</url> </dependency> - <!-- Should really have jdori 1.0.1 in here --> + <dependency> + <groupId>jdo</groupId> + <artifactId>jdori</artifactId> + <version>1.0.1</version> + </dependency> </dependencies> </project> 1.17 +1 -0 maven-plugins/maven.xml Index: maven.xml =================================================================== RCS file: /cvsroot/maven-plugins/maven-plugins/maven.xml,v retrieving revision 1.16 retrieving revision 1.17 diff -u -r1.16 -r1.17 --- maven.xml 25 Apr 2004 12:47:48 -0000 1.16 +++ maven.xml 9 May 2004 07:30:13 -0000 1.17 @@ -23,6 +23,7 @@ <!-- for the jpox plugin --> <ant:mkdir dir="${maven.repo.local}/jpox/jars/"/> <ant:touch file="${maven.repo.local}/jpox/jars/jpox-1.0.0-beta-4.jar"/> + <ant:touch file="${maven.repo.local}/jdo/jars/jdori-1.0.1.jar"/> <!-- for the jaxb plugin --> <ant:mkdir dir="${maven.repo.local}/jaxb/jars/"/> |