summaryrefslogtreecommitdiffstats
path: root/themes/build.xml
diff options
context:
space:
mode:
authorPekka Hyvönen <pekka@vaadin.com>2012-12-10 13:09:34 +0200
committerArtur Signell <artur@vaadin.com>2013-01-04 18:59:39 +0200
commit104259291148b2cf5f0f3f7bc8795089cc1cb32c (patch)
tree99a8e2d8e5f98f8ace211fcbdde6e6121fcbb64a /themes/build.xml
parentfb68bd53035fdd9cf0448623d5f6867fe17bab64 (diff)
downloadvaadin-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 'themes/build.xml')
-rw-r--r--themes/build.xml7
1 files changed, 5 insertions, 2 deletions
diff --git a/themes/build.xml b/themes/build.xml
index a504d585dd..6e9e3c9951 100644
--- a/themes/build.xml
+++ b/themes/build.xml
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
-<project name="vaadin-client-compiler" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant">
+<project name="vaadin-themes" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant">
<description>
Themes compiled to CSS
</description>
@@ -96,7 +96,10 @@
<antcall target="common.clean" />
</target>
- <target name="tests">
+ <target name="checkstyle">
+ <echo>No java files in module</echo>
+ </target>
+ <target name="tests" depends="checkstyle">
<!--<antcall target="common.tests.run" />-->
<echo>WHAT? No tests for ${module.name}!</echo>
</target>