Upgrade to Spring Boot 1.5 snapshots due to minor API changes in Spring Data REST so that recompilation is requited and only 1.5 picks up Ingalls. Upgraded to Querydsl 4.1.4, Spring Framework 5 build profile to 5.0 M3. Switched to @SpringBootTest in Spring Data Redis samples as the previously deprecated @SpringApplicationConfiguation has been removed in 1.5.
135 lines
3.2 KiB
XML
135 lines
3.2 KiB
XML
<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.examples</groupId>
|
|
<artifactId>spring-data-examples</artifactId>
|
|
<version>1.0.0.BUILD-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Spring Data - Examples</name>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>1.5.0.BUILD-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modules>
|
|
<module>jpa</module>
|
|
<module>map</module>
|
|
<module>mongodb</module>
|
|
<module>multi-store</module>
|
|
<module>rest</module>
|
|
<module>redis</module>
|
|
<module>solr</module>
|
|
<module>cassandra</module>
|
|
<module>elasticsearch</module>
|
|
<module>web</module>
|
|
<module>bom</module>
|
|
<module>neo4j</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
|
|
<apt.version>1.1.3</apt.version>
|
|
<java.version>1.8</java.version>
|
|
<querydsl.version>4.1.4</querydsl.version>
|
|
<spring-data-releasetrain.version>Ingalls-RC1</spring-data-releasetrain.version>
|
|
<spring-hateoas.version>0.22.0.RELEASE</spring-hateoas.version>
|
|
<jedis.version>2.9.0</jedis.version>
|
|
<cassandra-driver.version>3.0.3</cassandra-driver.version>
|
|
|
|
</properties>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>spring5</id>
|
|
<properties>
|
|
<spring.version>5.0.0.M3</spring.version>
|
|
</properties>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>ogierke</id>
|
|
<name>Oliver Gierke</name>
|
|
<email>ogierke@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>tdarimont</id>
|
|
<name>Thomas Darimont</name>
|
|
<email>tdarimont@gopivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>cstrobl</id>
|
|
<name>Christoph Strobl</name>
|
|
<email>cstrobl@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>gturnquist</id>
|
|
<name>Greg Turnquist</name>
|
|
<email>gturnquist@pivotal.io</email>
|
|
</developer>
|
|
<developer>
|
|
<id>mpaluch</id>
|
|
<name>Mark Paluch</name>
|
|
<email>mpaluch@pivotal.io</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Test dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<configuration>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<compilerArgument>-parameters</compilerArgument>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>spring-libs-snapshot</id>
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
|
</repository>
|
|
</repositories>
|
|
|
|
<pluginRepositories>
|
|
<pluginRepository>
|
|
<id>spring-libs-snapshot</id>
|
|
<url>https://repo.spring.io/libs-snapshot</url>
|
|
</pluginRepository>
|
|
</pluginRepositories>
|
|
|
|
</project>
|