diff options
author | Pekka Hyvönen <pekka@vaadin.com> | 2012-12-10 13:09:34 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-01-04 18:59:39 +0200 |
commit | 104259291148b2cf5f0f3f7bc8795089cc1cb32c (patch) | |
tree | 99a8e2d8e5f98f8ace211fcbdde6e6121fcbb64a /server/build.xml | |
parent | fb68bd53035fdd9cf0448623d5f6867fe17bab64 (diff) | |
download | vaadin-framework-104259291148b2cf5f0f3f7bc8795089cc1cb32c.tar.gz vaadin-framework-104259291148b2cf5f0f3f7bc8795089cc1cb32c.zip |
Checkstyle for Vaadin #9065
* Validates that all java files contains a license file and fails the build if a license is missing
* For now runs a lot of checks with a severity less than error to avoid failing the build
* Outputs test results to TeamCity for reporting
Change-Id: I24ca9cd0646a4bc530ef3a183eef1bc4addc555d
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> |