You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
305 lines
8.1 KiB
305 lines
8.1 KiB
<?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-jpa-parent</artifactId> |
|
<version>3.1.13-SNAPSHOT</version> |
|
<packaging>pom</packaging> |
|
|
|
<name>Spring Data JPA Parent</name> |
|
<description>Parent module for Spring Data JPA repositories.</description> |
|
<url>https://spring.io/projects/spring-data-jpa</url> |
|
<scm> |
|
<connection>scm:git:git://github.com:spring-projects/spring-data-jpa.git</connection> |
|
<developerConnection>scm:git:git@github.com:spring-projects/spring-data-jpa.git</developerConnection> |
|
<url>https://github.com/spring-projects/spring-data-jpa</url> |
|
</scm> |
|
<issueManagement> |
|
<url>https://github.com/spring-projects/spring-data-jpa/issues</url> |
|
</issueManagement> |
|
|
|
<parent> |
|
<groupId>org.springframework.data.build</groupId> |
|
<artifactId>spring-data-parent</artifactId> |
|
<version>3.1.13-SNAPSHOT</version> |
|
</parent> |
|
|
|
<properties> |
|
<antlr>4.10.1</antlr> <!-- align with Hibernate's parser --> |
|
<eclipselink>3.0.4</eclipselink> |
|
<hibernate>6.2.25.Final</hibernate> |
|
<hibernate-64>6.4.4.Final</hibernate-64> |
|
<hibernate-64-snapshots>6.4.5-SNAPSHOT</hibernate-64-snapshots> |
|
<hibernate-65>6.5.0.CR1</hibernate-65> |
|
<hibernate-65-snapshots>6.5.0-SNAPSHOT</hibernate-65-snapshots> |
|
<hibernate-66-snapshots>6.6.0-SNAPSHOT</hibernate-66-snapshots> |
|
<hsqldb>2.7.1</hsqldb> |
|
<h2>2.1.214</h2> |
|
<jsqlparser>4.5</jsqlparser> |
|
<mysql-connector-java>8.0.31</mysql-connector-java> |
|
<postgresql>42.5.0</postgresql> |
|
<springdata.commons>3.1.13-SNAPSHOT</springdata.commons> |
|
<vavr>0.10.3</vavr> |
|
|
|
<hibernate.groupId>org.hibernate</hibernate.groupId> |
|
|
|
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> |
|
|
|
</properties> |
|
|
|
<modules> |
|
<module>spring-data-envers</module> |
|
<module>spring-data-jpa</module> |
|
<module>spring-data-jpa-distribution</module> |
|
</modules> |
|
|
|
|
|
<profiles> |
|
<profile> |
|
<id>hibernate-64</id> |
|
<properties> |
|
<hibernate>${hibernate-64}</hibernate> |
|
</properties> |
|
</profile> |
|
<profile> |
|
<id>hibernate-64-snapshots</id> |
|
<properties> |
|
<hibernate>${hibernate-64-snapshots}</hibernate> |
|
</properties> |
|
<repositories> |
|
<repository> |
|
<id>sonatype-oss</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
</repositories> |
|
</profile> |
|
<profile> |
|
<id>hibernate-65</id> |
|
<properties> |
|
<hibernate>${hibernate-65}</hibernate> |
|
</properties> |
|
</profile> |
|
<profile> |
|
<id>hibernate-65-snapshots</id> |
|
<properties> |
|
<hibernate>${hibernate-65-snapshots}</hibernate> |
|
</properties> |
|
<repositories> |
|
<repository> |
|
<id>sonatype-oss</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
</repositories> |
|
</profile> |
|
<profile> |
|
<id>hibernate-66-snapshots</id> |
|
<properties> |
|
<hibernate>${hibernate-66-snapshots}</hibernate> |
|
</properties> |
|
<repositories> |
|
<repository> |
|
<id>sonatype-oss</id> |
|
<url>https://oss.sonatype.org/content/repositories/snapshots</url> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
</repositories> |
|
</profile> |
|
<profile> |
|
<id>all-dbs</id> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>mysql-test</id> |
|
<phase>test</phase> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<configuration> |
|
<includes> |
|
<include>**/MySql*IntegrationTests.java</include> |
|
</includes> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>postgres-test</id> |
|
<phase>test</phase> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<configuration> |
|
<includes> |
|
<include>**/Postgres*IntegrationTests.java</include> |
|
</includes> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
<profile> |
|
<id>eclipselink-next</id> |
|
<properties> |
|
<eclipselink>4.0.2</eclipselink> |
|
</properties> |
|
</profile> |
|
|
|
</profiles> |
|
|
|
<dependencyManagement> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>testcontainers-bom</artifactId> |
|
<version>${testcontainers}</version> |
|
<type>pom</type> |
|
<scope>import</scope> |
|
</dependency> |
|
</dependencies> |
|
</dependencyManagement> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-instrument</artifactId> |
|
<version>${spring}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
</dependencies> |
|
|
|
<build> |
|
<plugins> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-instrument</artifactId> |
|
<version>${spring}</version> |
|
<scope>runtime</scope> |
|
</dependency> |
|
</dependencies> |
|
<executions> |
|
<execution> |
|
<!-- override the default-test execution and exclude everything --> |
|
<id>default-test</id> |
|
<configuration> |
|
<excludes> |
|
<exclude>**/*</exclude> |
|
</excludes> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>unit-test</id> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<phase>test</phase> |
|
<configuration> |
|
<includes> |
|
<include>**/*UnitTests.java</include> |
|
</includes> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>integration-test</id> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<phase>test</phase> |
|
<configuration> |
|
<includes> |
|
<include>**/*IntegrationTests.java</include> |
|
<include>**/*Tests.java</include> |
|
</includes> |
|
<excludes> |
|
<exclude>**/*UnitTests.java</exclude> |
|
<exclude>**/OpenJpa*</exclude> |
|
<exclude>**/EclipseLink*</exclude> |
|
<exclude>**/MySql*</exclude> |
|
<exclude>**/Postgres*</exclude> |
|
</excludes> |
|
<argLine> |
|
-javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar |
|
</argLine> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>eclipselink-test</id> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<phase>test</phase> |
|
<configuration> |
|
<includes> |
|
<include>**/EclipseLink*Tests.java</include> |
|
</includes> |
|
<argLine> |
|
-javaagent:${settings.localRepository}/org/eclipse/persistence/org.eclipse.persistence.jpa/${eclipselink}/org.eclipse.persistence.jpa-${eclipselink}.jar |
|
-javaagent:${settings.localRepository}/org/springframework/spring-instrument/${spring}/spring-instrument-${spring}.jar |
|
</argLine> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<plugin> |
|
<artifactId>maven-compiler-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>java-test-compile</id> |
|
<phase>test-compile</phase> |
|
<goals> |
|
<goal>testCompile</goal> |
|
</goals> |
|
<configuration> |
|
<parameters>false</parameters> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
</plugins> |
|
</build> |
|
|
|
<repositories> |
|
<repository> |
|
<id>spring-snapshot</id> |
|
<url>https://repo.spring.io/snapshot</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
<repository> |
|
<id>spring-milestone</id> |
|
<url>https://repo.spring.io/milestone</url> |
|
</repository> |
|
</repositories> |
|
|
|
<pluginRepositories> |
|
<pluginRepository> |
|
<id>spring-milestone</id> |
|
<url>https://repo.spring.io/milestone</url> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
|
|
</project>
|
|
|