]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fixed a problem in running the widgetset generator.
authorMarko Grönroos <magi@iki.fi>
Thu, 8 Oct 2009 15:46:22 +0000 (15:46 +0000)
committerMarko Grönroos <magi@iki.fi>
Thu, 8 Oct 2009 15:46:22 +0000 (15:46 +0000)
svn changeset:9152/svn branch:6.2

build/build.xml

index cdcbef4f745ece7a0501939cddca8a17f467a4e1..e837ef7151dad699b95a7b3bcb869553631bbe53 100644 (file)
                <delete dir="${output-dir}/WebContent/VAADIN/widgetsets/.gwt-tmp" includeemptydirs="true"/>
        </target>
 
-       <target name="compile-widgetset-generator">
+       <target name="compile-widgetset-generator" depends="init, preprocess-src">
                <mkdir dir="build/classes"/>
                <javac source="1.5" target="1.5" classpathref="compile.classpath.server-side" destdir="build/classes" debug="true" encoding="UTF-8">
             <src path="${result-path}/src"/>
-                       <include name="${toolkit-package}/terminal/gwt/widgetsetutils/WidgetMapGenerator" />
-            <exclude name="**"/>
+                       <include name="com/vaadin/terminal/gwt/widgetsetutils/WidgetMapGenerator.java" />
+            <!-- <exclude name="**"/> -->
                </javac>
        </target>
        
        <target name="compile-client-side" depends="compile-client-side-sequential, compile-client-side-parallel"/>
 
        <!-- Definitions for building local components, i.e., not for an installation package. -->
-       <target name="init-nonpackage" depends="init-platform">
+       <target name="init-nonpackage" depends="init-platform, init">
                <property file="build/VERSION.properties" />
                <property file="build/GWT-VERSION.properties" />