forked from mfine/AmazonSNSExample
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
22 lines (17 loc) · 645 Bytes
/
build.xml
File metadata and controls
22 lines (17 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<project name="Amazon SNS Example" default="build" basedir=".">
<path id="aws.java.sdk.classpath">
<fileset dir="lib" includes="**/*.jar"/>
<pathelement location="."/>
</path>
<target name="build">
<javac srcdir="." destdir="." classpathref="aws.java.sdk.classpath"/>
</target>
<target name="sender" depends="build">
<java classname="AmazonSNSSender" classpathref="aws.java.sdk.classpath" fork="true"/>
</target>
<target name="receiver" depends="build">
<java classname="AmazonSNSReceiver" classpathref="aws.java.sdk.classpath" fork="true">
<arg line="${args}"/>
</java>
</target>
</project>