执行Rest Assured程序时出错第一个代码Maven Dependency
mefy6pfw1#
添加此依赖关系并删除所有其他rest assured依赖关系json-path已包含在rest assured依赖关系中
<dependency> <groupId>io.rest-assured</groupId> <artifactId>rest-assured</artifactId> <version>5.2.0</version> <scope>test</scope> </dependency>
如果需要模式验证器,可以添加:
<!-- https://mvnrepository.com/artifact/io.rest-assured/json-schema-validator --> <dependency> <groupId>io.rest-assured</groupId> <artifactId>json-schema-validator</artifactId> <version>5.2.0</version> <scope>test</scope> </dependency>
请确保已正确安装JDK/JAVA_HOME环境变量。上述依赖项应适用于JDK 8+
1条答案
按热度按时间mefy6pfw1#
添加此依赖关系并删除所有其他rest assured依赖关系json-path已包含在rest assured依赖关系中
如果需要模式验证器,可以添加:
请确保已正确安装JDK/JAVA_HOME环境变量。上述依赖项应适用于JDK 8+