-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
50 lines (49 loc) · 1.96 KB
/
pom.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan</artifactId>
<version>0.4.3-SNAPSHOT</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>titan-es</artifactId>
<name>Titan-ElasticSearch: Distributed Indexing Support</name>
<url>http://thinkaurelius.github.com/titan/</url>
<properties>
<top.level.basedir>${basedir}/..</top.level.basedir>
<!--
ES depends on Lucene. This ES dependency can affect the
version used by the titan-lucene module. When updating
the ES version, also consider the version of Lucene upon
which it depends and modify ../titan-lucene/pom.xml
as necessary to keep the versions matched.
-->
<elasticsearch.version>0.90.5</elasticsearch.version>
</properties>
<dependencies>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-core</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.thinkaurelius.titan</groupId>
<artifactId>titan-test</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.elasticsearch</groupId>
<artifactId>elasticsearch</artifactId>
<version>${elasticsearch.version}</version>
</dependency>
</dependencies>
<build>
<resources>
<resource>
<directory>${basedir}/src/main/resources</directory>
<filtering>true</filtering>
</resource>
</resources>
</build>
</project>