-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
James Watson
committed
Mar 31, 2016
1 parent
1ec141e
commit 074231c
Showing
3 changed files
with
83 additions
and
28 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ivysettings> | ||
<settings defaultResolver="custom-chain"/> | ||
<resolvers> | ||
<chain name="custom-chain"> | ||
<ibiblio name="restlet" m2compatible="true" root="http://maven.restlet.com"/> | ||
<ibiblio name="central" m2compatible="true"/> | ||
</chain> | ||
</resolvers> | ||
<modules> | ||
<module organization="org.restlet.jee" resolver="restlet"/> | ||
<module organization="restlet" resolver="restlet"/> | ||
<module organization="org.restlet" resolver="restlet"/> | ||
</modules> | ||
</ivysettings> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,15 @@ | ||
<?xml version="1.0"?> | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<ivy-module version="2.0"> | ||
<info organisation="com.example" module="common-libs"/> | ||
<info organisation="neso.solr" module="solr-mongo-importer"/> | ||
<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" /> | ||
<conf name="compile" transitive="true" visibility="public"/> | ||
</configurations> | ||
<dependencies> | ||
<dependency org="org.mongodb" name="mongo-java-driver" rev="2.11.1" | ||
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(*)"/> | ||
conf="compile->default"/> | ||
<dependency org="junit" name="junit" rev="4.3" | ||
conf="compile->compile(*),master(*);runtime->runtime(*);master->master(*)"/> | ||
conf="compile->default"/> | ||
<dependency org="org.apache.solr" name="solr-dataimporthandler" rev="5.5.0" | ||
conf="compile->default"/> | ||
</dependencies> | ||
</ivy-module> |