JDAL Download
- Latest stable version is 2.0.0, download it from sourceforge or use maven to get it from maven repository (see below)
- Old stable version is 1.3.1 Download it from sourceforge or use maven to get if from maven central repository (see below)
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)
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>