Created
July 22, 2022 13:23
-
-
Save solanoize/b7c0248dd0a58e8bba3acc8f16ee1675 to your computer and use it in GitHub Desktop.
day 21
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
| <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.juaracoding</groupId> | |
| <artifactId>belajartestassured</artifactId> | |
| <version>0.0.1-SNAPSHOT</version> | |
| <properties> | |
| <maven.compiler.source> | |
| 1.8 | |
| </maven.compiler.source> | |
| <maven.compiler.target> | |
| 1.8 | |
| </maven.compiler.target> | |
| </properties> | |
| <dependencies> | |
| <!-- https://mvnrepository.com/artifact/org.testng/testng --> | |
| <dependency> | |
| <groupId>org.testng</groupId> | |
| <artifactId>testng</artifactId> | |
| <version>7.1.0</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- https://mvnrepository.com/artifact/io.rest-assured/rest-assured --> | |
| <dependency> | |
| <groupId>io.rest-assured</groupId> | |
| <artifactId>rest-assured</artifactId> | |
| <version>4.3.3</version> | |
| <scope>test</scope> | |
| </dependency> | |
| <!-- https://mvnrepository.com/artifact/com.github.fge/json-schema-validator --> | |
| <dependency> | |
| <groupId>com.github.fge</groupId> | |
| <artifactId>json-schema-validator</artifactId> | |
| <version>2.2.6</version> | |
| </dependency> | |
| </dependencies> | |
| </project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment