Download fontawesomefx-8.6.jar file

Introduction

You can download fontawesomefx-8.6.jar in this page.

License

Apache License, Version 2.0

Type List

fontawesomefx-8.6.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/de.jensd/fontawesomefx/pom.properties
META-INF/maven/de.jensd/fontawesomefx/pom.xml
de.jensd.fx.glyphs.GlyphIcon.class
de.jensd.fx.glyphs.GlyphIcons.class
de.jensd.fx.glyphs.GlyphsBuilder.class
de.jensd.fx.glyphs.GlyphsDude.class
de.jensd.fx.glyphs.GlyphsStack.class
de.jensd.fx.glyphs.GlyphsStyle.class
de.jensd.fx.glyphs.fontawesome.FontAwesomeIcon.class
de.jensd.fx.glyphs.fontawesome.FontAwesomeIconView.class
de.jensd.fx.glyphs.materialdesignicons.MaterialDesignIcon.class
de.jensd.fx.glyphs.materialdesignicons.MaterialDesignIconView.class
de.jensd.fx.glyphs.materialicons.MaterialIcon.class
de.jensd.fx.glyphs.materialicons.MaterialIconView.class
de.jensd.fx.glyphs.weathericons.WeatherIcon.class
de.jensd.fx.glyphs.weathericons.WeatherIconView.class
de/jensd/fx/glyphs/fontawesome/fontawesome-webfont.ttf
de/jensd/fx/glyphs/materialdesignicons/materialdesignicons-webfont.ttf
de/jensd/fx/glyphs/materialicons/MaterialIcons-Regular.ttf
de/jensd/fx/glyphs/weathericons/weathericons-regular-webfont.ttf
license/LICENSE.txt
styles/glyphs.css
styles/glyphs_blue.css
styles/glyphs_dark.css
styles/glyphs_light.css
styles/glyphs_red.css

Pom

fontawesomefx-8.6.pom file content.

<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>de.jensd</groupId>
    <artifactId>fontawesomefx</artifactId>
    <version>8.6</version>
    <packaging>jar</packaging>
    <name>FontAwesomeFX</name>
    <inceptionYear>2015</inceptionYear>
    <description>Use WebFonts as icon source for JavaFX applications.</description>
    <url>http://www.jensd.de</url>
    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
        </license>
    </licenses>
    <scm>
        <connection>scm:git:https://Jerady@bitbucket.org/Jerady/fontawesomefx.git</connection>
        <developerConnection>scm:git:https://Jerady@bitbucket.org/Jerady/fontawesomefx.git</developerConnection>
        <url>https://bitbucket.org/Jerady/fontawesomefx</url>
        <tag>fontawesomefx-8.6</tag>
    </scm>
    <developers>
        <developer>
            <id>jens.deters</id>
            <name>Jens Deters</name>
            <email>mail -at- jensd.de</email>
            <url>http://www.jensd.de</url>
            <roles>
                <role>Architect</role>
                <role>Developer</role>
            </roles>
        </developer>
    </developers>
    <organization>
        <name>www.jensd.de</name>
    </organization>
    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <mainClass>de.jensd.fx.glyphs.testapps.GlyphsBrowserApp</mainClass>
    </properties>
    <distributionManagement>
        <snapshotRepository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots</url>
        </snapshotRepository>
        <repository>
            <id>ossrh</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>
    <build>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
                <includes>
                    <include>**/*.ttf</include>
                    <include>**/*.txt</include>
                    <include>**/*.fxml</include>
                    <include>**/*.css</include>
                    <include>**/*.properties</include>
                </includes>
            </resource>
        </resources>
        <plugins>
            <!--plugin>
                <groupId>net.orfjackal.retrolambda</groupId>
                <artifactId>retrolambda-maven-plugin</artifactId>
                <version>1.8.1</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>process-main</goal>
                            <goal>process-test</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin-->
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-release-plugin</artifactId>
                <version>2.5</version>
                <configuration>
                    <autoVersionSubmodules>true</autoVersionSubmodules>
                    <useReleaseProfile>false</useReleaseProfile>
                    <releaseProfiles>release</releaseProfiles>
                    <goals>deploy</goals>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <version>2.3.2</version>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.4</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </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</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
                <version>2.9</version>
                <executions>
                    <execution>
                        <id>attach-javadocs</id>
                        <goals>
                            <goal>jar</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
    <dependencies>
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <version>3.8.1</version>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>

POM Entry

<dependency>
   <groupId>de.jensd</groupId>
   <artifactId>fontawesomefx</artifactId>
   <version>8.6</version>
</dependency>

Download

If you think the following fontawesomefx-8.6.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download fontawesomefx-8.6.jar file




PreviousNext

Related