Skip to content

Commit

Permalink
Adding Commons RNG dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
marco-brandizi committed Oct 26, 2023
1 parent bbb1392 commit c22de0e
Showing 1 changed file with 17 additions and 1 deletion.
18 changes: 17 additions & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,8 @@

<!-- This is referred by submodules -->
<log4j.version>2.18.0</log4j.version>

<commons.rng.version>1.5</commons.rng.version>

<!--
These are for the neo4j server plug-in.
Expand Down Expand Up @@ -190,9 +192,23 @@
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.12.0</version>
<version>3.13.0</version>
</dependency>

<!-- Nice lib to sample collections -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-rng-sampling</artifactId>
<version>${commons.rng.version}</version>
</dependency>

<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-rng-simple</artifactId>
<version>${commons.rng.version}</version>
</dependency>


<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
Expand Down

0 comments on commit c22de0e

Please sign in to comment.