diff options
Diffstat (limited to 'theme-compiler/build.xml')
-rw-r--r-- | theme-compiler/build.xml | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/theme-compiler/build.xml b/theme-compiler/build.xml index b28eca8cf7..1fd78209c3 100644 --- a/theme-compiler/build.xml +++ b/theme-compiler/build.xml @@ -1,7 +1,6 @@ <?xml version="1.0"?> -<project name="vaadin-theme-compiler" basedir="." default="publish-local" - xmlns:ivy="antlib:org.apache.ivy.ant"> +<project name="vaadin-theme-compiler" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant"> <description> Compiles build helpers used when building other modules. </description> @@ -13,8 +12,7 @@ <property name="module.name" value="vaadin-theme-compiler" /> <property name="module.symbolic" value="com.vaadin.theme-compiler" /> <property name="result.dir" value="result" /> - <property name="sass.parser.jj" - location="src/com/vaadin/sass/internal/parser/Parser.jj" /> + <property name="sass.parser.jj" location="src/com/vaadin/sass/internal/parser/Parser.jj" /> <path id="classpath.compile.custom"> </path> <path id="classpath.test.custom" /> @@ -26,9 +24,7 @@ <!-- Copy javacc-5.0.jar to ${result.dir}/javacc/javacc.jar as the javacc task requires the jar to be named javacc.jar --> <property name="javacc.home" location="${result.dir}/javacc" /> - <ivy:retrieve organisation="net.java.dev.javacc" - module="javacc" revision="5.0" inline="true" type="jar" - pattern="${javacc.home}/[artifact].[ext]" /> + <ivy:retrieve organisation="net.java.dev.javacc" module="javacc" revision="5.0" inline="true" type="jar" pattern="${javacc.home}/[artifact].[ext]" /> <javacc target="${sass.parser.jj}" javacchome="${javacc.home}"> </javacc> </target> |