https://github.com/thinkaurelius/titan
Revision 81e9193ace9ee64e71732be6b490ad8b4b7a3c0e authored by Dan LaRocque on 18 April 2014, 23:38:39 UTC, committed by Dan LaRocque on 18 April 2014, 23:38:39 UTC
1 parent 6136a90
Raw File
Tip revision: 81e9193ace9ee64e71732be6b490ad8b4b7a3c0e authored by Dan LaRocque on 18 April 2014, 23:38:39 UTC
[maven-release-plugin] prepare release 0.4.3
Tip revision: 81e9193
pom.xml

<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</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>
back to top