mvvmFX validation

This module contains validation utils that can be useful for JavaFX and mvvmFX developers.

License

License

GroupId

GroupId

de.saxsys
ArtifactId

ArtifactId

mvvmfx-validation
Last Version

Last Version

1.8.0
Release Date

Release Date

Type

Type

jar
Description

Description

mvvmFX validation
This module contains validation utils that can be useful for JavaFX and mvvmFX developers.
Project Organization

Project Organization

Saxonia Systems AG

Download mvvmfx-validation

How to add to project

<!-- https://jarcasting.com/artifacts/de.saxsys/mvvmfx-validation/ -->
<dependency>
    <groupId>de.saxsys</groupId>
    <artifactId>mvvmfx-validation</artifactId>
    <version>1.8.0</version>
</dependency>
// https://jarcasting.com/artifacts/de.saxsys/mvvmfx-validation/
implementation 'de.saxsys:mvvmfx-validation:1.8.0'
// https://jarcasting.com/artifacts/de.saxsys/mvvmfx-validation/
implementation ("de.saxsys:mvvmfx-validation:1.8.0")
'de.saxsys:mvvmfx-validation:jar:1.8.0'
<dependency org="de.saxsys" name="mvvmfx-validation" rev="1.8.0">
  <artifact name="mvvmfx-validation" type="jar" />
</dependency>
@Grapes(
@Grab(group='de.saxsys', module='mvvmfx-validation', version='1.8.0')
)
libraryDependencies += "de.saxsys" % "mvvmfx-validation" % "1.8.0"
[de.saxsys/mvvmfx-validation "1.8.0"]

Dependencies

provided (1)

Group / Artifact Type Version
org.controlsfx : controlsfx jar 8.40.12

test (6)

Group / Artifact Type Version
de.saxsys : mvvmfx jar 1.8.0
de.saxsys : mvvmfx-testing-utils jar 1.8.0
org.junit.jupiter : junit-jupiter-api jar 5.3.1
org.assertj : assertj-core jar 1.7.1
com.cedarsoft.commons : test-utils jar 6.1.1
nl.jqno.equalsverifier : equalsverifier jar 2.0.1

Project Modules

There are no modules declared in this project.

image

mvvmFX 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 data binding and descriptive UI declaration (FXML/XAML). Because of this fact we adopted best practices of the development with the Microsoft technology and introduced new helpers to support the development of applications with JavaFX and MVVM.

Commercial Support Build Status

Howto

Maven dependency

Stable Release

This is the stable release that can be used in production.

<dependency>
		<groupId>de.saxsys</groupId>
		<artifactId>mvvmfx</artifactId>
		<version>1.8.0</version>
</dependency>

Bugfix Development Snapshot

Here we make bug fixes for the current stable release.

<dependency>
		<groupId>de.saxsys</groupId>
		<artifactId>mvvmfx</artifactId>
		<version>1.8.1-SNAPSHOT</version>
</dependency>

Development Snapshot

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.9.0-SNAPSHOT</version>
</dependency>

Snapshot repository

We use the Sonatype snapshot repository. Maybe you have to add this repository to your <repository> section of the pom.xml.

<repository>
		<id>sonatype-snapshots</id>
		<url>https://oss.sonatype.org/content/repositories/snapshots/</url>
		<snapshots>
			<enabled>true</enabled>
		</snapshots>
</repository>

Get Help

The best way to get help with mvvmFX is to either ask questions on StackOverflow using the tag "mvvmfx" or to use our Google Groups mailing list. Additionally you can create issues, report bugs and add feature requests on the issue tracker at github.

Links

Versions

Version
1.8.0
1.7.0
1.6.0