summaryrefslogtreecommitdiffstats
path: root/collaboration/wink-helloworld-sca/build.xml
blob: 5461b364238bf70972b573540644ea929ff30296 (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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<?xml version="1.0" encoding="UTF-8"?>
<!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at
    
     http://www.apache.org/licenses/LICENSE-2.0
    
    Unless required by applicable law or agreed to in writing,
    software distributed under the License is distributed on an
    "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
    KIND, either express or implied.  See the License for the
    specific language governing permissions and limitations
    under the License.
-->

<project name="HelloWorld" default="dist" basedir=".">
	<description>
        Ant build file for Wink example Hello World
    </description>

	<property name="final.war.name" value="HelloWorld.war" />
	<property name="sdk.jar.name" value="@SDK_JAR_NAME@" />


	<!-- set global properties for this build -->
	<property name="build" location="build" />
	<property name="build.classes" location="${build}/classes" />
	<property name="sdk.base" location="${basedir}/../../.." />
	<property name="sdk.lib" location="${sdk.base}/lib" />
	<property name="sdk.dist" location="${sdk.base}/dist" />
	<property name="sdk.jar" location="${sdk.dist}/${sdk.jar.name}" />
	<property name="final.war" location="${basedir}/${final.war.name}" />
	<property name="main" location="${basedir}/src/main" />
	<property name="webapp" location="${main}/webapp" />
	<property name="resources" location="${main}/resources" />


	<target name="init">
		<!-- Create the build directory structure used by compile -->
		<mkdir dir="${build.classes}" />
	</target>


	<target name="compile" depends="init" description="compile the source ">
		<!-- Set classpath for SDK lib -->
		<path id="sdk.classpath">
			<fileset dir="${sdk.lib}" includes="**/*.jar" />
			<pathelement path="${sdk.jar}" />
		</path>

		<!-- Compile the java code -->
		<javac srcdir="${main}/java" destdir="${build.classes}">
			<classpath refid="sdk.classpath" />
		</javac>
	</target>


	<target name="dist" depends="compile" description="generate the distribution">

		<!-- Create the war file -->
		<war destfile="${final.war}" webxml="${webapp}/WEB-INF/web.xml">
			<webinf dir="${webapp}/WEB-INF" includes="**/*" />
			<classes dir="${build.classes}" includes="**/*" />
			<lib dir="${sdk.lib}" includes="*.jar" />
			<lib file="${sdk.jar}" />
		</war>
	</target>


	<target name="clean" description="clean up">
		<!-- Delete the ${build} and ${dist} directory trees -->
		<delete dir="${build}" />
		<delete file="${final.war}" />
	</target>

</project>