Update ant example to 1.0.0.BUILD-SNAPSHOT

This commit is contained in:
Phillip Webb 2014-01-21 10:22:42 -08:00
parent 72dc09cb56
commit b12d728c06
2 changed files with 4 additions and 4 deletions

View File

@ -5,7 +5,7 @@
'$ ant -lib ivy-2.2.jar' (substitute the location of your actual ivy jar). Run with '$ java -jar target/*.jar'.
</description>
<property name="spring-boot.version" value="0.5.0.BUILD-SNAPSHOT" />
<property name="spring-boot.version" value="1.0.0.BUILD-SNAPSHOT" />
<property name="start-class" value="org.springframework.boot.sample.actuator.SampleActuatorApplication" />
<target name="resolve" description="--> retrieve dependencies with ivy">

View File

@ -6,8 +6,8 @@
<conf name="runtime" extends="compile" description="everything needed to run this module" />
</configurations>
<dependencies>
<dependency org="org.springframework.boot" name="spring-boot-loader" rev="0.5.0.BUILD-SNAPSHOT" conf="loader->default"/>
<dependency org="org.springframework.boot" name="spring-boot-starter-web" rev="0.5.0.BUILD-SNAPSHOT" conf="compile"/>
<dependency org="org.springframework.boot" name="spring-boot-starter-actuator" rev="0.5.0.BUILD-SNAPSHOT" conf="runtime"/>
<dependency org="org.springframework.boot" name="spring-boot-loader" rev="1.0.0.BUILD-SNAPSHOT" conf="loader->default"/>
<dependency org="org.springframework.boot" name="spring-boot-starter-web" rev="1.0.0.BUILD-SNAPSHOT" conf="compile"/>
<dependency org="org.springframework.boot" name="spring-boot-starter-actuator" rev="1.0.0.BUILD-SNAPSHOT" conf="runtime"/>
</dependencies>
</ivy-module>