mirror of
https://github.com/msgpack/msgpack-python.git
synced 2026-02-07 02:09:59 +00:00
introduce JUnit framework for testing.
This commit is contained in:
parent
228f742b2f
commit
b4b1f0a2c9
3 changed files with 220 additions and 17 deletions
19
java/ivy.xml
Normal file
19
java/ivy.xml
Normal file
|
|
@ -0,0 +1,19 @@
|
|||
<ivy-module version="2.0"
|
||||
xmlns:e="http://ant.apache.org/ivy/extra">
|
||||
|
||||
<info organisation="org.messagepack"
|
||||
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>
|
||||
Loading…
Add table
Add a link
Reference in a new issue