forked from james75/SolrMongoImporter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ivy.xml
18 lines (18 loc) · 1005 Bytes
/
ivy.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<ivy-module version="2.0">
<info organisation="com.example" module="common-libs"/>
<configurations>
<conf name="runtime" transitive="true" visibility="public" />
<conf name="master" transitive="true" visibility="public" />
<conf name="compile" transitive="true" visibility="public" />
<conf name="default" transitive="true" visibility="public" extends="master" />
</configurations>
<dependencies>
<dependency org="org.mongodb" name="mongo-java-driver" rev="2.8.0"
conf="compile->compile(*),master(*);runtime->runtime(*);master->master(*)"/>
<dependency org="org.apache.solr" name="solr-dataimporthandler" rev="3.6.0"
conf="compile->compile(*),master(*);runtime->runtime(*);master->master(*)"/>
<dependency org="junit" name="junit" rev="4.3"
conf="compile->compile(*),master(*);runtime->runtime(*);master->master(*)"/>
</dependencies>
</ivy-module>