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
Latest commit
35 lines (32 loc) · 1.33 KB
/
Copy pathivy.xml
File metadata and controls
35 lines (32 loc) · 1.33 KB
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
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0"?>
<ivy-moduleversion="2.0">
<infoorganisation="com.nullprogram"module="sample-java-project"/>
<configurations>
<confname="default"/>
<confname="build"extends="default"visibility="private"/>
<confname="test"extends="build"visibility="private"/>
<confname="analysis"extends="build"visibility="private"/>
</configurations>
<dependencies>
<dependencyorg="com.beust"name="jcommander"rev="1.20"
conf="default"/>
<!-- Build -->
<dependencyorg="org.projectlombok"name="lombok"rev="0.10.4"
conf="build->default"/>
<!-- Unit Test -->
<dependencyorg="junit"name="junit"rev="4.10"
conf="test->default"/>
<dependencyorg="net.sourceforge.cobertura"name="cobertura"rev="1.9.4.1"
conf="test->default">
<excludemodule="ant"/>
</dependency>
<!-- Static Analysis -->
<dependencyorg="com.puppycrawl.tools"name="checkstyle"rev="5.5"
conf="analysis->default"/>
<dependencyorg="com.google.code.findbugs"name="findbugs"rev="2.0.0"
conf="analysis->default"/>
<!-- note: due to FindBugs BCEL conflict, list PMD last. -->
<dependencyorg="net.sourceforge.pmd"name="pmd"rev="5.0.0"
conf="analysis->default"/>
</dependencies>
</ivy-module>