gemsfx
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.dlsc.gemsfx</groupId> <artifactId>gemsfx</artifactId> <version>2.62.0</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>com.dlsc.gemsfx</groupId> <artifactId>parent</artifactId> <version>2.62.0</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>gemsfx</artifactId> <packaging>jar</packaging> <name>GemsFX</name> <description>A collection of JavaFX controls and utils. </description> <url>https://github.com/dlsc-software-consulting-gmbh/GemsFX</url> <licenses> <license> <name>Apache 2.0</name> </license> </licenses> <scm> <url>https://github.com/dlsc-software-consulting-gmbh/GemsFX</url> </scm> <developers> <developer> <name>Dirk Lemmermann</name> <url>https://www.dlsc.com</url> <organization>DLSC Software & Consulting</organization> </developer> </developers> <repositories> <repository> <id>sandec</id> <url>https://sandec.jfrog.io/artifactory/repo</url> </repository> </repositories> <dependencies> <dependency> <groupId>net.synedra</groupId> <artifactId>validatorfx</artifactId> <version>0.5.0</version> </dependency> <dependency> <groupId>com.dlsc.unitfx</groupId> <artifactId>unitfx</artifactId> <version>1.0.10</version> </dependency> <dependency> <groupId>com.dlsc.pickerfx</groupId> <artifactId>pickerfx</artifactId> <version>1.3.1</version> </dependency> <dependency> <groupId>com.github.weisj</groupId> <artifactId>jsvg</artifactId> </dependency> <dependency> <groupId>commons-validator</groupId> <artifactId>commons-validator</artifactId> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-swing</artifactId> </dependency> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> </dependency> <dependency> <groupId>org.controlsfx</groupId> <artifactId>controlsfx</artifactId> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-core</artifactId> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-javafx</artifactId> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-materialdesign-pack</artifactId> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-material-pack</artifactId> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-bootstrapicons-pack</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>one.jpro.jproutils</groupId> <artifactId>tree-showing</artifactId> </dependency> <!-- Testing --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.4.1</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> <configuration> <artifactSet> <excludes> <exclude>org.openjfx:*</exclude> </excludes> </artifactSet> <createDependencyReducedPom>false</createDependencyReducedPom> <outputFile>target/gemsfx-${project.version}-all.jar</outputFile> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> </transformers> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>