forked from spring-projects/spring-boot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ivy.xml
13 lines (13 loc) · 811 Bytes
/
ivy.xml
1
2
3
4
5
6
7
8
9
10
11
12
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="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>