My favorites | Sign in
Project Logo
                
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
<!-- Builds both client and service. Projects can also be built indpendently using the build files in each project's directory. -->
<project name="OSGi Hello World Spec" default="usage" basedir=".">
<target name="build.all">
<ant antfile="./spec/build.xml" inheritall="false"/>
<ant antfile="./service/build.xml" inheritall="false"/>
<ant antfile="./service2/build.xml" inheritall="false"/>
<ant antfile="./client/build.xml" inheritall="false" />
</target>

<target name="clean.all">
<ant antfile="./spec/build.xml" target="clean" inheritall="false"/>
<ant antfile="./service/build.xml" target="clean" inheritall="false"/>
<ant antfile="./service2/build.xml" target="clean" inheritall="false"/>
<ant antfile="./client/build.xml" target="clean" inheritall="false" />
</target>

<target name="usage">

<echo message=""/>
<echo message="Master HelloWorldSpec OSGi Build Script"/>
<echo message="-----------------------------------------"/>
<echo message=""/>
<echo message="Among the available targets are:"/>
<echo message=""/>
<echo message=" clean.all --> Clean the spec, service, service2, and client project directories"/>
<echo message=" build.all --> Build the spec, service, service2, and client projects."/>
<echo message=""/>
<echo message="To run individual builds:"/>
<echo message=""/>
<echo message=" Spec -> run the build.xml in the spec project directory"/>
<echo message=" Service -> run the build.xml in the service project directory"/>
<echo message=" Service2 -> run the build.xml in the service2 project directory"/>
<echo message=" Client -> run the build.xml in the client project directory"/>
<echo message=""/>
<echo message="-----------------------------------------"/>

</target>
</project>
Show details Hide details

Change log

r15 by pragkirk on Apr 30, 2008   Diff
Initial Version of HelloWorldSpec and
Spring
Go to: 
Project members, sign in to write a code review

Older revisions

All revisions of this file

File info

Size: 1830 bytes, 38 lines

File properties

svn:executable
Hosted by Google Code