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 2022/05/13 14:49:05 UTC

[commons-rng] 02/02: Add explicit dependency from simple to the client-api module

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-rng.git

commit c285f7d222e7fee7da9e67d29e00c3d73d296a3a
Author: aherbert <ah...@apache.org>
AuthorDate: Fri May 13 15:42:55 2022 +0100

    Add explicit dependency from simple to the client-api module
    
    The simple module uses interfaces from the client-api that can be after
    v1.0. Add an explicit dependency to avoid transitive dependency
    resolution creating mismatched modules.
---
 commons-rng-simple/pom.xml | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/commons-rng-simple/pom.xml b/commons-rng-simple/pom.xml
index 1413dbc6..974b00e2 100644
--- a/commons-rng-simple/pom.xml
+++ b/commons-rng-simple/pom.xml
@@ -43,6 +43,11 @@
   </properties>
 
   <dependencies>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-rng-client-api</artifactId>
+      <version>1.5-SNAPSHOT</version>
+    </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-rng-core</artifactId>