fxtend
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.alialkubaisi</groupId> <artifactId>fxtend</artifactId> <version>1.0.2</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.alialkubaisi</groupId> <artifactId>fxtend-parent</artifactId> <version>1.0.2</version> <relativePath>../pom.xml</relativePath> </parent> <artifactId>fxtend</artifactId> <packaging>jar</packaging> <version>1.0.2</version> <name>FXtend</name> <description>FXtend is an open-source JavaFX library that aims to provide additional, new, or improved controls for JavaFX applications. The library is designed to be easy to use and integrate seamlessly into existing JavaFX projects. </description> <url>https://github.com/alialkubaisi/FXtend</url> <licenses> <license> <name>Apache License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <name>Ali Al-Kubaisi</name> <email>alialkobase@gmail.com</email> </developer> </developers> <scm> <connection>scm:git:git://github.com/alialkubaisi/FXtend.git</connection> <developerConnection>scm:git:ssh://github.com:alialkubaisi/FXtend.git</developerConnection> <url>https://github.com/alialkubaisi/FXtend</url> </scm> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <ikonli.version>12.3.1</ikonli.version> </properties> <dependencies> <dependency> <groupId>org.openjfx</groupId> <artifactId>javafx-fxml</artifactId> </dependency> <dependency> <groupId>org.controlsfx</groupId> <artifactId>controlsfx</artifactId> <version>11.2.0</version> <!-- avoid outdated JavaFX libs --> <exclusions> <exclusion> <groupId>org.openjfx</groupId> <artifactId>javafx-graphics</artifactId> </exclusion> <exclusion> <groupId>org.openjfx</groupId> <artifactId>javafx-base</artifactId> </exclusion> <exclusion> <groupId>org.openjfx</groupId> <artifactId>javafx-media</artifactId> </exclusion> <exclusion> <groupId>org.openjfx</groupId> <artifactId>javafx-controls</artifactId> </exclusion> <exclusion> <groupId>org.openjfx</groupId> <artifactId>javafx-web</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-javafx</artifactId> <version>${ikonli.version}</version> </dependency> <dependency> <groupId>org.kordamp.ikonli</groupId> <artifactId>ikonli-materialdesign2-pack</artifactId> <version>${ikonli.version}</version> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.8.1</version> <configuration> <source>${maven.compiler.source}</source> <target>${maven.compiler.target}</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.2.1</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-shade-plugin</artifactId> <version>3.2.4</version> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <transformers> <transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer"/> </transformers> <artifactSet> <excludes> <exclude>org.openjfx:*</exclude> <exclude>org.controlsfx:*</exclude> <exclude>org.kordamp.ikonli:*</exclude> </excludes> </artifactSet> <createDependencyReducedPom>false</createDependencyReducedPom> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-gpg-plugin</artifactId> <version>1.6</version> <executions> <execution> <id>sign-artifacts</id> <phase>verify</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>