java-tutorials/spring-data-neo4j/pom.xml

95 lines
3.0 KiB
XML
Raw Normal View History

2016-05-04 13:25:34 -04:00
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2016-07-24 05:15:22 -04:00
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2016-05-04 13:25:34 -04:00
<modelVersion>4.0.0</modelVersion>
<groupId>com.baeldung</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>1.0</version>
<packaging>jar</packaging>
<properties>
2016-06-28 04:39:00 -04:00
<java.version>1.8</java.version>
2016-05-04 13:25:34 -04:00
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
2016-06-28 04:39:00 -04:00
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<neo4j.version>3.0.1</neo4j.version>
<spring-data-neo4j.version>4.1.1.RELEASE</spring-data-neo4j.version>
2016-05-04 13:25:34 -04:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
2016-05-08 15:04:59 -04:00
<version>${spring-data-neo4j.version}</version>
2016-05-04 13:25:34 -04:00
</dependency>
2016-05-08 15:04:59 -04:00
<dependency>
<groupId>com.voodoodyne.jackson.jsog</groupId>
<artifactId>jackson-jsog</artifactId>
<version>1.1</version>
<scope>compile</scope>
</dependency>
<dependency>
2016-06-28 04:39:00 -04:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
2016-07-24 05:15:22 -04:00
<version>1.3.6.RELEASE</version>
2016-06-28 04:39:00 -04:00
<scope>test</scope>
2016-05-08 15:04:59 -04:00
</dependency>
2016-06-28 04:39:00 -04:00
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j</artifactId>
<version>${spring-data-neo4j.version}</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>${neo4j.version}</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.neo4j.app</groupId>
<artifactId>neo4j-server</artifactId>
<version>${neo4j.version}</version>
<type>test-jar</type>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-ogm-test</artifactId>
<version>2.0.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.neo4j.test</groupId>
<artifactId>neo4j-harness</artifactId>
<version>${neo4j.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.12</version>
</dependency>
2016-05-04 13:25:34 -04:00
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
2016-06-28 04:39:00 -04:00
<version>4.2.3.RELEASE</version>
2016-05-04 13:25:34 -04:00
</dependency>
2016-06-28 04:39:00 -04:00
2016-05-04 13:25:34 -04:00
</dependencies>
2016-06-28 04:39:00 -04:00
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
</plugin>
</plugins>
</build>
2016-05-04 13:25:34 -04:00
</project>