-
Notifications
You must be signed in to change notification settings - Fork 2
Integration
The following page describes, how to integrate the library into your Java application. If you're using Maven, please follow the advices for Integration with Maven.
Together with each release we're providing a binary package, that contains all necessary files to work with OpenEstate-IS24-REST.
After you've extracted the binary package, you can find the following files and folders:
-
core- the core files-
core/*.jar- compiled core files -
core/lib/*- dependencies for the core files
-
-
addon-hc42- additional files for Apache HttpComponents 4.2-
addon-hc42/*.jar- compiled addon files -
addon-hc42/lib/*- dependencies for the addon files
-
-
addon-hc43- additional files for Apache HttpComponents 4.3-
addon-hc43/*.jar- compiled addon files -
addon-hc43/lib/*- dependencies for the addon files
-
-
docs- documentations from the project wiki -
javadoc- generated javadoc forcore,addon-hc42andaddon-hc43 -
LICENSE.txt- license text -
README.md- project readme -
TERMS-IS24.md- a copy of the terms of use by IS24
At least you need to add core/OpenEstate-IS24-REST-0.1.jar and core/lib/*.jar to the dependencies of your application. In addition you can add one of the following addons:
-
If you want to make use of Apache HttpComponents 4.2, you also need to add
addon-hc42/OpenEstate-IS24-REST-hc42-0.1.jarandaddon-hc42/lib/*.jarto the dependencies of your application. -
If you want to make use of Apache HttpComponents 4.3, you also need to add
addon-hc43/OpenEstate-IS24-REST-hc43-0.1.jarandaddon-hc43/lib/*.jarto the dependencies of your application.
From now on you can use OpenEstate-IS24-REST within your application. Have a look at the usage page for some example code.