2019-12-05 09:56:52 -05:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-05-10 10:36:48 -04:00
|
|
|
<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">
|
2019-10-31 21:43:47 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>spring-data-neo4j</artifactId>
|
|
|
|
<version>1.0</version>
|
2019-12-05 09:56:52 -05:00
|
|
|
<name>spring-data-neo4j</name>
|
|
|
|
|
2019-10-31 21:43:47 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>com.baeldung</groupId>
|
2020-01-26 14:10:23 -05:00
|
|
|
<artifactId>persistence-modules</artifactId>
|
2019-10-31 21:43:47 -04:00
|
|
|
<version>1.0.0-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2023-08-13 00:22:02 -04:00
|
|
|
<groupId>org.neo4j.test</groupId>
|
|
|
|
<artifactId>neo4j-harness</artifactId>
|
|
|
|
<version>${neo4j-harness.version}</version>
|
|
|
|
<scope>test</scope>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2023-08-13 00:22:02 -04:00
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-neo4j</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>test</scope>
|
2023-08-13 00:22:02 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2019-10-31 21:43:47 -04:00
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
2023-08-13 00:22:02 -04:00
|
|
|
<spring-boot.version>2.7.14</spring-boot.version>
|
|
|
|
<neo4j-harness.version>5.10.0</neo4j-harness.version>
|
2024-04-12 11:41:02 -04:00
|
|
|
<org.slf4j.version>1.7.32</org.slf4j.version>
|
|
|
|
<logback.version>1.2.7</logback.version>
|
2019-10-31 21:43:47 -04:00
|
|
|
</properties>
|
|
|
|
|
2021-05-10 10:36:48 -04:00
|
|
|
</project>
|