Add basic build.xml to actuator sample

$ ant -lib ivy-2.2.jar

(substitute the location of your actual ivy jar)

    $ java -jar target/*.jar

Fixes gh-140
This commit is contained in:
Dave Syer
2013-12-23 11:14:15 +00:00
parent 8e2a6eec2a
commit f5ad4be2c1
5 changed files with 122 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
<ivy-module version="2.0">
<info organisation="org.springframework.boot" module="spring-boot-sample-actuator"/>
<configurations>
<conf name="loader" description="helpers added to final jar" />
<conf name="compile" description="everything needed to compile this module" />
<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"/>
</dependencies>
</ivy-module>