Skip to content

Commit

Permalink
Added a QA target
Browse files Browse the repository at this point in the history
  • Loading branch information
egonw committed Dec 28, 2009
1 parent 35550bd commit ae661aa
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions build.xml
Expand Up @@ -279,6 +279,32 @@
<target id="compile-init" name="compile-init"
depends="init, check, runDoclet"/>

<target id="qa-module" name="qa-module"
depends="check, dist.init, compile-needed-test"
unless="module-uptodate">
<echo message="Running QA for CDK's ${module} module" />

<antcall target="test-module">
<param name="module" value="${module}"/>
</antcall>

<ant antfile="pmd.xml" target="test-module">
<property name="pmd.test" value="custom"/>
<property name="module" value="${module}"/>
<property name="lib" value="develjar" />
</ant>
<ant antfile="pmd-unused.xml" target="test-module">
<property name="pmd.test" value="custom"/>
<property name="module" value="${module}"/>
<property name="lib" value="develjar" />
</ant>
<ant antfile="pmd-migrating.xml" target="test-module">
<property name="pmd.test" value="migrating"/>
<property name="module" value="${module}"/>
<property name="lib" value="develjar" />
</ant>
</target>

<target id="compile-module" name="compile-module"
depends="check, dist.init, compile-needed-test"
unless="module-uptodate">
Expand Down

0 comments on commit ae661aa

Please sign in to comment.