在中央找不到工件 com.sun.kvem:kenv:jar:2.2
我正在尝试在maven项目中编译Proguard 4.6的源代码。该代码依赖于:
<dependency>
<groupId>com.sun.kvem</groupId>
<artifactId>kenv</artifactId>
<version>2.2</version>
<optional>true</optional>
<type>jar</type>
</dependency>
当我尝试编译它时,我得到:
Failed to execute goal on project proguard:
Could not resolve dependencies for project net.sf.proguard:proguard:jar:4.6:
Could not find artifact com.sun.kvem:kenv:jar:2.2 in central
(http://repo1.maven.org/maven2) -> [Help 1]
当我浏览中心时 (here ),中央存储库中确实没有这样的jar。
我不知道 kvem 是什么。为什么它在 pom.xml 中声明为 type=jar
并且为什么不在中央存储库中?我该如何解决这个问题?
I am trying to compile the source code of Proguard 4.6 in a maven project. The code has a dependency on:
<dependency>
<groupId>com.sun.kvem</groupId>
<artifactId>kenv</artifactId>
<version>2.2</version>
<optional>true</optional>
<type>jar</type>
</dependency>
When I try compile it, I get:
Failed to execute goal on project proguard:
Could not resolve dependencies for project net.sf.proguard:proguard:jar:4.6:
Could not find artifact com.sun.kvem:kenv:jar:2.2 in central
(http://repo1.maven.org/maven2) -> [Help 1]
When I browse central (here), there is indeed no such jar in the central repository.
I don't know what kvem is. Why is it declared as type=jar
in the pom.xml and why isn't it in central repository? How do I solve this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你需要做:
you need to do: