-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathivy-configurations.xml
More file actions
14 lines (14 loc) · 878 Bytes
/
ivy-configurations.xml
File metadata and controls
14 lines (14 loc) · 878 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<configurations defaultconfmapping="default">
<conf name="master" description="contains the artifact but no dependencies"/>
<conf name="compile" visibility="private"
description="artifacts needed to compile the application"/>
<conf name="runtime" extends="compile"
visibility="public"
description="runtime but not the artifact"/>
<conf name="test" extends="runtime"
visibility="public"
description="the classpath needed to run tests"/>
<conf name="provided" visibility="private"
description="artifacts needed to compile the application, but are provided by the runtime container"/>
<conf name="default" extends="master,runtime"/>
</configurations>