Created
May 7, 2015 15:49
-
-
Save amertkara/aa727ceb89ff801c0ede to your computer and use it in GitHub Desktop.
ivy assets
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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