forked from rsanchez-wsu/jfiles
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathivy.xml
More file actions
24 lines (20 loc) · 1.09 KB
/
Copy pathivy.xml
File metadata and controls
24 lines (20 loc) · 1.09 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
<ivy-module version="2.0">
<info organisation="edu.wright" module="JFiles">
<ivyauthor name="WSU CEG3120 Students"/>
</info>
<configurations>
<conf name="lib" description="Libraries used at compile/runtime"/>
<conf name="tools" description="Libraries used during development/unit testing"/>
</configurations>
<dependencies>
<!-- Compile/runtime dependencies (needed to build and run the application) -->
<dependency org="org.apache.derby" name="derby" rev="10.11.1.1" conf="lib->default"/>
<!-- Compile-only dependencies (needed to build the application and run tests) -->
<dependency org="junit" name="junit" rev="4.6" conf="tools->default"/>
<dependency org="com.google.code.findbugs" name="findbugs" rev="3.0.1" conf="tools->default"/>
<dependency org="com.puppycrawl.tools" name="checkstyle" rev="6.11.2" conf="tools->default"/>
<!-- Dependencies for Log4J Framework -->
<dependency org="org.apache.logging.log4j" name="log4j-api" rev="2.6.2" conf="lib->*"/>
<dependency org="org.apache.logging.log4j" name="log4j-core" rev="2.6.2" conf="lib->*"/>
</dependencies>
</ivy-module>