Skip to content

Instantly share code, notes, and snippets.

@amertkara
Created May 7, 2015 15:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amertkara/aa727ceb89ff801c0ede to your computer and use it in GitHub Desktop.
Save amertkara/aa727ceb89ff801c0ede to your computer and use it in GitHub Desktop.
ivy assets
<?xml version="1.0" encoding="ISO-8859-1"?>
<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info organisation="com.amertkara" module="module-name-comes-here" revision="0.1"/>
<publications>
<artifact type="jar" name="jar-name" conf="default" />
</publications>
<dependencies>
<dependency org="commons-lang" name="commons-lang" rev="2.0"/>
<dependency org="commons-cli" name="commons-cli" rev="1.0"/>
<dependency org="junit" name="junit" rev="4.11" conf="test->default" />
<!-- Excluded module example -->
<dependency org="com.amertkara.somelib" name="amertkara-somelib" rev="0.2b">
<exclude module="somemodule"></exclude>
</dependency>
</dependencies>
</ivy-module>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment