我想使用XML
比较两个xmlunit
文件,但是在尝试在maven中为同一文件创建依赖关系时,我在pom.xml
中遇到了错误
我在下面使用了依赖项代码,但未下载jar文件。
在pom.xml
<dependency>
<groupId> xmlunit </groupId>
<artifactId> xmlunit </artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
我想使用Maven下载XMLunit的jar文件
答案 0 :(得分:0)
我不确定groupId和artifactId中的空格。 我想这段代码应该可以工作:
<dependency>
<groupId>xmlunit</groupId>
<artifactId>xmlunit</artifactId>
<version>1.6</version>
<scope>test</scope>
</dependency>
使用此命令运行项目
mvn clean install
或
mvn dependency:resolve
如果您想使用maven下载此单个依赖项,请运行此命令
mvn dependency:get -Dartifact=groupId:artifactId:version