Download
Downloads
- DataFX 1.0
- DataFX-javadoc 1.0
- DataFX-sources 1.0
- JavaOne 2011 slide deck - As presented by Jonathan Giles and Johan Vos.
DataFX & Maven
With the final release of DataFX 1.0 we now provide Maven support. This allows you to easily add a dependency to DataFX 1.0 in any Maven project. When this is done a JavaFX 2.2 dependency is also automatically added to your project, too. To add DataFX to a project just add the following dependency to your Maven pom:
<dependency> <groupId>org.javafxdata</groupId> <artifactId>datafx-core</artifactId> <version>1.0</version> </dependency>
Since all datafx-core artifacts are available at Maven Central Repository, DataFX will automatically be downloaded and used by Maven when building your application. If you are interested in how we added JavaFX as a dependency to DataFX you can read here about it.
What we outlined above shows how to add DataFX to your dependency hierarchy. If you want to run or distribute your application using Maven we recommend this Maven plugin as it provides a lot of functionality to a JavaFX Maven project, saving you from having to reinvent the wheel. You can find a tutorial about the plugin here.