在中央找不到工件 com.sun.kvem:kenv:jar:2.2

发布于 2024-11-13 06:33:02 字数 803 浏览 3 评论 0原文

我正在尝试在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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无声静候 2024-11-20 06:33:02

你需要做:

mvn install:install-file -DgroupId=com.sun.kvem -DartifactId=kenv -Dversion=kenv -Dfile=com.sun.kvem-2.2.jar -Dpackaging=jar  -Dgenerate-pom=true

you need to do:

mvn install:install-file -DgroupId=com.sun.kvem -DartifactId=kenv -Dversion=kenv -Dfile=com.sun.kvem-2.2.jar -Dpackaging=jar  -Dgenerate-pom=true
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文