Skip to content
This repository has been archived by the owner on Nov 18, 2020. It is now read-only.

Getting Started

Mahmoud Ben Hassine edited this page Nov 15, 2020 · 19 revisions

Prerequisite

Easy Props requires a Java 11+ runtime.

Build instructions

To build Easy Props from sources, you need to have git and maven installed and set up.

Please follow these instructions :

$>git clone https://github.com/j-easy/easy-props.git
$>cd easy-props
$>mvn install

How to use Easy Props ?

Easy Props is a single jar file with two dependencies: SLF4J and Apache commons-beanutils. You have to add the easy-props-4.0.0.jar file as well as its dependencies to your application's classpath.

If you use maven, you need to add the following dependency to your pom.xml:

<dependency>
    <groupId>org.jeasy</groupId>
    <artifactId>easy-props</artifactId>
    <version>4.0.0</version>
</dependency>