forked from maxpert/RedisDirectory
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathivy.xml
26 lines (21 loc) · 1.11 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
<?xml version="1.0" encoding="ISO-8859-1"?>
<ivy-module version="2.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ant.apache.org/ivy/schemas/ivy.xsd">
<info
organisation="mxp"
module="redisdir"
status="integration">
</info>
<configurations>
<conf name="build" description="Libraries needed to for compilation"/>
<conf name="runtime" extends="build" description="Libraries that need to be included with project jar" />
</configurations>
<dependencies>
<dependency conf="build->default" org="junit" name="junit" rev="4.8.2"/>
<dependency conf="build->default" org="org.apache.lucene" name="lucene-core" rev="3.6.1"/>
<dependency conf="build->default" org="redis.clients" name="jedis" rev="2.1.0"/>
<dependency conf="build->default" org="log4j" name="log4j" rev="1.2.16"/>
<dependency conf="build->default" org="org.apache.solr" name="solr-core" rev="3.6.1"/>
<dependency conf="build->default" org="org.xerial.snappy" name="snappy-java" rev="1.0.4.1"/>
</dependencies>
</ivy-module>