diff options
Diffstat (limited to 'client/build.xml')
-rw-r--r-- | client/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client/build.xml b/client/build.xml index 26f92ee33f..d2946be6e0 100644 --- a/client/build.xml +++ b/client/build.xml @@ -61,7 +61,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" /> </target> |