diff options
Diffstat (limited to 'buildhelpers')
-rw-r--r-- | buildhelpers/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/buildhelpers/build.xml b/buildhelpers/build.xml index d50e024ce4..e3e7b434d6 100644 --- a/buildhelpers/build.xml +++ b/buildhelpers/build.xml @@ -28,7 +28,13 @@ <antcall target="common.clean" /> </target> - <target name="tests"> + <target name="checkstyle"> + <antcall target="common.checkstyle"> + <param name="cs.src" location="src" /> + </antcall> + </target> + + <target name="tests" depends="checkstyle"> <!--<antcall target="common.tests.run" />--> <echo>WHAT? No JUnit tests for ${module.name}!</echo> </target> |