Skip to content

Commit 241f146

Browse files
committed
Adding rest-assured json-path,xml-path dependency to parent pom
1 parent 9bc6086 commit 241f146

File tree

1 file changed

+52
-0
lines changed

1 file changed

+52
-0
lines changed

pom.xml

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -951,6 +951,58 @@
951951
<version>${version.rest.assured}</version>
952952
<scope>test</scope>
953953
</dependency>
954+
955+
<dependency>
956+
<groupId>io.rest-assured</groupId>
957+
<artifactId>json-path</artifactId>
958+
<version>${version.rest.assured}</version>
959+
<exclusions>
960+
<exclusion>
961+
<groupId>org.codehaus.groovy</groupId>
962+
<artifactId>groovy</artifactId>
963+
</exclusion>
964+
<exclusion>
965+
<groupId>org.codehaus.groovy</groupId>
966+
<artifactId>groovy-xml</artifactId>
967+
</exclusion>
968+
<exclusion>
969+
<groupId>org.codehaus.groovy</groupId>
970+
<artifactId>groovy-json</artifactId>
971+
</exclusion>
972+
</exclusions>
973+
</dependency>
974+
975+
<dependency>
976+
<groupId>io.rest-assured</groupId>
977+
<artifactId>xml-path</artifactId>
978+
<version>${version.rest.assured}</version>
979+
<exclusions>
980+
<exclusion>
981+
<groupId>org.codehaus.groovy</groupId>
982+
<artifactId>groovy</artifactId>
983+
</exclusion>
984+
<exclusion>
985+
<groupId>org.codehaus.groovy</groupId>
986+
<artifactId>groovy-xml</artifactId>
987+
</exclusion>
988+
<exclusion>
989+
<groupId>javax.activation</groupId>
990+
<artifactId>activation</artifactId>
991+
</exclusion>
992+
<exclusion>
993+
<groupId>jakarta.xml.bind</groupId>
994+
<artifactId>jakarta.xml.bind-api</artifactId>
995+
</exclusion>
996+
<exclusion>
997+
<groupId>com.sun.xml.bind</groupId>
998+
<artifactId>jaxb-osgi</artifactId>
999+
</exclusion>
1000+
<exclusion>
1001+
<groupId>org.ccil.cowan.tagsoup</groupId>
1002+
<artifactId>tagsoup</artifactId>
1003+
</exclusion>
1004+
</exclusions>
1005+
</dependency>
9541006

9551007
<dependency>
9561008
<groupId>xerces</groupId>

0 commit comments

Comments
 (0)