commons-springfx-mvci
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cz.masci.commons</groupId> <artifactId>commons-springfx-mvci</artifactId> <version>0.0.30</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <!-- ~ Copyright (c) 2023 ~ ~ This file is part of commons-springfx library. ~ ~ commons-springfx library is free software: you can redistribute it and/or modify it under the ~ terms of the GNU General Public License as published by the Free ~ Software Foundation, either version 3 of the License, or (at your option) ~ any later version. ~ ~ commons-springfx library is distributed in the hope that it will be useful, but WITHOUT ANY ~ WARRANTY; without even the implied warranty of MERCHANTABILITY or ~ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public ~ License for more details. ~ ~ You should have received a copy of the GNU General Public License ~ along with Foobar. If not, see <https://www.gnu.org/licenses />. --> <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-mvci</artifactId> <name>Commons: SpringFX - MVCI</name> <description>Commons Spring for JavaFX - Model-View-Controller-Interactor</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 fx --> <dependency> <groupId>cz.masci.commons</groupId> <artifactId>commons-springfx-data</artifactId> </dependency> <!-- open jfx --> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> </dependency> <!-- material fx --> <dependency> <groupId>io.github.palexdev</groupId> <artifactId>materialfx</artifactId> </dependency> <!-- utils --> <dependency> <groupId>org.nield</groupId> <artifactId>dirtyfx</artifactId> </dependency> <dependency> <groupId>org.reactfx</groupId> <artifactId>reactfx</artifactId> </dependency> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</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> <exclusion> <groupId>org.hamcrest</groupId> <artifactId>hamcrest</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testfx</groupId> <artifactId>testfx-junit5</artifactId> <scope>test</scope> </dependency> </dependencies> </project>