mirror of
https://github.com/msgpack/msgpack-c.git
synced 2025-03-19 21:18:23 +01:00

Now maven2 repository for msgpack is created at the following URL. - http://msgpack.sourceforge.net/maven2/
20 lines
610 B
XML
20 lines
610 B
XML
<ivy-module version="2.0"
|
|
xmlns:e="http://ant.apache.org/ivy/extra">
|
|
|
|
<info organisation="org"
|
|
module="${name}" revision="${version}">
|
|
<ivyauthor name="MessagePack Project" url="http://msgpack.sourceforge.net/"/>
|
|
<description>MessagePack</description>
|
|
</info>
|
|
|
|
<configurations defaultconfmapping="default">
|
|
<conf name="default"/> <!-- "runtime" configuration -->
|
|
<conf name="test"/>
|
|
<conf name="build" extends="default"/>
|
|
</configurations>
|
|
|
|
<dependencies>
|
|
<dependency org="junit" name="junit" rev="4.8.1" conf="test->default"/>
|
|
</dependencies>
|
|
</ivy-module>
|