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.
376 lines
9.5 KiB
376 lines
9.5 KiB
<?xml version="1.0" encoding="UTF-8"?> |
|
<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> |
|
|
|
<artifactId>spring-data-mongodb</artifactId> |
|
|
|
<name>Spring Data MongoDB - Core</name> |
|
<description>MongoDB support for Spring Data</description> |
|
|
|
<parent> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-mongodb-parent</artifactId> |
|
<version>3.4.13-SNAPSHOT</version> |
|
<relativePath>../pom.xml</relativePath> |
|
</parent> |
|
|
|
<properties> |
|
<objenesis>1.3</objenesis> |
|
<equalsverifier>1.7.8</equalsverifier> |
|
<java-module-name>spring.data.mongodb</java-module-name> |
|
<project.root>${basedir}/..</project.root> |
|
<multithreadedtc>1.01</multithreadedtc> |
|
</properties> |
|
|
|
<dependencies> |
|
|
|
<!-- Spring --> |
|
<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-core</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>commons-logging</groupId> |
|
<artifactId>commons-logging</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-expression</artifactId> |
|
</dependency> |
|
|
|
<!-- Spring Data --> |
|
<dependency> |
|
<groupId>${project.groupId}</groupId> |
|
<artifactId>spring-data-commons</artifactId> |
|
<version>${springdata.commons}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-mongodb</artifactId> |
|
<version>${querydsl}</version> |
|
<optional>true</optional> |
|
<exclusions> |
|
<exclusion> |
|
<groupId>org.mongodb</groupId> |
|
<artifactId>mongo-java-driver</artifactId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-apt</artifactId> |
|
<version>${querydsl}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>jsr250-api</artifactId> |
|
<version>1.0</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.code.findbugs</groupId> |
|
<artifactId>jsr305</artifactId> |
|
<version>3.0.2</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<!-- reactive --> |
|
|
|
<dependency> |
|
<groupId>org.mongodb</groupId> |
|
<artifactId>mongodb-driver-sync</artifactId> |
|
<version>${mongo}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.mongodb</groupId> |
|
<artifactId>mongodb-driver-reactivestreams</artifactId> |
|
<version>${mongo.reactivestreams}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-core</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-test</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.reactivex</groupId> |
|
<artifactId>rxjava</artifactId> |
|
<version>${rxjava}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.reactivex</groupId> |
|
<artifactId>rxjava-reactive-streams</artifactId> |
|
<version>${rxjava-reactive-streams}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.reactivex.rxjava2</groupId> |
|
<artifactId>rxjava</artifactId> |
|
<version>${rxjava2}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.reactivex.rxjava3</groupId> |
|
<artifactId>rxjava</artifactId> |
|
<version>${rxjava3}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<!-- CDI --> |
|
<!-- Dependency order required to build against CDI 1.0 and test with CDI 2.0 --> |
|
<dependency> |
|
<groupId>org.apache.geronimo.specs</groupId> |
|
<artifactId>geronimo-jcdi_2.0_spec</artifactId> |
|
<version>1.0.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.interceptor</groupId> |
|
<artifactId>javax.interceptor-api</artifactId> |
|
<version>1.2.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.enterprise</groupId> |
|
<artifactId>cdi-api</artifactId> |
|
<version>${cdi}</version> |
|
<scope>provided</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.annotation</groupId> |
|
<artifactId>javax.annotation-api</artifactId> |
|
<version>${javax-annotation-api}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.openwebbeans</groupId> |
|
<artifactId>openwebbeans-se</artifactId> |
|
<version>${webbeans}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- JSR 303 Validation --> |
|
<dependency> |
|
<groupId>javax.validation</groupId> |
|
<artifactId>validation-api</artifactId> |
|
<version>${validation}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.objenesis</groupId> |
|
<artifactId>objenesis</artifactId> |
|
<version>${objenesis}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.hibernate</groupId> |
|
<artifactId>hibernate-validator</artifactId> |
|
<version>5.4.3.Final</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.glassfish</groupId> |
|
<artifactId>javax.el</artifactId> |
|
<version>3.0.1-b11</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>joda-time</groupId> |
|
<artifactId>joda-time</artifactId> |
|
<version>${jodatime}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.threeten</groupId> |
|
<artifactId>threetenbp</artifactId> |
|
<version>${threetenbp}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>nl.jqno.equalsverifier</groupId> |
|
<artifactId>equalsverifier</artifactId> |
|
<version>${equalsverifier}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>de.schauderhaft.degraph</groupId> |
|
<artifactId>degraph-check</artifactId> |
|
<version>0.1.4</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>edu.umd.cs.mtc</groupId> |
|
<artifactId>multithreadedtc</artifactId> |
|
<version>${multithreadedtc}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.junit-pioneer</groupId> |
|
<artifactId>junit-pioneer</artifactId> |
|
<version>0.5.3</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>javax.transaction</groupId> |
|
<artifactId>jta</artifactId> |
|
<version>1.1</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- Kotlin extension --> |
|
<dependency> |
|
<groupId>org.jetbrains.kotlin</groupId> |
|
<artifactId>kotlin-stdlib</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jetbrains.kotlin</groupId> |
|
<artifactId>kotlin-reflect</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jetbrains.kotlinx</groupId> |
|
<artifactId>kotlinx-coroutines-core</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jetbrains.kotlinx</groupId> |
|
<artifactId>kotlinx-coroutines-reactor</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.mockk</groupId> |
|
<artifactId>mockk-jvm</artifactId> |
|
<version>${mockk}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- jMolecules --> |
|
|
|
<dependency> |
|
<groupId>org.jmolecules</groupId> |
|
<artifactId>jmolecules-ddd</artifactId> |
|
<version>${jmolecules}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
<build> |
|
|
|
<plugins> |
|
|
|
<plugin> |
|
<groupId>com.mysema.maven</groupId> |
|
<artifactId>apt-maven-plugin</artifactId> |
|
<version>${apt}</version> |
|
<dependencies> |
|
<dependency> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-apt</artifactId> |
|
<version>${querydsl}</version> |
|
</dependency> |
|
</dependencies> |
|
<executions> |
|
<execution> |
|
<phase>generate-test-sources</phase> |
|
<goals> |
|
<goal>test-process</goal> |
|
</goals> |
|
<configuration> |
|
<outputDirectory>target/generated-test-sources</outputDirectory> |
|
<processor>org.springframework.data.mongodb.repository.support.MongoAnnotationProcessor</processor> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
|
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-surefire-plugin</artifactId> |
|
<configuration> |
|
<useSystemClassLoader>false</useSystemClassLoader> |
|
<useFile>false</useFile> |
|
<includes> |
|
<include>**/*Tests.java</include> |
|
</includes> |
|
<excludes> |
|
<exclude>**/PerformanceTests.java</exclude> |
|
<exclude>**/ReactivePerformanceTests.java</exclude> |
|
</excludes> |
|
<systemPropertyVariables> |
|
<java.util.logging.config.file>src/test/resources/logging.properties</java.util.logging.config.file> |
|
<reactor.trace.cancel>true</reactor.trace.cancel> |
|
</systemPropertyVariables> |
|
</configuration> |
|
</plugin> |
|
|
|
</plugins> |
|
|
|
</build> |
|
</project>
|
|
|