summaryrefslogtreecommitdiffstats
path: root/push
diff options
context:
space:
mode:
Diffstat (limited to 'push')
-rw-r--r--push/build.xml42
1 files changed, 24 insertions, 18 deletions
diff --git a/push/build.xml b/push/build.xml
index 6fae99e760..3e0d5805b9 100644
--- a/push/build.xml
+++ b/push/build.xml
@@ -11,26 +11,32 @@
<property name="module.symbolic" value="com.vaadin.push" />
<property name="result.dir" location="result" />
<path id="classpath.compile.custom" />
+
+ <union id="jar.includes">
+ <fileset dir="${vaadin.basedir}/WebContent">
+ <include name="VAADIN/jquery-1.7.2.rebased.js" />
+ <include name="VAADIN/jquery.atmosphere.rebased.js" />
+ </fileset>
+ </union>
+
+ <target name="jar">
+ <property name="server.osgi.import" value="" />
+ <antcall target="common.jar">
+ <param name="require-bundle" value="" />
+ <param name="import-package" value="${server.osgi.import}" />
+ <reference torefid="extra.jar.includes" refid="jar.includes" />
+ </antcall>
+ </target>
- <target name="jar">
- <property name="server.osgi.import" value="" />
- <antcall target="common.jar">
- <param name="require-bundle" value="" />
- <param name="import-package" value="${server.osgi.import}" />
- <reference torefid="extra.jar.includes"
- refid="empty.reference" />
- </antcall>
- </target>
-
- <target name="publish-local" depends="jar">
- <antcall target="common.publish-local" />
- </target>
+ <target name="publish-local" depends="jar">
+ <antcall target="common.publish-local" />
+ </target>
- <target name="clean">
- <antcall target="common.clean" />
- </target>
- <target name="checkstyle">
- </target>
+ <target name="clean">
+ <antcall target="common.clean" />
+ </target>
+ <target name="checkstyle">
+ </target>
<target name="test" depends="checkstyle">
</target>