You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2022/01/20 17:58:12 UTC

[commons-math] 14/16: Add dependency on "ga" module.

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

erans pushed a commit to branch feature__MATH-1563__genetic_algorithm
in repository https://gitbox.apache.org/repos/asf/commons-math.git

commit b13fcfa1749246eadcbc9bc410aeaea1c0f5094b
Author: Gilles Sadowski <gi...@gmail.com>
AuthorDate: Wed Jan 19 05:46:06 2022 +0100

    Add dependency on "ga" module.
---
 commons-math-examples/pom.xml | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/commons-math-examples/pom.xml b/commons-math-examples/pom.xml
index 2619557..7ed9e7e 100644
--- a/commons-math-examples/pom.xml
+++ b/commons-math-examples/pom.xml
@@ -67,6 +67,12 @@
 
       <dependency>
         <groupId>org.apache.commons</groupId>
+        <artifactId>commons-math4-ga</artifactId>
+        <version>${math.version}</version>
+      </dependency>
+
+      <dependency>
+        <groupId>org.apache.commons</groupId>
         <artifactId>commons-math4-legacy</artifactId>
         <version>${math.version}</version>
       </dependency>
@@ -158,7 +164,7 @@
 
   <modules>
     <module>examples-sofm</module>
-	<module>examples-ga</module>
+    <module>examples-ga</module>
   </modules>
 
 </project>