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.
224 lines
5.6 KiB
224 lines
5.6 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-repository</artifactId> |
|
<version>4.0.0-SPLIT-SNAPSHOT</version> |
|
|
|
<name>Spring Data Commons Repository</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-mapping</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> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-tx</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-oxm</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>tools.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<!-- Query Result Converters --> |
|
<dependency> |
|
<groupId>org.scala-lang</groupId> |
|
<artifactId>scala-library</artifactId> |
|
<version>${scala}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.guava</groupId> |
|
<artifactId>guava</artifactId> |
|
<version>${guava}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.vavr</groupId> |
|
<artifactId>vavr</artifactId> |
|
<version>${vavr}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>jakarta.annotation</groupId> |
|
<artifactId>jakarta.annotation-api</artifactId> |
|
<version>${jakarta-annotation-api}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>jakarta.transaction</groupId> |
|
<artifactId>jakarta.transaction-api</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- TODO SPLIT --> |
|
<dependency> |
|
<groupId>jakarta.inject</groupId> |
|
<artifactId>jakarta.inject-api</artifactId> |
|
<version>2.0.1</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.code.findbugs</groupId> |
|
<artifactId>jsr305</artifactId> |
|
<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> |
|
|
|
<!-- RxJava --> |
|
<dependency> |
|
<groupId>io.reactivex.rxjava3</groupId> |
|
<artifactId>rxjava</artifactId> |
|
<version>${rxjava3}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>io.smallrye.reactive</groupId> |
|
<artifactId>mutiny</artifactId> |
|
<version>${smallrye-mutiny}</version> |
|
<optional>true</optional> |
|
</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-reactive</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.jetbrains.kotlinx</groupId> |
|
<artifactId>kotlinx-coroutines-reactor</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> |
|
|
|
<!-- Eclipse Collections --> |
|
<dependency> |
|
<groupId>org.eclipse.collections</groupId> |
|
<artifactId>eclipse-collections-api</artifactId> |
|
<version>${eclipse-collections}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.eclipse.collections</groupId> |
|
<artifactId>eclipse-collections</artifactId> |
|
<version>${eclipse-collections}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-impl</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.tngtech.archunit</groupId> |
|
<artifactId>archunit</artifactId> |
|
<version>${archunit}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
</dependencies> |
|
|
|
</project>
|
|
|