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.
126 lines
3.2 KiB
126 lines
3.2 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> |
|
|
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-commons-mapping</artifactId> |
|
<version>4.0.0-SPLIT-SNAPSHOT</version> |
|
|
|
<name>Spring Data Commons Mapping and Conversion</name> |
|
|
|
<parent> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-commons-parent</artifactId> |
|
<version>4.0.0-SPLIT-SNAPSHOT</version> |
|
<relativePath>../pom.xml</relativePath> |
|
</parent> |
|
|
|
<dependencies> |
|
|
|
<dependency> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-commons-domain</artifactId> |
|
<version>${project.version}</version> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-commons-test</artifactId> |
|
<version>${project.version}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- Project Reactor --> |
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-core</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.projectreactor</groupId> |
|
<artifactId>reactor-test</artifactId> |
|
<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.kotlin</groupId> |
|
<artifactId>kotlin-test-junit5</artifactId> |
|
<version>${kotlin}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.mockk</groupId> |
|
<artifactId>mockk-jvm</artifactId> |
|
<version>${mockk}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>tools.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.code.findbugs</groupId> |
|
<artifactId>jsr305</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path</artifactId> |
|
<version>${jsonpath}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.vavr</groupId> |
|
<artifactId>vavr</artifactId> |
|
<version>${vavr}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- Groovy --> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
<version>2.4.21</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.tngtech.archunit</groupId> |
|
<artifactId>archunit</artifactId> |
|
<version>${archunit}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jmolecules.integrations</groupId> |
|
<artifactId>jmolecules-spring</artifactId> |
|
<version>${jmolecules-integration}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</project>
|
|
|