maven pom.xml怎么删除jar包
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven pom.xml怎么删除jar包相关的知识,希望对你有一定的参考价值。
参考技术A 在pom.xml中, 删除你不想要的那段<dependency>即可.譬如, 你不想要junit-3.8.jar包, 你可以在pom.xml中删除以下xml, 然后保存, 这样该jar包就从你的项目中排除了(可在Maven Dependencies查看)
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>3.8.1</version>
<scope>test</scope>
</dependency>本回答被提问者采纳 参考技术B pom.xml删除依赖就行了
以上是关于maven pom.xml怎么删除jar包的主要内容,如果未能解决你的问题,请参考以下文章
在pom.xml中的dependencies点击add怎么没有搜索到相关jar包