Java Database Application Library


Get JDAL (Java Database Application Library) at SourceForge.net. Fast, secure and Free Open Source software downloads

JDAL Download



Source Code

We use Git version control system hosted in github. To access the repository, configure your Git client as follows:

       https://github.com/chelu/jdal.git (jdal)
       https://github.com/chelu/jdal-samples.git(samples)

Browse code


Maven

If you use Maven add the dependencies to your pom.xml as follows:

Latest 2.0 stable version (Recomended for new projects).
<repositories>
       <repository>
        <id>jdal</id>
        <name>JDAL Repository</name>
        <url>http://www.jdal.org/repo</url>
       </repository>
</repositories>
 
<dependency>
       <groupId>org.jdal</groupId>
       <artifactId>jdal-core</artifactId>
       <version>2.0.0</version>
</dependency>
 
<dependency>
       <groupId>org.jdal</groupId>
       <artifactId>jdal-swing</artifactId>
       <version>2.0.0</version>
</dependency>
 
<dependency>
       <groupId>org.jdal</groupId>
       <artifactId>jdal-vaadin</artifactId>
       <version>2.0.0</version>
</dependency>

Old stable release: 1.3.1
...
<dependencies>
    ...
    <dependency>
        <groupId>org.jdal</groupId>
        <artifactId>jdal-core</artifactId>
        <version>1.3.1</version>
    </dependency>
    <dependency>
        <groupId>org.jdal</groupId>
        <artifactId>jdal-swing</artifactId>
        <version>1.3.1</version>
    </dependency>
    <dependency>
        <groupId>org.jdal</groupId>
        <artifactId>jdal-vaadin</artifactId>
        <version>1.3.1</version>
    </dependency>
    ...
</dependencies>
...

Developer branch

<repositories>
       <repository>
        <id>jdal</id>
        <name>JDAL Repository</name>
        <url>http://www.jdal.org/repo</url>
       </repository>
</repositories>
 
<dependency>
       <groupId>org.jdal</groupId>
       <artifactId>jdal-core</artifactId>
       <version>2.0-SNAPSHOT</version>
</dependency>
 
<dependency>
       <groupId>org.jdal</groupId>
       <artifactId>jdal-swing</artifactId>
       <version>2.0-SNAPSHOT</version>
</dependency>
 
<dependency>
       <groupId>org.jdal</groupId>
       <artifactId>jdal-vaadin</artifactId>
       <version>2.0-SNAPSHOT</version>
</dependency>