| Group ID: |
net.ioze |
| Artifact ID: |
iozefx |
| Version: |
1.0.9 |
| Last modified: |
20.01.2026 13:06 |
| Packaging: |
jar |
| Name: |
IozeFX |
| Description: |
A modern JavaFX UI library for business applications. |
| URL: |
https://code.ioze.net/ioze/iozefx |
|
|
| Size: |
59.0 KB |
| Download: |
https://repo.maven.apache.org/maven2/net/ioze/iozefx/1.0.9/iozefx-1.0.9.jar |
| POM: |
Show
hide
<?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>
<groupId>net.ioze</groupId>
<artifactId>iozefx</artifactId>
<version>1.0.9</version>
<name>IozeFX</name>
<description>A modern JavaFX UI library for business applications.</description>
<url>https://code.ioze.net/ioze/iozefx</url>
<licenses>
<license>
<name>MIT License</name>
<url>http://www.opensource.org/licenses/mit-license.php</url>
</license>
</licenses>
<developers>
<developer>
<name>Ioze Team</name>
<email>contact@ioze.net</email>
<organization>Ioze</organization>
<organizationUrl>https://ioze.net</organizationUrl>
</developer>
</developers>
<scm>
<connection>scm:git:git://code.ioze.net/ioze/iozefx.git</connection>
<developerConnection>scm:git:ssh://code.ioze.net:ioze/iozefx.git</developerConnection>
<url>http://code.ioze.net/ioze/iozefx/tree/master</url>
</scm>
<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.release>21</maven.compiler.release>
<javafx.version>21</javafx.version>
<atlantafx.version>2.0.1</atlantafx.version>
<ikonli.version>12.3.1</ikonli.version>
</properties>
<dependencies>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-controls</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>org.openjfx</groupId>
<artifactId>javafx-fxml</artifactId>
<version>${javafx.version}</version>
</dependency>
<dependency>
<groupId>io.github.mkpaz</groupId>
<artifactId>atlantafx-base</artifactId>
<version>${atlantafx.version}</version>
</dependency>
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-javafx</artifactId>
<version>${ikonli.version}</version>
</dependency>
<dependency>
<groupId>org.kordamp.ikonli</groupId>
<artifactId>ikonli-feather-pack</artifactId>
<version>${ikonli.version}</version>
</dependency>
<dependency>
<groupId>com.github.librepdf</groupId>
<artifactId>openpdf</artifactId>
<version>1.3.30</version>
</dependency>
<!-- ControlsFX (Notifications, etc.) -->
<dependency>
<groupId>org.controlsfx</groupId>
<artifactId>controlsfx</artifactId>
<version>11.2.1</version>
</dependency>
<!-- FormsFX -->
<dependency>
<groupId>com.dlsc.formsfx</groupId>
<artifactId>formsfx-core</artifactId>
<version>11.6.0</version>
<exclusions>
<exclusion>
<groupId>org.openjfx</groupId>
<artifactId>*</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Validation API -->
<dependency>
<groupId>jakarta.validation</groupId>
<artifactId>jakarta.validation-api</artifactId>
<version>3.0.2</version>
</dependency>
<!-- JUnit 5 -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-engine</artifactId>
<version>5.10.0</version>
<scope>test</scope>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
</plugin>
<plugin>
<groupId>org.openjfx</groupId>
<artifactId>javafx-maven-plugin</artifactId>
<version>0.0.8</version>
<configuration>
<mainClass>net.ioze.demo.DemoApp</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.5.1</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<shadedArtifactAttached>true</shadedArtifactAttached>
<shadedClassifierName>scenebuilder</shadedClassifierName>
<artifactSet>
<excludes>
<exclude>org.openjfx:*</exclude>
</excludes>
</artifactSet>
<transformers>
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/>
</transformers>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>META-INF/*.SF</exclude>
<exclude>META-INF/*.DSA</exclude>
<exclude>META-INF/*.RSA</exclude>
<exclude>module-info.class</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<!-- Source Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
<!-- Javadoc Plugin -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
<configuration>
<failOnError>false</failOnError>
</configuration>
</plugin>
<!-- GPG Plugin (disabled by default, enable with -Dgpg.skip=false) -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>
<!-- Nexus Staging Plugin -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>false</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration>
</plugin>
</plugins>
</build>
</project>
|
| Maven: |
<dependency>
<groupId>net.ioze</groupId>
<artifactId>iozefx</artifactId>
<version>1.0.9</version>
</dependency>
|
| Gradle: |
|
|
Contained classes:
|
Show all
|
|
Contained classes:
|
|
| Dependencies: |
-
[JAR]
atlantafx-base-2.0.1.jar
in io/github/mkpaz/atlantafx-base/2.0.1
-
[JAR]
controlsfx-11.2.1.jar
in org/controlsfx/controlsfx/11.2.1
-
[JAR]
formsfx-core-11.6.0.jar
in com/dlsc/formsfx/formsfx-core/11.6.0
-
[JAR]
ikonli-feather-pack-12.3.1.jar
in org/kordamp/ikonli/ikonli-feather-pack/12.3.1
-
[JAR]
ikonli-javafx-12.3.1.jar
in org/kordamp/ikonli/ikonli-javafx/12.3.1
-
[JAR]
jakarta.validation-api-3.0.2.jar
in jakarta/validation/jakarta.validation-api/3.0.2
-
[JAR]
javafx-controls-21.jar
in org/openjfx/javafx-controls/21
-
[JAR]
javafx-fxml-21.jar
in org/openjfx/javafx-fxml/21
-
[JAR]
junit-jupiter-api-5.10.0.jar
in org/junit/jupiter/junit-jupiter-api/5.10.0
-
[JAR]
junit-jupiter-engine-5.10.0.jar
in org/junit/jupiter/junit-jupiter-engine/5.10.0
-
[JAR]
openpdf-1.3.30.jar
in com/github/librepdf/openpdf/1.3.30
|
| Dependency Graph: |
Show
Less
More
|