191 lines
5.4 KiB
XML
191 lines
5.4 KiB
XML
<?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>org.springframework.data</groupId>
|
|
<artifactId>spring-data-neo4j-parent</artifactId>
|
|
<version>2.3.5.BUILD-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Data Neo4j - Parent</name>
|
|
<description>Neo4j support for Spring Data</description>
|
|
<url>http://www.springsource.org/spring-data/neo4j</url>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data.build</groupId>
|
|
<artifactId>spring-data-parent</artifactId>
|
|
<version>1.2.2.RELEASE</version>
|
|
<relativePath>../spring-data-build/parent/pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>spring-data-neo4j</module>
|
|
<module>spring-data-neo4j-aspects</module>
|
|
<module>spring-data-neo4j-cross-store</module>
|
|
<module>spring-data-neo4j-tx</module>
|
|
<module>spring-data-neo4j-rest</module>
|
|
<module>spring-data-neo4j-distribution</module>
|
|
</modules>
|
|
|
|
|
|
<properties>
|
|
<project.type>multi</project.type>
|
|
<dist.id>spring-data-neo4j</dist.id>
|
|
|
|
<springdata.commons>1.6.5.RELEASE</springdata.commons>
|
|
<neo4j.version>1.9.3</neo4j.version>
|
|
|
|
<neo4j.spatial.version>0.11-neo4j-1.9</neo4j.spatial.version>
|
|
<neo4j.graph-collections.version>0.6-neo4j-1.9</neo4j.graph-collections.version>
|
|
<blueprints.version>1.2</blueprints.version>
|
|
<gremlin.version>1.5</gremlin.version>
|
|
<pipes.version>1.5</pipes.version>
|
|
<neo4j-cypher-dsl.version>1.9</neo4j-cypher-dsl.version>
|
|
</properties>
|
|
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>fast</id>
|
|
<properties>
|
|
<maven.test.skip>true</maven.test.skip>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>examples</id>
|
|
<modules>
|
|
<module>spring-data-neo4j-examples/hello-worlds</module>
|
|
<module>spring-data-neo4j-examples/imdb</module>
|
|
<module>spring-data-neo4j-examples/cineasts</module>
|
|
<module>spring-data-neo4j-examples/cineasts-aspects</module>
|
|
<module>spring-data-neo4j-examples/cineasts-rest</module>
|
|
<module>spring-data-neo4j-examples/myrestaurants-social</module>
|
|
<module>spring-data-neo4j-examples/todos</module>
|
|
<module>spring-data-neo4j-examples/backwardscompatibility</module>
|
|
</modules>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>mhunger</id>
|
|
<name>Michael Hunger</name>
|
|
<email>michael.hunger at neotechnology.com</email>
|
|
<organization>Neo Technology</organization>
|
|
<organizationUrl>http://www.neotechnology.com</organizationUrl>
|
|
<roles>
|
|
<role>Project Lead</role>
|
|
</roles>
|
|
<timezone>+1</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>ogierke</id>
|
|
<name>Oliver Gierke</name>
|
|
<email>ogierke at vmware.com</email>
|
|
<organization>SpringSource</organization>
|
|
<organizationUrl>http://www.springsource.com</organizationUrl>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>+1</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>trisberg</id>
|
|
<name>Thomas Risberg</name>
|
|
<email>trisberg at vmware.com</email>
|
|
<organization>SpringSource</organization>
|
|
<organizationUrl>http://www.springsource.com</organizationUrl>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
<developer>
|
|
<id>mpollack</id>
|
|
<name>Mark Pollack</name>
|
|
<email>mpollack at vmware.com</email>
|
|
<organization>SpringSource</organization>
|
|
<organizationUrl>http://www.springsource.com</organizationUrl>
|
|
<roles>
|
|
<role>Developer</role>
|
|
</roles>
|
|
<timezone>-5</timezone>
|
|
</developer>
|
|
</developers>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<version>2.12</version>
|
|
<configuration>
|
|
<forkMode>once</forkMode>
|
|
<redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
<useFile>false</useFile>
|
|
<includes>
|
|
<include>**/*Tests.java</include>
|
|
</includes>
|
|
<excludes>
|
|
<exclude>**/PerformanceTests.java</exclude>
|
|
</excludes>
|
|
<systemPropertyVariables>
|
|
<java.util.logging.config.file>src/test/resources/logging.properties
|
|
</java.util.logging.config.file>
|
|
</systemPropertyVariables>
|
|
</configuration>
|
|
</plugin>
|
|
|
|
</plugins>
|
|
</build>
|
|
<dependencies>
|
|
<!-- Neo4j -->
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j</artifactId>
|
|
<version>${neo4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-cypher</artifactId>
|
|
<version>${neo4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j-kernel</artifactId>
|
|
<version>${neo4j.version}</version>
|
|
<scope>test</scope>
|
|
<type>test-jar</type>
|
|
</dependency>
|
|
</dependencies>
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-libs-release</id>
|
|
<name>Spring Releases</name>
|
|
<url>http://repo.springsource.org/libs-release</url>
|
|
</repository>
|
|
<repository>
|
|
<id>neo4j-public-release-repository</id>
|
|
<url>http://m2.neo4j.org/releases</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
<repository>
|
|
<id>tinkerpop-repository</id>
|
|
<url>http://tinkerpop.com/maven2</url>
|
|
<snapshots>
|
|
<enabled>false</enabled>
|
|
</snapshots>
|
|
</repository>
|
|
</repositories>
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>spring-plugins-release</id>
|
|
<url>http://repo.spring.io/plugins-release</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|