diff options
Diffstat (limited to 'server/build.xml')
-rw-r--r-- | server/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/server/build.xml b/server/build.xml index 6c61b7dc75..253d09a45b 100644 --- a/server/build.xml +++ b/server/build.xml @@ -43,7 +43,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> |