forked from square/retrofit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ivy.xml
36 lines (31 loc) · 1.28 KB
/
ivy.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright 2010 Square, Inc. -->
<!--
- Ivy module file, describing dependencies on other projects.
-
- @author Eric Burke ([email protected])
-->
<ivy-module
version="2.0"
xmlns:e="http://ant.apache.org/ivy/extra"
>
<info organisation="com.squareup" module="retrofit"/>
<configurations>
<conf name="android" description="Classes with Android dependencies."/>
</configurations>
<publications>
<artifact conf="android" name="retrofit-android" ext="jar"/>
<artifact conf="android" name="retrofit-android" ext="jar" e:classifier="src"/>
</publications>
<!-- Note: find these at http://mvnrepository.com/ -->
<dependencies>
<dependency org="com.google.android" name="android-test" rev="2.2.1"/>
<dependency org="com.google.code.gson" name="gson" rev="2.1"/>
<dependency org="com.googlecode.jarjar" name="jarjar" rev="1.1"/>
<dependency org="com.google.code.guice" name="guice" rev="1.0"/>
<dependency org="org.apache.httpcomponents" name="httpmime" rev="4.1-alpha1"/>
<dependency org="junit" name="junit" rev="4.8.1"/>
<dependency org="org.apache.httpcomponents" name="httpclient" rev="4.1-alpha1"/>
<dependency org="org.easymock" name="easymock" rev="2.5.2"/>
</dependencies>
</ivy-module>