summaryrefslogtreecommitdiffstats
path: root/client/build.xml
diff options
context:
space:
mode:
Diffstat (limited to 'client/build.xml')
-rw-r--r--client/build.xml8
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>