evenisse 2003/09/08 05:30:34
Modified: src/plugins-build/jalopy plugin.jelly
src/plugins-build/jalopy/xdocs changes.xml
Log:
Fixed MAVEN-798. Add Test source formatting.
Revision Changes Path
1.4 +12 -4 maven/src/plugins-build/jalopy/plugin.jelly
Index: plugin.jelly
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jalopy/plugin.jelly,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- plugin.jelly 19 Aug 2003 04:45:08 -0000 1.3
+++ plugin.jelly 8 Sep 2003 12:30:34 -0000 1.4
@@ -1,7 +1,8 @@
<?xml version="1.0"?>
<project
- xmlns:ant="jelly:ant">
+ xmlns:ant="jelly:ant"
+ xmlns:j="jelly:core">
<!--==================================================================-->
<!-- J A L O P Y (source code formatter) -->
@@ -45,9 +46,16 @@
failonerror="${maven.jalopy.failOnError}"
threads="${maven.jalopy.nbThread}"
classpathref="project.classpath">
- <ant:fileset dir="${pom.build.sourceDirectory}" >
- <ant:include name="${maven.jalopy.filesetInclude}" />
- </ant:fileset>
+ <j:if test="${sourcesPresent == 'true'}">
+ <ant:fileset dir="${pom.build.sourceDirectory}" >
+ <ant:include name="${maven.jalopy.filesetInclude}" />
+ </ant:fileset>
+ </j:if>
+ <j:if test="${unitTestSourcesPresent == 'true'}">
+ <ant:fileset dir="${pom.build.unitTestSourceDirectory}" >
+ <ant:include name="${maven.jalopy.filesetInclude}" />
+ </ant:fileset>
+ </j:if>
</ant:jalopy>
</goal>
1.4 +3 -0 maven/src/plugins-build/jalopy/xdocs/changes.xml
Index: changes.xml
===================================================================
RCS file: /home/cvs/maven/src/plugins-build/jalopy/xdocs/changes.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- changes.xml 25 Jul 2003 06:25:45 -0000 1.3
+++ changes.xml 8 Sep 2003 12:30:34 -0000 1.4
@@ -7,6 +7,9 @@
<body>
<release version="1.1" date="in CVS">
+ <action dev="evenisse" type="fix">
+ Fixed MAVEN-798. Add Test source formatting.
+ </action>
<action dev="dion" type="update">
Move to oro 2.0.7
</action>
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]