Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Cannot find 'javaxt-core' on Maven Repo

I have added the dependency below to my pom.xml but Eclipse (Oxygen) keeps giving the following error Missing artifact javaxt:javaxt-core:jar:1.7.8. Is there a way around this?

<!-- https://mvnrepository.com/artifact/javaxt/javaxt-core -->
<dependency>
    <groupId>javaxt</groupId>
    <artifactId>javaxt-core</artifactId>
    <version>1.7.8</version>
</dependency>
like image 556
FourtyTwo Avatar asked Oct 31 '25 22:10

FourtyTwo


1 Answers

I recently added Maven support to the JavaXT website. Please use the following "repository" in your pox.xml:

<repositories>
   <repository>
     <id>javaxt.com</id>
     <url>http://www.javaxt.com/maven</url>
   </repository>
</repositories>
like image 178
Peter Avatar answered Nov 02 '25 11:11

Peter