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.
130 lines
3.6 KiB
130 lines
3.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> |
|
<parent> |
|
<groupId>org.springframework.boot</groupId> |
|
<artifactId>spring-boot-tools</artifactId> |
|
<version>${revision}</version> |
|
</parent> |
|
<artifactId>spring-boot-test-support</artifactId> |
|
<name>Spring Boot Testing Support</name> |
|
<description>Spring Boot Testing Support</description> |
|
<properties> |
|
<main.basedir>${basedir}/../../..</main.basedir> |
|
</properties> |
|
<build> |
|
<plugins> |
|
<plugin> |
|
<groupId>org.apache.maven.plugins</groupId> |
|
<artifactId>maven-deploy-plugin</artifactId> |
|
<configuration> |
|
<skip>true</skip> |
|
</configuration> |
|
</plugin> |
|
</plugins> |
|
</build> |
|
<dependencies> |
|
<!-- Compile --> |
|
<dependency> |
|
<groupId>org.apache.maven</groupId> |
|
<artifactId>maven-aether-provider</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>org.eclipse.sisu.plexus</artifactId> |
|
<groupId>org.eclipse.sisu</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.aether</groupId> |
|
<artifactId>aether-api</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.aether</groupId> |
|
<artifactId>aether-connector-basic</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.aether</groupId> |
|
<artifactId>aether-impl</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.aether</groupId> |
|
<artifactId>aether-spi</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.eclipse.aether</groupId> |
|
<artifactId>aether-transport-http</artifactId> |
|
<exclusions> |
|
<exclusion> |
|
<artifactId>jcl-over-slf4j</artifactId> |
|
<groupId>org.slf4j</groupId> |
|
</exclusion> |
|
</exclusions> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-core</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.hamcrest</groupId> |
|
<artifactId>hamcrest-library</artifactId> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.assertj</groupId> |
|
<artifactId>assertj-core</artifactId> |
|
</dependency> |
|
<!-- Optional --> |
|
<dependency> |
|
<groupId>com.datastax.cassandra</groupId> |
|
<artifactId>cassandra-driver-core</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.neo4j</groupId> |
|
<artifactId>neo4j-ogm-core</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>javax.servlet</groupId> |
|
<artifactId>javax.servlet-api</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.mockito</groupId> |
|
<artifactId>mockito-core</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework.data</groupId> |
|
<artifactId>spring-data-redis</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.springframework</groupId> |
|
<artifactId>spring-context</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<dependency> |
|
<groupId>org.testcontainers</groupId> |
|
<artifactId>testcontainers</artifactId> |
|
<optional>true</optional> |
|
</dependency> |
|
<!-- Provided --> |
|
<dependency> |
|
<groupId>junit</groupId> |
|
<artifactId>junit</artifactId> |
|
<scope>provided</scope> |
|
</dependency> |
|
<!-- Test --> |
|
<dependency> |
|
<groupId>org.hibernate.validator</groupId> |
|
<artifactId>hibernate-validator</artifactId> |
|
<scope>test</scope> |
|
</dependency> |
|
</dependencies> |
|
</project>
|
|
|