This repository is made to make Richard J. Mathar's
"Java Math.BigDecimal Implementation of Core Mathematical Functions"
library available as maven dependency.
I'm not the author, but code is licensed under
LGPL v3.0, so use and modification
in basically any application is supported/allowed with no further support or any
sort of warranty attached.
Package is renamed from original org.nevec.rjm to io.github.miraclefoxx.math
to preserve the possibility of improving the library.
Add the following tags to your pom.xml:
<repositories>
<repository>
<id>BigDecimalMath-mvn-repo</id>
<url>https://raw.github.com/miraclefoxx/BigDecimalMath/mvn-repo/</url>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
</snapshots>
</repository>
</repositories>
<dependency>
<groupId>io.github.miraclefoxx</groupId>
<artifactId>bigdecimal-math</artifactId>
<version>1.0</version>
</dependency>