Created
January 25, 2016 17:06
-
-
Save rickyngk/5fc70d3b36d1023a26f3 to your computer and use it in GitHub Desktop.
graphaware sample pom
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
<?xml version="1.0" encoding="UTF-8"?> | |
<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> | |
<groupId>com.r</groupId> | |
<artifactId>try_graphaware</artifactId> | |
<version>1.0-SNAPSHOT</version> | |
<repositories> | |
<repository> | |
<id>maven2</id> | |
<name>Maven2</name> | |
<url>http://central.maven.org/maven2/</url> | |
<layout>default</layout> | |
</repository> | |
</repositories> | |
<properties> | |
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | |
<neo4j.version>2.3.1</neo4j.version> | |
<graphaware.neo4j.version>2.3.1.36</graphaware.neo4j.version> | |
</properties> | |
<dependencies> | |
<!-- neo4j --> | |
<dependency> | |
<groupId>org.neo4j</groupId> | |
<artifactId>neo4j-kernel</artifactId> | |
<version>${neo4j.version}</version> | |
<type>test-jar</type> | |
<scope>test</scope> | |
</dependency> | |
<!-- graphaware.neo4j --> | |
<dependency> | |
<groupId>com.graphaware.neo4j</groupId> | |
<artifactId>recommendation-engine</artifactId> | |
<version>${graphaware.neo4j.version}.9</version> | |
</dependency> | |
<dependency> | |
<groupId>com.graphaware.neo4j</groupId> | |
<artifactId>common</artifactId> | |
<version>${graphaware.neo4j.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.graphaware.neo4j</groupId> | |
<artifactId>runtime</artifactId> | |
<version>${graphaware.neo4j.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>com.graphaware.neo4j</groupId> | |
<artifactId>tests</artifactId> | |
<version>${graphaware.neo4j.version}</version> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment