Created
January 29, 2021 12:26
-
-
Save aoudiamoncef/3af5530124f92e0571ca10c61da008ee to your computer and use it in GitHub Desktop.
Rest-assured 4+ dependencies conflict solution
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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>com.lahzouz</groupId> | |
<artifactId>rest-assured-test</artifactId> | |
<version>0.0.1-SNAPSHOT</version> | |
<properties> | |
<groovy.version>3.0.7</groovy.version> | |
<rest-assured.version>4.3.3</rest-assured.version> | |
</properties> | |
<dependencies> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter</artifactId> | |
</dependency> | |
<dependency> | |
<groupId>org.springframework.boot</groupId> | |
<artifactId>spring-boot-starter-test</artifactId> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>io.rest-assured</groupId> | |
<artifactId>spring-mock-mvc</artifactId> | |
<scope>test</scope> | |
<exclusions> | |
<exclusion> | |
<artifactId>groovy</artifactId> | |
<groupId>org.codehaus.groovy</groupId> | |
</exclusion> | |
</exclusions> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.groovy</groupId> | |
<artifactId>groovy</artifactId> | |
<version>${groovy.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.groovy</groupId> | |
<artifactId>groovy-xml</artifactId> | |
<version>${groovy.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>org.codehaus.groovy</groupId> | |
<artifactId>groovy-json</artifactId> | |
<version>${groovy.version}</version> | |
</dependency> | |
<dependency> | |
<groupId>io.rest-assured</groupId> | |
<artifactId>json-path</artifactId> | |
<version>${rest-assured.version}</version> | |
<scope>test</scope> | |
</dependency> | |
<dependency> | |
<groupId>io.rest-assured</groupId> | |
<artifactId>xml-path</artifactId> | |
<version>${rest-assured.version}</version> | |
<scope>test</scope> | |
</dependency> | |
</dependencies> | |
</project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment