58 lines
1.7 KiB
XML
58 lines
1.7 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.data</groupId>
|
|
<artifactId>spring-data-rest-parent</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
<relativePath>../pom.xml</relativePath>
|
|
</parent>
|
|
|
|
<name>Spring Data REST Tests</name>
|
|
<artifactId>spring-data-rest-tests</artifactId>
|
|
<packaging>pom</packaging>
|
|
|
|
<modules>
|
|
<module>spring-data-rest-tests-core</module>
|
|
<!-- Disabled until Apache Geode can be made work with having Micrometer 2 in the class path.
|
|
See https://github.com/spring-projects/spring-data-rest/issues/2106 and
|
|
https://github.com/spring-projects/spring-data-geode/issues/572 -->
|
|
<!-- <module>spring-data-rest-tests-geode</module> -->
|
|
<module>spring-data-rest-tests-jpa</module>
|
|
<module>spring-data-rest-tests-mongodb</module>
|
|
<module>spring-data-rest-tests-security</module>
|
|
<module>spring-data-rest-tests-shop</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<groovy.version>2.4.4</groovy.version>
|
|
<source.level>1.8</source.level>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
<groupId>jakarta.servlet</groupId>
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
<version>${servlet.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
<artifactId>groovy-all</artifactId>
|
|
<version>${groovy.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.projectlombok</groupId>
|
|
<artifactId>lombok</artifactId>
|
|
<version>${lombok}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|