forked from skeeto/sample-java-project
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathivy.xml
More file actions
25 lines (22 loc) · 808 Bytes
/
ivy.xml
File metadata and controls
25 lines (22 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<ivy-module version="2.0">
<info organisation="com.nullprogram" module=""/>
<configurations>
<conf name="default"/>
<conf name="build" extends="default" visibility="private"/>
<conf name="test" extends="build" visibility="private"/>
<conf name="analysis" extends="build" visibility="private"/>
</configurations>
<dependencies>
<!-- Run -->
<!-- Build -->
<dependency org="org.projectlombok" name="lombok" rev="0.10.4"
conf="build->default"/>
<!-- Unit Test -->
<dependency org="junit" name="junit" rev="4.10"
conf="test->default"/>
<!-- Static Analysis -->
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="5.5"
conf="analysis->default"/>
</dependencies>
</ivy-module>