summaryrefslogtreecommitdiffstats
path: root/server/build.xml
blob: d61f412883cce59bbe6238a0cb18adebc9269420 (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<?xml version="1.0"?>

<project name="vaadin-server" basedir="." default="publish-local" xmlns:ivy="antlib:org.apache.ivy.ant">
	<description>
		Compiles build helpers used when building other modules.
	</description>
	<include file="../common.xml" as="common" />
	<include file="../build.xml" as="vaadin" />
	<include file="../gwt-files.xml" as="gwtfiles" />

	<!-- global properties -->
	<property name="module.name" value="vaadin-server" />
	<property name="module.symbolic" value="com.vaadin.server" />
	<property name="result.dir" value="result" />
	<path id="classpath.compile.custom" />
	<path id="classpath.test.custom" />

	<union id="jar.includes">
		<union refid="server.gwt.includes" />
		<fileset dir="${vaadin.basedir}/WebContent">
			<include name="VAADIN/vaadinBootstrap.js" />
		</fileset>
	</union>

	<target name="jar">
		<property name="server.osgi.import" value="javax.servlet;version=&quot;2.4.0&quot;,javax.servlet.http;version=&quot;2.4.0&quot;,org.jsoup;version=&quot;1.6.3&quot;,org.jsoup.parser;version=&quot;1.6.3&quot;,org.jsoup.nodes;version=&quot;1.6.3&quot;,org.jsoup.helper;version=&quot;1.6.3&quot;,org.jsoup.safety;version=&quot;1.6.3&quot;,org.json;version=&quot;0.0.20080701&quot;" />
		<antcall target="common.jar">
			<param name="require-bundle" value="com.vaadin.shared;bundle-version=&quot;${vaadin.version}&quot;"/>
			<param name="import-package" value="${server.osgi.import}" />
			<param name="osgi.extra.package.prefixes" value="VAADIN" />
			<reference torefid="extra.jar.includes" refid="jar.includes" />
		</antcall>
	</target>

	<target name="publish-local" depends="jar">
		<antcall target="common.sources.jar">
			<reference torefid="extra.jar.includes" refid="server.gwt.includes" />
		</antcall>
		<antcall target="common.javadoc.jar" />

		<antcall target="common.publish-local" />
	</target>

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

	<target name="checkstyle">
		<antcall target="common.checkstyle">
			<param name="cs.src" location="src" />
		</antcall>
	</target>

	<target name="test" depends="checkstyle">
		<antcall target="common.test.run" />
	</target>


</project>