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) · 722 Bytes
/
build.xml
File metadata and controls
15 lines (14 loc) · 722 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 console application sample.
Don't forget to fill in your AWS access credentials in AwsCredentials.properties
before trying to run it. -->
<project name="AWS Console Sample" default="run" basedir=".">
<path id="aws.java.sdk.classpath">
<fileset dir="${basedir}/../../third-party" includes="**/*.jar"/>
<fileset dir="${basedir}/../../lib" includes="**/*.jar"/>
<pathelement location="."/>
</path>
<target name="run">
<javac srcdir="." destdir="." classpathref="aws.java.sdk.classpath"/>
<java classname="AwsConsoleApp" classpathref="aws.java.sdk.classpath" fork="true"/>
</target>
</project>