sventon subversion web client - http://www.sventon.org |
[show recent changes] | |
Rev: 53086 - http://anonsvn.icesoft.org/repo / iceutil / branches / vras-1.0.0-beta3 / iceutil / build.xml |
Show File - build.xml [show properties] |
1 | <?xml version="1.0"?> |
2 | |
3 | <!-- |
4 | ~ Copyright 2004-2016 ICEsoft Technologies Canada Corp. |
5 | ~ |
6 | ~ Licensed under the Apache License, Version 2.0 (the "License"); |
7 | ~ you may not use this file except in compliance with the |
8 | ~ License. You may obtain a copy of the License at |
9 | ~ |
10 | ~ http://www.apache.org/licenses/LICENSE-2.0 |
11 | ~ |
12 | ~ Unless required by applicable law or agreed to in writing, |
13 | ~ software distributed under the License is distributed on an "AS |
14 | ~ IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either |
15 | ~ express or implied. See the License for the specific language |
16 | ~ governing permissions and limitations under the License. |
17 | --> |
18 | |
19 | <project name="iceutil-bundle" default="all"> |
20 | |
21 | <property file="./build.properties"/> |
22 | |
23 | <target name="all" description="Builds the iceutil.jar."> |
24 | <antcall target="iceutil" /> |
25 | </target> |
26 | |
27 | <target name="allclean" description="Cleans all remnants of previous ICEsoft Util builds."> |
28 | <subant target="clean"> |
29 | <fileset dir="." includes="*/build.xml"> |
30 | <exclude name="**/maven2/build.xml"/> |
31 | </fileset> |
32 | </subant> |
33 | <delete file="lib/iceutil.jar" failonerror="false" /> |
34 | </target> |
35 | |
36 | <target name="iceutil" description="Compiles and assembles the iceutil.jar."> |
37 | <antcall target="util" /> |
38 | </target> |
39 | |
40 | <target name="util" description="Compiles and assembles the ICEsoft Util (o/s) iceutil.jar."> |
41 | <subant target="jar"> |
42 | <fileset dir="util" includes="build.xml" /> |
43 | </subant> |
44 | </target> |
45 | |
46 | </project> |
sventon 2.5.1