Skeleton project for building Java using Ant and Ivy
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ivy.xml 1.1KB

123456789101112131415161718192021222324
  1. <ivy-module version="2.0">
  2. <info organisation="com.dmdirc" module="updater"/>
  3. <configurations>
  4. <conf name="build" description="Everything needed to support the build process"/>
  5. <conf name="compile" description="Everything needed to compile the project separately"/>
  6. <conf name="test" description="Everything needed to test the project"/>
  7. <conf name="default" extends="build,compile,test"/>
  8. </configurations>
  9. <dependencies>
  10. <dependency org="com.github.shanemcc" name="jgit-describe" rev="0.1" conf="build->default" />
  11. <dependency org="org.slf4j" name="slf4j-api" rev="1.6.+" conf="compile->default" />
  12. <dependency org="ch.qos.logback" name="logback-classic" rev="1.+" conf="test->default" />
  13. <dependency org="com.github.peichhorn" name="lombok-pg" rev="0.10.8-SNAPSHOT" conf="compile->default" />
  14. <dependency org="junit" name="junit" rev="4.+" conf="test->default" />
  15. <dependency org="org.mockito" name="mockito-all" rev="1.+" conf="test->default" />
  16. <exclude org="ant" module="ant"/>
  17. </dependencies>
  18. </ivy-module>