summaryrefslogtreecommitdiffstats
path: root/push/build.xml
blob: 3e0d5805b9eb06c14079eb9b5c321f8813e3e87c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?xml version="1.0"?>

<project name="vaadin-push" basedir="." default="publish-local">
	<description>
		Meta package which defines dependencies needed for push
	</description>
	<include file="../build.xml" as="vaadin" />
	<include file="../common.xml" as="common" />

	<property name="module.name" value="vaadin-push" />
	<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="publish-local" depends="jar">
		<antcall target="common.publish-local" />
	</target>

	<target name="clean">
		<antcall target="common.clean" />
	</target>
	<target name="checkstyle">
	</target>

	<target name="test" depends="checkstyle">
	</target>
</project>