Maven APT Plugin - 1.1.2 -> 1.1.3 Querydsl - 3.6.0 -> 3.6.1 Spring Framework - 4.1.4 -> 4.1.5 Lombok - 1.14.8 -> 1.16.2
91 lines
2.2 KiB
XML
91 lines
2.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.2.1.RELEASE</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>
|
|
</modules>
|
|
|
|
<properties>
|
|
|
|
<apt.version>1.1.3</apt.version>
|
|
<java.version>1.8</java.version>
|
|
<querydsl.version>3.6.1</querydsl.version>
|
|
<spring.version>4.1.5.RELEASE</spring.version>
|
|
<spring-data-releasetrain.version>Fowler-M1</spring-data-releasetrain.version>
|
|
|
|
</properties>
|
|
|
|
<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>
|
|
</developers>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>1.16.2</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<!-- Test dependencies -->
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<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>
|