94 lines
2.5 KiB
XML
94 lines
2.5 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">
|
|
<groupId>org.neo4j.examples</groupId>
|
|
<artifactId>backwardscompatibility</artifactId>
|
|
<version>2.1.0.BUILD-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<name>Backwards Compatibility Test</name>
|
|
|
|
<properties>
|
|
<spring.version>3.0.7.RELEASE</spring.version>
|
|
<neo4j.version>1.7</neo4j.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.neo4j</groupId>
|
|
<artifactId>neo4j</artifactId>
|
|
<version>${neo4j.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-neo4j</artifactId>
|
|
<version>2.1.0.BUILD-SNAPSHOT</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-test</artifactId>
|
|
<version>${spring.version}</version>
|
|
<scope>test</scope>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>commons-logging</groupId>
|
|
<artifactId>commons-logging</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<version>4.8.2</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<!-- Must use java 1.5 or higher for annotations -->
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>2.1</version>
|
|
<configuration>
|
|
<source>1.7</source>
|
|
<target>1.7</target>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>neo4j-snapshot-repository</id>
|
|
<name>Neo4j Maven 2 snapshot repository</name>
|
|
<url>http://m2.neo4j.org/snapshots</url>
|
|
<snapshots>
|
|
<enabled>true</enabled>
|
|
</snapshots>
|
|
<releases>
|
|
<enabled>false</enabled>
|
|
</releases>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>1.7</id>
|
|
<properties>
|
|
<neo4j.version>1.7</neo4j.version>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>1.8.M07</id>
|
|
<properties>
|
|
<neo4j.version>1.8.M07</neo4j.version>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project> |