dion 2003/03/30 07:25:56 Modified: src/plugins-build/jdepend plugin.jelly src/plugins-build/jbuilder plugin.jelly Log: Explicity use ant name space. In prep for removal of jeez etc Revision Changes Path 1.5 +12 -9 maven/src/plugins-build/jdepend/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /home/cvs/maven/src/plugins-build/jdepend/plugin.jelly,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- plugin.jelly 23 Feb 2003 15:55:54 -0000 1.4 +++ plugin.jelly 30 Mar 2003 15:25:56 -0000 1.5 @@ -1,6 +1,9 @@ <?xml version="1.0"?> -<project xmlns:j="jelly:core" xmlns:doc="doc"> +<project + xmlns:ant="jelly:ant" + xmlns:j="jelly:core" + xmlns:doc="doc"> <goal name="maven-jdepend-plugin:register"> <doc:registerReport @@ -26,17 +29,17 @@ <attainGoal name="java:compile"/> - <java + <ant:java classname="jdepend.xmlui.JDepend" fork="true" failonerror="true"> - <arg line="-file '${maven.build.dir}/jdepend-raw-report.xml' '${maven.build.dest}'"/> - <classpath> - <path refid="maven-classpath"/> - <path refid="maven.dependency.classpath"/> - <pathelement path="${plugin.getDependencyPath('jdepend')}"/> - </classpath> - </java> + <ant:arg line="-file '${maven.build.dir}/jdepend-raw-report.xml' '${maven.build.dest}'"/> + <ant:classpath> + <ant:path refid="maven-classpath"/> + <ant:path refid="maven.dependency.classpath"/> + <ant:pathelement path="${plugin.getDependencyPath('jdepend')}"/> + </ant:classpath> + </ant:java> <doc:jsl input="${maven.build.dir}/jdepend-raw-report.xml" 1.6 +4 -3 maven/src/plugins-build/jbuilder/plugin.jelly Index: plugin.jelly =================================================================== RCS file: /home/cvs/maven/src/plugins-build/jbuilder/plugin.jelly,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- plugin.jelly 4 Feb 2003 09:57:07 -0000 1.5 +++ plugin.jelly 30 Mar 2003 15:25:56 -0000 1.6 @@ -1,6 +1,7 @@ <?xml version="1.0"?> <project + xmlns:ant="jelly:ant" xmlns:j="jelly:core" xmlns:x="jelly:xml"> @@ -14,7 +15,7 @@ <goal name="jbuilder:generate-library" description="Generate JBuilder [id_project].library file"> - <echo>Creating ${basedir}/${pom.artifactId}.library ...</echo> + <ant:echo>Creating ${basedir}/${pom.artifactId}.library ...</ant:echo> <j:file name="${basedir}/${pom.artifactId}.library" prettyPrint="true" xmlns="dummy"> <library> @@ -46,9 +47,9 @@ <goal name="jbuilder:generate-project" description="Generate JBuilder [id_project].jpx file"> - <echo>Creating ${basedir}/${pom.artifactId}.jpx ...</echo> + <ant:echo>Creating ${basedir}/${pom.artifactId}.jpx ...</ant:echo> <j:file name="${basedir}/${pom.artifactId}.jpx" prettyPrint="true" xmlns="dummy"> - <x:comment>Projet XML JBuilder</x:comment> + <x:comment>Project XML JBuilder</x:comment> <project> <property category="sys" name="AuthorLabel" value="@author"/> <property category="sys" name="BackupPath" value="bak"/>
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]