If you want to use this library in one of your maven project, add this to your pom.xml
:
<repositories>
<repository>
<id>PFGimenez-Kraken</id>
<url>https://packagecloud.io/PFGimenez/Kraken/maven2</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>true</enabled>
</snapshots>
</repository>
</repositories>
and
<dependency>
<groupId>pfg.injector</groupId>
<artifactId>dependency-injector</artifactId>
<version>1.1</version>
</dependency>
You can compile it yourself. You will need a JDK and maven.
$ git clone https://github.com/PFGimenez/dependency-injector.git --depth 1
$ cd dependency-injector
$ mvn install