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