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.
470 lines
13 KiB
470 lines
13 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-commons</artifactId> |
|
<version>3.2.0-SNAPSHOT</version> |
|
|
|
<name>Spring Data Core</name> |
|
<description>Core Spring concepts underpinning every Spring Data module.</description> |
|
<url>https://spring.io/projects/spring-data</url> |
|
<scm> |
|
<connection>scm:git:https://github.com/spring-projects/spring-data-commons.git |
|
</connection> |
|
<developerConnection> |
|
scm:git:git@github.com:spring-projects/spring-data-commons.git |
|
</developerConnection> |
|
<url>https://github.com/spring-projects/spring-data-commons</url> |
|
</scm> |
|
<issueManagement> |
|
<url>https://github.com/spring-projects/spring-data-commons/issues</url> |
|
</issueManagement> |
|
|
|
<parent> |
|
<groupId>org.springframework.data.build</groupId> |
|
<artifactId>spring-data-parent</artifactId> |
|
<version>3.2.0-SNAPSHOT</version> |
|
</parent> |
|
|
|
<properties> |
|
|
|
<scala>2.11.7</scala> |
|
<xmlbeam>1.4.24</xmlbeam> |
|
<java-module-name>spring.data.commons</java-module-name> |
|
<kotlin.api.target>1.8</kotlin.api.target> |
|
|
|
<!-- Antora --> |
|
<node.version>v18.12.1</node.version> |
|
<npm.version>8.19.2</npm.version> |
|
<antora.version>3.2.0-alpha.2</antora.version> |
|
<antora-atlas.version>1.0.0-alpha.1</antora-atlas.version> |
|
<antora-collector.version>1.0.0-alpha.3</antora-collector.version> |
|
<asciidoctor-tabs.version>1.0.0-beta.3</asciidoctor-tabs.version> |
|
<spring-antora-extensions.version>1.5.0</spring-antora-extensions.version> |
|
<spring-asciidoctor-extensions.version>1.0.0-alpha.9</spring-asciidoctor-extensions.version> |
|
</properties> |
|
|
|
<dependencies> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-beans</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-expression</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>com.fasterxml.jackson.core</groupId> |
|
<artifactId>jackson-databind</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-web</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webflux</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core-test</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>jakarta.servlet</groupId> |
|
<artifactId>jakarta.servlet-api</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>jakarta.xml.bind</groupId> |
|
<artifactId>jakarta.xml.bind-api</artifactId> |
|
<version>${jaxb}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
<dependency> |
|
<groupId>jakarta.annotation</groupId> |
|
<artifactId>jakarta.annotation-api</artifactId> |
|
<version>${jakarta-annotation-api}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.google.code.findbugs</groupId> |
|
<artifactId>jsr305</artifactId> |
|
<version>3.0.2</version> |
|
<optional>true</optional> |
|
</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> |
|
|
|
<!-- Querydsl --> |
|
|
|
<dependency> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-core</artifactId> |
|
<version>${querydsl}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-apt</artifactId> |
|
<version>${querydsl}</version> |
|
<scope>provided</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.querydsl</groupId> |
|
<artifactId>querydsl-collections</artifactId> |
|
<version>${querydsl}</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> |
|
|
|
<!-- Eclipse Collections --> |
|
|
|
<dependency> |
|
<groupId>org.eclipse.collections</groupId> |
|
<artifactId>eclipse-collections-api</artifactId> |
|
<version>${eclipse-collections}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.eclipse.collections</groupId> |
|
<artifactId>eclipse-collections</artifactId> |
|
<version>${eclipse-collections}</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- CDI --> |
|
|
|
<dependency> |
|
<groupId>jakarta.enterprise</groupId> |
|
<artifactId>jakarta.enterprise.cdi-api</artifactId> |
|
<scope>provided</scope> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.openwebbeans</groupId> |
|
<artifactId>openwebbeans-se</artifactId> |
|
<classifier>jakarta</classifier> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.openwebbeans</groupId> |
|
<artifactId>openwebbeans-spi</artifactId> |
|
<classifier>jakarta</classifier> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.apache.openwebbeans</groupId> |
|
<artifactId>openwebbeans-impl</artifactId> |
|
<classifier>jakarta</classifier> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework.hateoas</groupId> |
|
<artifactId>spring-hateoas</artifactId> |
|
<version>${spring-hateoas}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-webmvc</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.sun.xml.bind</groupId> |
|
<artifactId>jaxb-impl</artifactId> |
|
<version>3.0.2</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>xmlunit</groupId> |
|
<artifactId>xmlunit</artifactId> |
|
<version>1.6</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<!-- Groovy --> |
|
<dependency> |
|
<groupId>org.codehaus.groovy</groupId> |
|
<artifactId>groovy-all</artifactId> |
|
<version>2.4.4</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-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> |
|
|
|
<!-- Scala --> |
|
<dependency> |
|
<groupId>org.scala-lang</groupId> |
|
<artifactId>scala-library</artifactId> |
|
<version>${scala}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>jakarta.transaction</groupId> |
|
<artifactId>jakarta.transaction-api</artifactId> |
|
<version>2.0.0</version> |
|
<scope>test</scope> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>com.jayway.jsonpath</groupId> |
|
<artifactId>json-path</artifactId> |
|
<version>${jsonpath}</version> |
|
<optional>true</optional> |
|
</dependency> |
|
|
|
<dependency> |
|
<groupId>org.xmlbeam</groupId> |
|
<artifactId>xmlprojector</artifactId> |
|
<version>${xmlbeam}</version> |
|
<optional>true</optional> |
|
</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> |
|
|
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-assembly-plugin</artifactId> |
|
</plugin> |
|
<plugin> |
|
<groupId>com.github.eirslett</groupId> |
|
<artifactId>frontend-maven-plugin</artifactId> |
|
<version>1.12.1</version> |
|
<executions> |
|
<execution> |
|
<id>install node and npm</id> |
|
<goals> |
|
<goal>install-node-and-npm</goal> |
|
</goals> |
|
<phase>initialize</phase> |
|
<configuration> |
|
<nodeVersion>${node.version}</nodeVersion> |
|
<npmVersion>${npm.version}</npmVersion> |
|
</configuration> |
|
</execution> |
|
<execution> |
|
<id>npm install antora</id> |
|
<goals> |
|
<goal>npm</goal> |
|
</goals> |
|
<phase>initialize</phase> |
|
<configuration> |
|
<arguments>install @antora/cli@${antora.version} @antora/site-generator-default@${antora.version} @antora/atlas-extension@${antora-atlas.version} @antora/collector-extension@${antora-collector.version} @asciidoctor/tabs@${asciidoctor-tabs.version} @springio/antora-extensions@${spring-antora-extensions.version} @springio/asciidoctor-extensions@${spring-asciidoctor-extensions.version}</arguments> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.codehaus.mojo</groupId> |
|
<artifactId>exec-maven-plugin</artifactId> |
|
<version>3.0.0</version> |
|
<executions> |
|
<execution> |
|
<id>antora</id> |
|
<goals> |
|
<goal>exec</goal> |
|
</goals> |
|
<phase>compile</phase> |
|
<configuration> |
|
<!-- If we don't want to depend on default node installation path we can use a maven |
|
property aligned with frontend-maven-plugin's installDirectory configuration --> |
|
<executable>node/node</executable> |
|
<arguments> |
|
<argument>node_modules/.bin/antora</argument> |
|
<argument>antora-playbook.yml</argument> |
|
<argument>--to-dir=target/site</argument> |
|
</arguments> |
|
<workingDirectory>${project.basedir}</workingDirectory> |
|
</configuration> |
|
</execution> |
|
</executions> |
|
</plugin> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-clean-plugin</artifactId> |
|
<version>3.1.0</version> |
|
<configuration> |
|
<filesets> |
|
<fileset> |
|
<directory>node</directory> |
|
<followSymlinks>false</followSymlinks> |
|
</fileset> |
|
<fileset> |
|
<directory>node_modules</directory> |
|
<followSymlinks>false</followSymlinks> |
|
</fileset> |
|
<fileset> |
|
<directory>build</directory> |
|
<followSymlinks>false</followSymlinks> |
|
</fileset> |
|
</filesets> |
|
</configuration> |
|
</plugin> |
|
|
|
</plugins> |
|
<resources> |
|
<resource> |
|
<directory>src/main/resources</directory> |
|
<filtering>true</filtering> |
|
</resource> |
|
</resources> |
|
</build> |
|
|
|
<repositories> |
|
<repository> |
|
<id>spring-snapshot</id> |
|
<url>https://repo.spring.io/snapshot</url> |
|
<snapshots> |
|
<enabled>true</enabled> |
|
</snapshots> |
|
<releases> |
|
<enabled>false</enabled> |
|
</releases> |
|
</repository> |
|
<repository> |
|
<id>spring-milestone</id> |
|
<url>https://repo.spring.io/milestone</url> |
|
</repository> |
|
</repositories> |
|
|
|
</project>
|
|
|