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