You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ah...@apache.org on 2021/11/24 13:05:55 UTC

[commons-numbers] 04/04: Add usable maven modules to the main README.md page

This is an automated email from the ASF dual-hosted git repository.

aherbert pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-numbers.git

commit 4d5258e7a6412bbc7628cab710cbf4e68c6bfe35
Author: aherbert <ah...@apache.org>
AuthorDate: Wed Nov 24 12:59:43 2021 +0000

    Add usable maven modules to the main README.md page
    
    This replaces the example for commons-numbers-parent
---
 README.md | 14 ++++++++++++--
 1 file changed, 12 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index e2bdb1e..2bb6f13 100644
--- a/README.md
+++ b/README.md
@@ -75,12 +75,22 @@ Where can I get the latest release?
 -----------------------------------
 You can download source and binaries from our [download page](https://commons.apache.org/proper/commons-numbers/download_numbers.cgi).
 
-Alternatively you can pull it from the central Maven repositories:
+Alternatively you can pull it from the central Maven repositories, for example:
 
 ```xml
 <dependency>
   <groupId>org.apache.commons</groupId>
-  <artifactId>commons-numbers-parent</artifactId>
+  <artifactId>commons-numbers-core</artifactId>
+  <version>1.0</version>
+</dependency>
+<dependency>
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-numbers-complex</artifactId>
+  <version>1.0</version>
+</dependency>
+<dependency>
+  <groupId>org.apache.commons</groupId>
+  <artifactId>commons-numbers-quaternion</artifactId>
   <version>1.0</version>
 </dependency>
 ```