summaryrefslogtreecommitdiffstats
path: root/build/build.xml
diff options
context:
space:
mode:
authorJani Laakso <jani.laakso@itmill.com>2007-11-14 19:05:09 +0000
committerJani Laakso <jani.laakso@itmill.com>2007-11-14 19:05:09 +0000
commit647dbde29740c65ddf3cf16ea1219e8ef8702bf1 (patch)
treeff38c0edd880766b9ac6fc656095613c85895563 /build/build.xml
parent4d2adcec0a2b5d4ca5c0e88a8905b2a829933401 (diff)
downloadvaadin-framework-647dbde29740c65ddf3cf16ea1219e8ef8702bf1.tar.gz
vaadin-framework-647dbde29740c65ddf3cf16ea1219e8ef8702bf1.zip
Building widgetsets is now possible through ANT file, also contains reasonable documentation to use with own project.
svn changeset:2816/svn branch:trunk
Diffstat (limited to 'build/build.xml')
-rw-r--r--build/build.xml12
1 files changed, 9 insertions, 3 deletions
diff --git a/build/build.xml b/build/build.xml
index 711ec73bcc..53416e4f0f 100644
--- a/build/build.xml
+++ b/build/build.xml
@@ -243,8 +243,7 @@
<include name="start-demo.*" />
<include name=".project" />
<include name=".classpath" />
- <include name=".VolumeIcon.icns" />
- <include name=".DS_Store" />
+ <include name="*.launch" />
</fileset>
</delete>
<copy todir="${output-dir}">
@@ -258,10 +257,15 @@
<token key="platform-specific-entries" value="&lt;classpathentry kind=&quot;lib&quot; path=&quot;gwt/gwt-dev-${package-platform}.jar&quot; /&gt;" />
<token key="/platform-specific-entries" value="" />
</replacetokens>
+ <replacetokens begintoken="&lt;" endtoken=">">
+ <token key="platform" value="${package-platform}" />
+ <token key="/platform" value="" />
+ </replacetokens>
</filterchain>
<fileset dir="build/package">
<include name=".classpath" />
<include name=".project" />
+ <include name="build-widgetsets.xml" />
</fileset>
</copy>
<if>
@@ -308,6 +312,7 @@
Add and filter root files
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
<target name="root">
+
<copy todir="${output-dir}/license">
<fileset dir="license">
<filename name="*.pdf" />
@@ -421,6 +426,7 @@
<exclude name="**/.svn" />
<exclude name="openajax/**" />
<exclude name="ITMILL/widgetsets/**" />
+ <exclude name="WEB-INF/lib/commons-fileupload-custom.jar" />
<!-- <exclude name="ITMILL/themes/tests-*" /> -->
<exclude name="WEB-INF/classes/**" />
</fileset>
@@ -587,7 +593,7 @@
<!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Documentation
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
- <target name="docs" depends="javadoc,manual-pdf,manual-html,package-docs">
+ <target name="docs"> <!-- TODO depends="javadoc,manual-pdf,manual-html,package-docs"> -->
</target>