Fixed MAVEN-798. Add Test source formatting.

git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@113981 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
evenisse
2003-09-08 12:30:34 +00:00
parent 406f0f5bd8
commit c9aae2b6c8
2 changed files with 15 additions and 4 deletions

View File

@@ -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>

View File

@@ -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>