You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
JavaMoney-lib provides extensions and libraries built upon JSR 354 (compatible implementations).
5
5
Whereas the JSR 354 API and reference implementation provides the fundamentals like monetary amounts,
6
6
customizable currencies and interfaces for interoperation this library adds additional powerful
7
-
APIs and SPIs that were implemented during JSR development as a proof of concept:
7
+
APIs and SPIs that were implemented during JSR development as a proof of concept (artifactIds in brackets):
8
8
9
-
*[**Calculation**](calc) provides a set of monetary calculations and formulas. The idea here is to provide a comprehensive set of algorithms and tools to perform complex financial mathematics.
10
-
*[**Exchange**](exchange) provides further conversion exchange resources such as FRD and Yahoo.
11
-
*[**javamoney-cdi**](integration/javamoney-cdi) Integrates JavaMoney with CDI, so SPIs can as well be loaded from CDI.
9
+
***Calculation** (javamoney-calc) provides a set of monetary calculations and formulas. The idea here is to provide a comprehensive set of algorithms and tools to perform complex financial mathematics.
10
+
***Exchange** (javamoney-exchange) provides further conversion exchange resources such as FRD and Yahoo.
11
+
***FRB** (javamoney-exchange-frb) provides conversion exchange for US Federal Reserve Department FRD.
12
+
***Yahoo** (javamoney-exchange-yahoo) provides conversion exchange using Yahoo financial APIs.
13
+
***javamoney-cdi** (integration/javamoney-cdi) Integrates JavaMoney with CDI.
12
14
13
15
To use the library you simply have to add the Maven dependency to your project:
14
16
15
17
```xml
16
18
<dependency>
17
-
<groupId>org.javamoney</groupId>
18
-
<artifactId>javamoney-${module}</artifactId>
19
+
<groupId>org.javamoney.lib</groupId>
20
+
<artifactId>${artifactId}</artifactId>
19
21
<versionId>the current library version</version>
20
22
</dependency>
21
23
```
@@ -26,6 +28,14 @@ Different people have contributed to this project. During the development of JSR
26
28
founded this project and were also the main contributors. Nevertheless everybody is really welcome to help
27
29
us, to make this library more feasible and add features.
28
30
31
+
Special thanks go to @manuela-grindei for her awsome help implementing financial formulas.
32
+
33
+
Release Notes
34
+
-------------
35
+
36
+
***1.0** First release of the libraries.
37
+
38
+
29
39
javamoney-shelter
30
40
-----------------
31
41
The javamoney [shelter module](http://javamoney.github.io/shelter.html) is for testing out new features or
0 commit comments