javafx-helpers
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.yetyman</groupId> <artifactId>javafx-helpers</artifactId> <version>2025.08.05.2-ALPHA</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>io.github.yetyman</groupId> <artifactId>parent-pom</artifactId> <version>2025.08.05.2-ALPHA</version> </parent> <artifactId>javafx-helpers</artifactId> <version>${project.parent.version}</version> <name>${project.artifactId}</name> <description>Sample application</description> <url>https://github.com/yetyman/${project.artifactId}</url> <inceptionYear>2025</inceptionYear> <scm> <connection>scm:git:${project.url}.git</connection> <developerConnection>scm:git:${project.url}.git</developerConnection> <url>${project.url}.git</url> <tag>HEAD</tag> </scm> <developers> <developer> <id>${project.developer.id}</id> <name>${project.developer.name}</name> </developer> </developers> <build> <plugins> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>flatten-maven-plugin</artifactId> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> <version>${javafx.version}</version> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.17</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> <version>23-ea+22</version> <scope>compile</scope> </dependency> </dependencies> </project>