Skip to content

Commit 9ece00b

Browse files
committed
Merge branch '3.2.x' into 3.3.x
2 parents 9f34899 + c88a2dc commit 9ece00b

File tree

1 file changed

+5
-5
lines changed
  • spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant

1 file changed

+5
-5
lines changed

Diff for: spring-boot-tests/spring-boot-smoke-tests/spring-boot-smoke-test-ant/build.xml

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@
2929
</target>
3030

3131
<target name="init" depends="classpaths">
32-
<mkdir dir="build/ant/classes" />
32+
<mkdir dir="${basedir}/classes" />
3333
</target>
3434

3535
<target name="compile" depends="init" description="compile">
36-
<javac srcdir="${projectDir}/src/main/java" destdir="build/ant/classes" classpathref="compile.classpath" fork="true" includeantruntime="false" source="8" target="8" compiler="javac1.8"/>
36+
<javac srcdir="${projectDir}/src/main/java" destdir="${basedir}/classes" classpathref="compile.classpath" fork="true" includeantruntime="false" source="8" target="8" compiler="javac1.8"/>
3737
</target>
3838

3939
<target name="clean" description="cleans all created files/dirs">
@@ -42,8 +42,8 @@
4242
</target>
4343

4444
<target name="build" depends="compile">
45-
<delete file="build/ant/libs/${ant.project.name}.jar"/>
46-
<spring-boot:exejar destfile="build/ant/libs/${ant.project.name}.jar" classes="build/ant/classes">
45+
<delete file="${basedir}/libs/${ant.project.name}.jar"/>
46+
<spring-boot:exejar destfile="${basedir}/libs/${ant.project.name}.jar" classes="${basedir}/classes">
4747
<spring-boot:lib>
4848
<fileset dir="${lib.dir}/runtime" />
4949
</spring-boot:lib>
@@ -54,7 +54,7 @@
5454
<target name="manual" depends="compile">
5555
<jar destfile="target/${ant.project.name}-${ant-spring-boot.version}.jar" compress="false">
5656
<mappedresources>
57-
<fileset dir="build/ant/classes" />
57+
<fileset dir="${basedir}/classes" />
5858
<globmapper from="*" to="BOOT-INF/classes/*"/>
5959
</mappedresources>
6060
<mappedresources>

0 commit comments

Comments
 (0)