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.
161 lines
4.9 KiB
161 lines
4.9 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 http://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.0.BUILD-SNAPSHOT</version> |
|
|
|
<name>Spring Data JDBC</name> |
|
<description>Spring Data module for JDBC repositories.</description> |
|
<url>http://projects.spring.io/spring-data-jdbc</url> |
|
|
|
<parent> |
|
<groupId>org.springframework.data.build</groupId> |
|
<artifactId>spring-data-parent</artifactId> |
|
<version>2.0.0.BUILD-SNAPSHOT</version> |
|
</parent> |
|
|
|
<properties> |
|
|
|
<dist.key>DATAJDBC</dist.key> |
|
|
|
<springdata.commons>2.0.0.BUILD-SNAPSHOT</springdata.commons> |
|
|
|
<sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis> |
|
<hsqldb1>1.8.0.10</hsqldb1> |
|
|
|
</properties> |
|
|
|
<profiles> |
|
<profile> |
|
<id>release</id> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.jfrog.buildinfo</groupId> |
|
<artifactId>artifactory-maven-plugin</artifactId> |
|
<inherited>false</inherited> |
|
</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> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hsqldb</groupId> |
|
<artifactId>hsqldb</artifactId> |
|
<version>2.2.8</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.assertj</groupId> |
|
<artifactId>assertj-core</artifactId> |
|
<version>3.6.2</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
|
|
</dependencies> |
|
|
|
<build> |
|
<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> |
|
<version>2.12</version> |
|
</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> |