summaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorArtur Signell <artur@vaadin.com>2012-08-14 16:55:23 +0300
committerArtur Signell <artur@vaadin.com>2012-08-14 16:55:23 +0300
commit474b25d4cf52f43ee086dabd405937ef62520d06 (patch)
tree9dd93ee21dd2b8681df30355a60b1834a7b43e82 /build/build.xml
parent23c667c8480e0d7e065767caa8fe2e1733040fe6 (diff)
downloadvaadin-framework-474b25d4cf52f43ee086dabd405937ef62520d06.tar.gz
vaadin-framework-474b25d4cf52f43ee086dabd405937ef62520d06.zip
Fixed sass compile path (#9299)
Diffstat (limited to 'build/build.xml')
-rw-r--r--build/build.xml9
1 files changed, 8 insertions, 1 deletions
diff --git a/build/build.xml b/build/build.xml
index 76e6461e22..0bfa4fbebe 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -83,6 +83,13 @@
<path refid="ivy.compile.classpath.client-compiler" />
</path>
+ <path id="compile.classpath.sass">
+ <path refid="additional.jar.path" />
+ <path refid="ivy.compile.classpath.server" />
+ <!-- GWT -->
+ <pathelement location="${gwt.user.jar}" />
+ <pathelement location="${gwt.dev.jar}" />
+ </path>
<path id="compile.classpath.server-tests">
<path refid="additional.jar.path" />
@@ -668,7 +675,7 @@
<!-- TODO also perform javacc compilation of the parser -->
<mkdir dir="${result-classes-sass}" />
<javac source="${required.java.version}" target="${required.java.version}" includeantruntime="false" srcdir="${result-src-sass}"
- classpathref="compile.classpath.server" destdir="${result-classes-sass}" debug="true" encoding="UTF-8" />
+ classpathref="compile.classpath.sass" destdir="${result-classes-sass}" debug="true" encoding="UTF-8" />
</target>
<target name="defaulttheme" depends="init, compile-sass, compile-helpers" description="Compile all included themes">