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
If you like this software, consider donating to me at this link: [http://upokecenter.dreamhosters.com/articles/donate-now-2/](http://upokecenter.dreamhosters.com/articles/donate-now-2/)
7
+
8
+
----
9
+
10
+
A Java library that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components.
11
+
12
+
How to Install
13
+
---------
14
+
The library is available
15
+
as an [artifact](https://search.maven.org/#search|ga|1|g%3A%22com.github.peteroupc%22%20AND%20a%3A%22numbers%22) in the Central Repository. To add this library to a Maven
16
+
project, add the following to the `dependencies` section in your `pom.xml` file:
17
+
18
+
```xml
19
+
<dependency>
20
+
<groupId>com.github.peteroupc</groupId>
21
+
<artifactId>numbers</artifactId>
22
+
<version>0.1.0</version>
23
+
</dependency>
24
+
```
25
+
26
+
In other Java-based environments, the library can be referred to by its
27
+
group ID (`com.github.peteroupc`), artifact ID (`numbers`), and version, as given above.
28
+
29
+
Documentation
30
+
------------
31
+
32
+
See the [Wiki](https://github.com/peteroupc/Numbers-Java/wiki) for Java API documentation.
33
+
34
+
Source Code
35
+
---------
36
+
Source code is available in the [project page](https://github.com/peteroupc/Numbers-Java).
Copy file name to clipboardExpand all lines: pom.xml
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -4,7 +4,7 @@
4
4
<groupId>com.github.peteroupc</groupId>
5
5
<artifactId>numbers</artifactId>
6
6
<packaging>jar</packaging>
7
-
<version>0.1.0-SNAPSHOT</version>
7
+
<version>0.1.0</version>
8
8
<name>Numbers</name>
9
9
<description>
10
10
A Java implementation that supports arbitrary-precision binary and decimal floating-point numbers and rational numbers with arbitrary-precision components, and supports arithmetic with these numbers.
0 commit comments