404
pom.xml
404
pom.xml
@@ -1,166 +1,248 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
|
||||
<artifactId>spring-data-keyvalue</artifactId>
|
||||
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
|
||||
<name>Spring Data KeyValue</name>
|
||||
|
||||
<parent>
|
||||
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
|
||||
<version>3.0.0-M4</version>
|
||||
|
||||
<relativePath/>
|
||||
|
||||
</parent>
|
||||
|
||||
<properties>
|
||||
|
||||
<springdata.commons>3.0.0-M4</springdata.commons>
|
||||
|
||||
<java-module-name>spring.data.keyvalue</java-module-name>
|
||||
|
||||
</properties>
|
||||
|
||||
<dependencies>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
|
||||
<artifactId>spring-data-commons</artifactId>
|
||||
|
||||
<version>${springdata.commons}</version>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
<artifactId>spring-context</artifactId>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
<artifactId>spring-tx</artifactId>
|
||||
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
<groupId>com.querydsl</groupId>
|
||||
|
||||
<artifactId>querydsl-collections</artifactId>
|
||||
|
||||
<version>${querydsl}</version>
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
</dependency>
|
||||
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
||||
<plugins>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
|
||||
<version>${apt}</version>
|
||||
|
||||
<executions>
|
||||
|
||||
<execution>
|
||||
|
||||
<phase>generate-test-sources</phase>
|
||||
|
||||
<goals>
|
||||
|
||||
<goal>test-process</goal>
|
||||
|
||||
</goals>
|
||||
|
||||
<configuration>
|
||||
|
||||
<outputDirectory>${project.build.directory}/generated-sources/test-annotations</outputDirectory>
|
||||
|
||||
<processor>com.querydsl.apt.QuerydslAnnotationProcessor</processor>
|
||||
|
||||
</configuration>
|
||||
|
||||
</execution>
|
||||
|
||||
</executions>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
|
||||
</plugin>
|
||||
|
||||
<plugin>
|
||||
|
||||
<groupId>org.asciidoctor</groupId>
|
||||
|
||||
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||
|
||||
</plugin>
|
||||
|
||||
</plugins>
|
||||
|
||||
</build>
|
||||
|
||||
<repositories>
|
||||
|
||||
<repository>
|
||||
|
||||
<id>spring-libs-milestone</id>
|
||||
|
||||
<url>https://repo.spring.io/libs-milestone</url>
|
||||
|
||||
</repository>
|
||||
|
||||
</repositories>
|
||||
|
||||
<pluginRepositories>
|
||||
|
||||
<pluginRepository>
|
||||
|
||||
<id>spring-plugins-release</id>
|
||||
|
||||
<url>https://repo.spring.io/plugins-release</url>
|
||||
|
||||
</pluginRepository>
|
||||
|
||||
<pluginRepository>
|
||||
|
||||
<id>spring-libs-milestone</id>
|
||||
|
||||
<url>https://repo.spring.io/libs-milestone</url>
|
||||
|
||||
</pluginRepository>
|
||||
|
||||
</pluginRepositories>
|
||||
|
||||
<modelVersion>4.0.0</modelVersion>
|
||||
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
|
||||
|
||||
<artifactId>spring-data-keyvalue</artifactId>
|
||||
|
||||
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
|
||||
|
||||
<name>Spring Data KeyValue</name>
|
||||
|
||||
|
||||
<parent>
|
||||
|
||||
|
||||
<groupId>org.springframework.data.build</groupId>
|
||||
|
||||
|
||||
<artifactId>spring-data-parent</artifactId>
|
||||
|
||||
|
||||
<version>3.0.0-SNAPSHOT</version>
|
||||
|
||||
|
||||
<relativePath/>
|
||||
|
||||
|
||||
</parent>
|
||||
|
||||
|
||||
<properties>
|
||||
|
||||
|
||||
<springdata.commons>3.0.0-SNAPSHOT</springdata.commons>
|
||||
|
||||
|
||||
<java-module-name>spring.data.keyvalue</java-module-name>
|
||||
|
||||
|
||||
</properties>
|
||||
|
||||
|
||||
<dependencies>
|
||||
|
||||
|
||||
<dependency>
|
||||
|
||||
|
||||
<groupId>org.springframework.data</groupId>
|
||||
|
||||
|
||||
<artifactId>spring-data-commons</artifactId>
|
||||
|
||||
|
||||
<version>${springdata.commons}</version>
|
||||
|
||||
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
|
||||
<artifactId>spring-context</artifactId>
|
||||
|
||||
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
|
||||
|
||||
<groupId>org.springframework</groupId>
|
||||
|
||||
|
||||
<artifactId>spring-tx</artifactId>
|
||||
|
||||
|
||||
</dependency>
|
||||
|
||||
|
||||
<dependency>
|
||||
|
||||
|
||||
<groupId>com.querydsl</groupId>
|
||||
|
||||
|
||||
<artifactId>querydsl-collections</artifactId>
|
||||
|
||||
|
||||
<version>${querydsl}</version>
|
||||
|
||||
|
||||
<optional>true</optional>
|
||||
|
||||
|
||||
</dependency>
|
||||
|
||||
|
||||
</dependencies>
|
||||
|
||||
|
||||
<build>
|
||||
|
||||
|
||||
<plugins>
|
||||
|
||||
|
||||
<plugin>
|
||||
|
||||
|
||||
<groupId>com.mysema.maven</groupId>
|
||||
|
||||
|
||||
<artifactId>apt-maven-plugin</artifactId>
|
||||
|
||||
|
||||
<version>${apt}</version>
|
||||
|
||||
|
||||
<executions>
|
||||
|
||||
|
||||
<execution>
|
||||
|
||||
|
||||
<phase>generate-test-sources</phase>
|
||||
|
||||
|
||||
<goals>
|
||||
|
||||
|
||||
<goal>test-process</goal>
|
||||
|
||||
|
||||
</goals>
|
||||
|
||||
|
||||
<configuration>
|
||||
|
||||
|
||||
<outputDirectory>${project.build.directory}/generated-sources/test-annotations</outputDirectory>
|
||||
|
||||
|
||||
<processor>com.querydsl.apt.QuerydslAnnotationProcessor</processor>
|
||||
|
||||
|
||||
</configuration>
|
||||
|
||||
|
||||
</execution>
|
||||
|
||||
|
||||
</executions>
|
||||
|
||||
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
|
||||
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
|
||||
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
|
||||
|
||||
</plugin>
|
||||
|
||||
|
||||
<plugin>
|
||||
|
||||
|
||||
<groupId>org.asciidoctor</groupId>
|
||||
|
||||
|
||||
<artifactId>asciidoctor-maven-plugin</artifactId>
|
||||
|
||||
|
||||
</plugin>
|
||||
|
||||
|
||||
</plugins>
|
||||
|
||||
|
||||
</build>
|
||||
|
||||
|
||||
<repositories>
|
||||
|
||||
|
||||
<repository>
|
||||
|
||||
|
||||
<id>spring-libs-snapshot</id>
|
||||
|
||||
|
||||
<url>https://repo.spring.io/libs-snapshot</url>
|
||||
|
||||
|
||||
</repository>
|
||||
|
||||
|
||||
</repositories>
|
||||
|
||||
|
||||
<pluginRepositories>
|
||||
|
||||
|
||||
<pluginRepository>
|
||||
|
||||
|
||||
<id>spring-plugins-release</id>
|
||||
|
||||
|
||||
<url>https://repo.spring.io/plugins-release</url>
|
||||
|
||||
|
||||
</pluginRepository>
|
||||
|
||||
|
||||
<pluginRepository>
|
||||
|
||||
|
||||
<id>spring-libs-milestone</id>
|
||||
|
||||
|
||||
<url>https://repo.spring.io/libs-milestone</url>
|
||||
|
||||
|
||||
</pluginRepository>
|
||||
|
||||
|
||||
</pluginRepositories>
|
||||
|
||||
|
||||
</project>
|
||||
|
||||
Reference in New Issue
Block a user