Downloads

JavaXT is an open source project released under an MIT License. Feel free to use the code and information found here as you like. This software comes with no guarantees or warranties. You may use this software in any open source or commercial project.

JavaXT Libraries

NameVersionRelease DateFile SizeLinksDownloads
javaxt-core.zip2.1.84/18/2024827 KBRevision History312,070
javaxt-server.zip4.1.29/14/20222,612 KBRevision History5,339
javaxt-express.zip1.4.02/14/2024298 KB1,529
javaxt-webcontrols.zip1.0.87/14/2024260 KB180
javaxt-orm.zip1.2.23/26/202451 KBRevision History98
javaxt-rss.zip1.22/14/201835 KBRevision History1,254
javaxt-gis.zip1.112/30/201142 KB973
javaxt-exchange.zip1.012/10/2017147 KB250
* Excludes bots and webcrawlers

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>https://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>2.1.8</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...

Example pom.xml

Here's an example of a pom.xml used to build a simple command line app using the javaxt-core library. You can download it here.
<?xml version="1.0" encoding="UTF-8"?>
<project 
    xmlns="http://maven.apache.org/POM/4.0.0" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
    
    <modelVersion>4.0.0</modelVersion>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <maven.compiler.source>1.8</maven.compiler.source>
        <maven.compiler.target>1.8</maven.compiler.target>
    </properties>


  <!-- =========================================================== -->
  <!--     Module Description                                      -->
  <!-- =========================================================== -->
    <groupId>javaxt.maven</groupId>
    <artifactId>javaxt-maven-test</artifactId>
    <version>1.0-SNAPSHOT</version>
    <packaging>jar</packaging>


  <!-- =========================================================== -->
  <!--     Dependency Management                                   -->
  <!-- =========================================================== -->
    <repositories>
       <repository>
         <id>javaxt.com</id>
         <url>http://www.javaxt.com/maven</url>
       </repository>
    </repositories>
    <dependencies>
       <dependency>
         <groupId>javaxt</groupId>
         <artifactId>javaxt-core</artifactId>
         <version>2.1.8</version>
       </dependency>
     </dependencies>


  <!-- =========================================================== -->
  <!--     Build Info                                              -->
  <!-- =========================================================== -->
    <build>
        <plugins>

            <!-- Copy dependencies into the lib folder -->
            <plugin>
                <artifactId>maven-dependency-plugin</artifactId>
                <executions>
                    <execution>
                        <phase>install</phase>
                        <goals>
                            <goal>copy-dependencies</goal>
                        </goals>
                        <configuration>
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                        </configuration>
                    </execution>
                </executions>
            </plugin>

            <!-- Create main app -->
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <archive>
                        <manifest>
                            <addClasspath>true</addClasspath>
                            <classpathPrefix>lib/</classpathPrefix>
                            <mainClass>javaxt.maven.test.Main</mainClass>
                        </manifest>
                    </archive>
                </configuration>
            </plugin>

      </plugins>
    </build>

</project>

Accessing the Repository

Most of the JavaXT projects are managed in a local Subversion server. Access to the repository is restricted. However, I have started to migrate some of the projects to GitHub.

Feel free to contact me if you have any questions or suggestions at email@pborissow.dev