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.
403 lines
11 KiB
403 lines
11 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-jdbc</artifactId> |
|
<version>1.0.9.BUILD-SNAPSHOT</version> |
|
|
|
<name>Spring Data JDBC</name> |
|
<description>Spring Data module for JDBC repositories.</description> |
|
<url>https://projects.spring.io/spring-data-jdbc</url> |
|
|
|
<parent> |
|
<groupId>org.springframework.data.build</groupId> |
|
<artifactId>spring-data-parent</artifactId> |
|
<version>2.1.9.BUILD-SNAPSHOT</version> |
|
</parent> |
|
|
|
<properties> |
|
|
|
<dist.key>DATAJDBC</dist.key> |
|
|
|
<springdata.commons>2.1.9.BUILD-SNAPSHOT</springdata.commons> |
|
<java-module-name>spring.data.jdbc</java-module-name> |
|
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> |
|
|
|
<assertj-core.version>3.6.2</assertj-core.version> |
|
<degraph-check.version>0.1.4</degraph-check.version> |
|
<hsqldb.version>2.2.8</hsqldb.version> |
|
<mybatis.version>3.4.6</mybatis.version> |
|
<mybatis-spring.version>1.3.2</mybatis-spring.version> |
|
<mysql-connector-java.version>5.1.41</mysql-connector-java.version> |
|
<postgresql.version>42.0.0</postgresql.version> |
|
<mariadb-java-client.version>2.2.3</mariadb-java-client.version> |
|
<testcontainers.version>1.7.3</testcontainers.version> |
|
|
|
</properties> |
|
|
|
<inceptionYear>2017</inceptionYear> |
|
|
|
<developers> |
|
<developer> |
|
<id>schauder</id> |
|
<name>Jens Schauder</name> |
|
<email>jschauder(at)pivotal.io</email> |
|
<organization>Pivotal Software, Inc.</organization> |
|
<organizationUrl>https://pivotal.io</organizationUrl> |
|
<roles> |
|
<role>Project Lead</role> |
|
</roles> |
|
<timezone>+1</timezone> |
|
</developer> |
|
<developer> |
|
<id>gregturn</id> |
|
<name>Greg L. Turnquist</name> |
|
<email>gturnquist(at)pivotal.io</email> |
|
<organization>Pivotal Software, Inc.</organization> |
|
<organizationUrl>https://pivotal.io</organizationUrl> |
|
<roles> |
|
<role>Project Contributor</role> |
|
</roles> |
|
<timezone>-6</timezone> |
|
</developer> |
|
</developers> |
|
|
|
<profiles> |
|
<profile> |
|
<id>snapshot</id> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.jfrog.buildinfo</groupId> |
|
<artifactId>artifactory-maven-plugin</artifactId> |
|
<version>2.6.1</version> |
|
<inherited>false</inherited> |
|
<executions> |
|
<execution> |
|
<id>build-info</id> |
|
<goals> |
|
<goal>publish</goal> |
|
</goals> |
|
<configuration> |
|
<buildInfo> |
|
<buildUrl>{{BUILD_URL}}</buildUrl> |
|
</buildInfo> |
|
<deployProperties> |
|
<zip.name>spring-data-jdbc</zip.name> |
|
<zip.displayname>spring-data-jdbc</zip.displayname> |
|
<zip.deployed>false</zip.deployed> |
|
<archives>*:*:*:*@zip</archives> |
|
</deployProperties> |
|
<publisher> |
|
<contextUrl>https://repo.spring.io</contextUrl> |
|
<username>{{ARTIFACTORY_USR}}</username> |
|
<password>{{ARTIFACTORY_PSW}}</password> |
|
<repoKey>libs-snapshot-local</repoKey> |
|
<snapshotRepoKey>libs-snapshot-local</snapshotRepoKey> |
|
</publisher> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
|
|
<profile> |
|
<id>release</id> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.jfrog.buildinfo</groupId> |
|
<artifactId>artifactory-maven-plugin</artifactId> |
|
<inherited>false</inherited> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</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>**/*IntegrationTests.java</include> |
|
</includes> |
|
<excludes> |
|
<exclude>**/*HsqlIntegrationTests.java</exclude> |
|
</excludes> |
|
<systemPropertyVariables> |
|
<spring.profiles.active>mysql</spring.profiles.active> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>postgres-test</id> |
|
<phase>test</phase> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<configuration> |
|
<includes> |
|
<include>**/*IntegrationTests.java</include> |
|
</includes> |
|
<excludes> |
|
<exclude>**/*HsqlIntegrationTests.java</exclude> |
|
</excludes> |
|
<systemPropertyVariables> |
|
<spring.profiles.active>postgres</spring.profiles.active> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>mariadb-test</id> |
|
<phase>test</phase> |
|
<goals> |
|
<goal>test</goal> |
|
</goals> |
|
<configuration> |
|
<includes> |
|
<include>**/*IntegrationTests.java</include> |
|
</includes> |
|
<excludes> |
|
<exclude>**/*HsqlIntegrationTests.java</exclude> |
|
</excludes> |
|
<systemPropertyVariables> |
|
<spring.profiles.active>mariadb</spring.profiles.active> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</execution> |
|
<!--<execution>--> |
|
<!--<id>mssql-test</id>--> |
|
<!--<phase>test</phase>--> |
|
<!--<goals>--> |
|
<!--<goal>test</goal>--> |
|
<!--</goals>--> |
|
<!--<configuration>--> |
|
<!--<includes>--> |
|
<!--<include>**/*IntegrationTests.java</include>--> |
|
<!--</includes>--> |
|
<!--<excludes>--> |
|
<!--<exclude>**/*HsqlIntegrationTests.java</exclude>--> |
|
<!--</excludes>--> |
|
<!--<systemPropertyVariables>--> |
|
<!--<spring.profiles.active>mssql</spring.profiles.active>--> |
|
<!--</systemPropertyVariables>--> |
|
<!--</configuration>--> |
|
<!--</execution>--> |
|
</executions> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
</profile> |
|
</profiles> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-data-commons</artifactId> |
|
<version>${springdata.commons}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-jdbc</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mybatis</groupId> |
|
<artifactId>mybatis-spring</artifactId> |
|
<version>${mybatis-spring.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mybatis</groupId> |
|
<artifactId>mybatis</artifactId> |
|
<version>${mybatis.version}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>${hsqldb.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.assertj</groupId> |
|
<artifactId>assertj-core</artifactId> |
|
<version>${assertj-core.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>mysql</groupId> |
|
<artifactId>mysql-connector-java</artifactId> |
|
<version>${mysql-connector-java.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.postgresql</groupId> |
|
<artifactId>postgresql</artifactId> |
|
<version>${postgresql.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mariadb.jdbc</groupId> |
|
<artifactId>mariadb-java-client</artifactId> |
|
<version>${mariadb-java-client.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>de.schauderhaft.degraph</groupId> |
|
<artifactId>degraph-check</artifactId> |
|
<version>${degraph-check.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>mysql</artifactId> |
|
<version>${testcontainers.version}</version> |
|
<scope>test</scope> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.slf4j</groupId> |
|
<artifactId>jcl-over-slf4j</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>postgresql</artifactId> |
|
<version>${testcontainers.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>mariadb</artifactId> |
|
<version>${testcontainers.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
<pluginManagement> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<version>2.12</version> |
|
</plugin> |
|
</plugins> |
|
</pluginManagement> |
|
<plugins> |
|
|
|
<!-- |
|
Jacoco plugin redeclared to make sure it's downloaded and |
|
the agents can be explicitly added to the test executions. |
|
--> |
|
<plugin> |
|
<groupId>org.jacoco</groupId> |
|
<artifactId>jacoco-maven-plugin</artifactId> |
|
<version>${jacoco}</version> |
|
<configuration> |
|
<destFile>${jacoco.destfile}</destFile> |
|
</configuration> |
|
<executions> |
|
<execution> |
|
<id>jacoco-initialize</id> |
|
<goals> |
|
<goal>prepare-agent</goal> |
|
</goals> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<executions> |
|
<execution> |
|
<id>default-test</id> |
|
<configuration> |
|
<includes> |
|
<include>**/*Tests.java</include> |
|
</includes> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>wagon-maven-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-snapshot</id> |
|
<url>https://repo.spring.io/plugins-snapshot</url> |
|
</pluginRepository> |
|
</pluginRepositories> |
|
|
|
</project>
|
|
|