Installation¶
PropertyManager is a library intended for Java project >=8.
Maven projects can use the jitpack repository to import the dependency. This can be done in two easy steps:
- Add the jitpack repository in the pom.xml file
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
- Add the artefact dependency in the same pom.xml file
<dependency>
<groupId>com.github.sirnino</groupId>
<artifactId>PropertyManager</artifactId>
<version>1.3.0</version>
</dependency>
This is enough to have PropertyManager installed in the project. Now it’s necessary to configure it. The PropertyManager configuration is documented here.