找不到' javaxt-core'在Maven Repo

时间:2017-07-21 10:06:32

标签: java eclipse maven

我已将下面的依赖项添加到我的pom.xml中,但Eclipse(Oxygen)不断给出以下错误缺少工件javaxt:javaxt-core:jar:1.7.8 。有办法解决这个问题吗?

<!-- https://mvnrepository.com/artifact/javaxt/javaxt-core -->
<dependency>
    <groupId>javaxt</groupId>
    <artifactId>javaxt-core</artifactId>
    <version>1.7.8</version>
</dependency>

3 个答案:

答案 0 :(得分:1)

我最近在JavaXT网站上添加了Maven支持。请使用以下&#34;存储库&#34;在你的pox.xml中:

<repositories>
   <repository>
     <id>javaxt.com</id>
     <url>http://www.javaxt.com/maven</url>
   </repository>
</repositories>

答案 1 :(得分:0)

尝试下面的一些事情

  1. 项目&gt;清洁
  2. 右键点击项目并继续 Maven&gt;更新项目配置
  3. 禁用然后重新启用依赖关系管理
  4. 最后,如果上述任何内容无法正常工作,请删除.m2隐藏文件夹或重命名,然后让maven创建另一个.m2目录。

答案 2 :(得分:0)

我实际上找到了一种更稳定的方法来解决这个问题,因为之前接受的答案在其他环境中无效。我不得不将以下内容添加到我的pom.xml中:

   <repositories>
            <repository>
                <id>jspresso-repository</id>
                <url>http://repository.jspresso.org/maven2</url>
                <releases>
                    <enabled>true</enabled>
                </releases>
                <snapshots>
                    <enabled>false</enabled>
                </snapshots>
            </repository>
   </repositories>