forked from ulhas1991/Jenkins
-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathivy.xml
More file actions
12 lines (12 loc) · 722 Bytes
/
ivy.xml
File metadata and controls
12 lines (12 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
<ivy-module version="2.0">
<info organisation="org.springframework.boot" module="spring-boot-sample-ant" />
<configurations>
<conf name="compile" description="everything needed to compile this module" />
<conf name="runtime" extends="compile" description="everything needed to run this module" />
<conf name="loader" description="Spring Boot loader used when manually building an executable archive" />
</configurations>
<dependencies>
<dependency org="org.springframework.boot" name="spring-boot-starter" rev="${spring-boot.version}" conf="compile" />
<dependency org="org.springframework.boot" name="spring-boot-loader" rev="${spring-boot.version}" conf="loader->default" />
</dependencies>
</ivy-module>