forked from aws/aws-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.xml
More file actions
15 lines (14 loc) · 689 Bytes
/
build.xml
File metadata and controls
15 lines (14 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<!-- Ant build script for compiling and running the AWS Java SDK SQS sample.
Don't forget to fill in your AWS access credentials in (~/.aws/credentials)
before trying to run it. -->
<project name="Amazon SQS Sample" default="run" basedir=".">
<path id="aws.java.sdk.classpath">
<fileset dir="../../third-party" includes="**/*.jar"/>
<fileset dir="../../lib" includes="**/*.jar"/>
<pathelement location="."/>
</path>
<target name="run">
<javac srcdir="." destdir="." classpathref="aws.java.sdk.classpath"/>
<java classname="SimpleQueueServiceSample" classpathref="aws.java.sdk.classpath" fork="true"/>
</target>
</project>