How to import JavaXT in maven project

Maven Coordinates

JavaXT releases are available via Maven using this site. All other Maven repositories, including Maven Central, are out of sync with this site.

To add this maven repository to your project, simply update your project pom.xml file. Example:

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

Next, you will need to add one of the JavaXT projects (javaxt-core, javaxt-server, etc) using the dependencies tag. Example:

<dependencies>
   <dependency>
     <groupId>javaxt</groupId>
     <artifactId>javaxt-core</artifactId>
     <version>1.10.6</version>
   </dependency>
 </dependencies>

Finally, you may need to tell your IDE to download the dependencies. For example, in Netbeans, you will need to click on the Project node -> Resolve Missing Dependencies -> Resolve…