If you want to use this library in one of your maven project, add this to your pom.xml
:
<repositories>
<repository>
<id>central</id>
<url>https://repo1.maven.org/maven2</url>
</repository>
<repository>
<id>github</id>
<url>https://maven.pkg.github.com/kraken-robotics/*</url>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
and
<dependency>
<groupId>pfg.log</groupId>
<artifactId>log</artifactId>
<version>1.0</version>
</dependency>
You can compile it yourself. You will need a JDK and maven.
$ git clone https://github.com/PFGimenez/log.git --depth 1
$ cd log
$ mvn install