diff options
Diffstat (limited to 'client-compiler')
-rw-r--r-- | client-compiler/build.xml | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/client-compiler/build.xml b/client-compiler/build.xml index 95544708c1..9d4e5c403c 100644 --- a/client-compiler/build.xml +++ b/client-compiler/build.xml @@ -52,7 +52,13 @@ gwt.svnrev=${git.revision}</echo> <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" />--> <echo>WHAT? No tests for ${module.name}!</echo> </target> |