Hi everyone,This is Laura and Juan Carlos, we work for everis with Isaac and Enrique, and we are going to help with the development.
We were looking at the code of “java-ilp-core” and we have a question,
The code implemented in the class “LedgerSpecificDecimalMonetaryAmountFormat” and we would like to know where are the specifications of the class in the documentation.
Also, we would like to know where are the libraries “javax.money”, if we have to download them or something. Because our Eclipse doesn’t recognize them.
@lelorrieta java-ilp-core is using gradle for building . Either you directly use the gradle plugin in eclipse to update the dependencies automatically or, from the command line, follow next steps:
1 - navigate to the java-ilpc-core directory
2 - execute
gradle install
gradle eclipse
(will update .project file)
3 - In eclipse, press F5 (refresh) on the java-ilp-core project. Eclipse will re-read the .project file and update dependencies.
Note: In the dependencies section of the java-ilp-core/build.gradle you will also find the "coordinates" used by gradle to identify the javax money library in the gradle jar repository. Gradle will download the corresponding jar to a route similar to ${HOME}/.gradle/cache/.../money-api.1.0.1.jar when executing "gradle install". You can then add it manually to your project in eclipse (not recomended, just as a last option if nothing else work).