commons-springfx-data
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cz.masci.commons</groupId> <artifactId>commons-springfx-data</artifactId> <version>0.0.30</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>cz.masci.commons</groupId> <artifactId>commons-springfx</artifactId> <version>0.0.30</version> </parent> <artifactId>commons-springfx-data</artifactId> <name>Commons: SpringFX - Data</name> <description>Commons Spring for JavaFX data functions</description> <properties> </properties> <dependencyManagement> <dependencies> <dependency> <groupId>cz.masci.commons</groupId> <artifactId>commons-springfx-bom</artifactId> <version>${project.version}</version> <scope>import</scope> <type>pom</type> </dependency> </dependencies> </dependencyManagement> <dependencies> <!-- spring framework --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> </dependency> <!-- open jfx --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> </dependency> <!-- Validations --> <dependency> <groupId>io.github.palexdev</groupId> <artifactId>materialfx</artifactId> </dependency> <dependency> <groupId>org.reactfx</groupId> <artifactId>reactfx</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <!-- tests --> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-test</artifactId> <scope>test</scope> <exclusions> <exclusion> <groupId>junit</groupId> <artifactId>junit</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-api</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.junit.jupiter</groupId> <artifactId>junit-jupiter-engine</artifactId> <scope>test</scope> </dependency> <dependency> <groupId>org.assertj</groupId> <artifactId>assertj-core</artifactId> <scope>test</scope> </dependency> </dependencies> </project>