How to get FontAwesome 8.12 from maven ?

Issue #43 resolved
kevin caradant created an issue

Hi :),

Today, I tried to get your lib from maven but the last repos available is:

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

So How can I resolve it ?

Also, the version 8.0.10 allows to use the font in the SceneBuilder and I can't use it with 8.9 version.

Is it possible with 8.12 ?

Thanks

Comments (2)

  1. kevin caradant reporter

    OK I found it :)

    I Copied/pasted this:

    <?xml version="1.0" encoding="UTF-8" ?>
    <settings xsi:schemaLocation='http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd'
              xmlns='http://maven.apache.org/SETTINGS/1.0.0' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
    
        <profiles>
            <profile>
                <repositories>
                    <repository>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                        <id>bintray-jerady-maven</id>
                        <name>bintray</name>
                        <url>http://dl.bintray.com/jerady/maven</url>
                    </repository>
                </repositories>
                <pluginRepositories>
                    <pluginRepository>
                        <snapshots>
                            <enabled>false</enabled>
                        </snapshots>
                        <id>bintray-jerady-maven</id>
                        <name>bintray-plugins</name>
                        <url>http://dl.bintray.com/jerady/maven</url>
                    </pluginRepository>
                </pluginRepositories>
                <id>bintray</id>
            </profile>
        </profiles>
        <activeProfiles>
            <activeProfile>bintray</activeProfile>
        </activeProfiles>
    </settings>
    

    in

    .m2/settings.xml
    

    And then i import the new fontawesome in maven via this:

    <dependency>
      <groupId>de.jensd</groupId>
      <artifactId>fontawesomefx-commons</artifactId>
      <version>8.12</version>
    </dependency>
    
  2. kevin caradant reporter

    There is just one thing.

    Is it possible and how use it in SceneBuilder ?

    I don't know what try as name of font. For example, I want the television fontAwesome, how can I do ?

    Or what is the fxml code if it's not possible by passing in the SceneBuilder ?

    thank you

  3. Log in to comment