You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
50 lines
1.7 KiB
50 lines
1.7 KiB
<project |
|
xmlns:ivy="antlib:org.apache.ivy.ant" |
|
xmlns:spring-boot="antlib:org.springframework.boot.ant" |
|
name="spring-boot-sample-ant" |
|
default="build"> |
|
|
|
<description> |
|
Sample ANT build script for a Spring Boot executable JAR project. Uses ivy for |
|
dependency management and spring-boot-antlib for additional tasks. Run with |
|
'$ ant -lib ivy-2.2.jar spring-boot-antlib.jar' (substitute the location of your |
|
actual jars). Run with '$ java -jar target/*.jar'. |
|
</description> |
|
|
|
<property name="spring-boot.version" value="1.3.8.RELEASE" /> |
|
<property name="lib.dir" location="${basedir}/target/lib" /> |
|
|
|
<target name="resolve" description="--> retrieve dependencies with ivy"> |
|
<ivy:retrieve pattern="${lib.dir}/[conf]/[artifact]-[type]-[revision].[ext]" /> |
|
</target> |
|
|
|
<target name="classpaths" depends="resolve"> |
|
<path id="compile.classpath"> |
|
<fileset dir="${lib.dir}/compile" includes="*.jar" /> |
|
</path> |
|
</target> |
|
|
|
<target name="init" depends="classpaths"> |
|
<mkdir dir="target/classes" /> |
|
</target> |
|
|
|
<target name="compile" depends="init" description="compile"> |
|
<javac srcdir="src/main/java" destdir="target/classes" classpathref="compile.classpath" /> |
|
</target> |
|
|
|
<target name="clean-all" description="cleans all created files/dirs" depends="clean"> |
|
<delete dir="${lib.dir}" /> |
|
</target> |
|
|
|
<target name="clean" description="cleans all class files"> |
|
<delete dir="target/classes" /> |
|
</target> |
|
|
|
<target name="build" depends="compile"> |
|
<spring-boot:exejar destfile="target/${ant.project.name}-${spring-boot.version}.jar" classes="target/classes"> |
|
<spring-boot:lib> |
|
<fileset dir="${lib.dir}/runtime" /> |
|
</spring-boot:lib> |
|
</spring-boot:exejar> |
|
</target> |
|
</project>
|
|
|