mvvm(fx) is an application framework which provides you necessary components to implement the MVVM pattern with JavaFX.
MVVM is the enhanced version of the Presentation Model pattern and was created by Microsoft engineers for WPF . JavaFX and WPF does have similarities like Databinding and descriptive UI declaration (FXML/XAML). Because of this fact we adopt best practices of the development with the Microsoft technology.
###Howto###
This is the stable release that can be used in production.
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx</artifactId>
<version>1.4.1</version>
</dependency>
Here we make bug fixes for the current stable release.
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx</artifactId>
<version>1.4.2-SNAPSHOT</version>
</dependency>
Here we develop new features. This release is unstable and shouldn't be used in production.
<dependency>
<groupId>de.saxsys</groupId>
<artifactId>mvvmfx</artifactId>
<version>1.5.0-SNAPSHOT</version>
</dependency>
If you need help you can use the forums on Google Groups for asking questions and interacting with the mvvmFX developers. Additionally you can create issues, report bugs and add feature requests on the issue tracker at github.