Direct Download

Use the following links to download the necessary files directly:

Maven Configuration

Follow the instructions below to use the FxLogging library as a maven dependency.

Dependency

Add this dependency to your pom.xml and you are nearly done and ready to use FxLogging!

<project>
  <dependencies>
    <dependency>
      <groupId>net.sourceforge.fxpotpourri</groupId>
      <artifactId>FxLogging</artifactId>
      <version>0.1-SNAPSHOT</version>
    </dependency>
    ...
  </dependencies>
  ...

Repository

As all FxPotpourri libraries are only hosted at its own sourceforge repository (until now), you have to add this maven repository to each POM (or better to one of your super POM) which got dependencies to any FxPotpourri artifact.

<project>
  <repositories>
    <repository>
      <id>fxpotpourri-repository</id>
      <url>http://fxpotpourri.sourceforge.net/maven2</url>
    </repository>
    ...
  </repositories>
  ...