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 2021/05/21 13:42:32 UTC

[commons-math] 02/02: Ordering of modules in POM.

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

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

commit 44281eea76a33c7b2becdd905fdd7d191936de30
Author: Gilles Sadowski <gi...@gmail.com>
AuthorDate: Fri May 21 15:24:49 2021 +0200

    Ordering of modules in POM.
    
    A module independent of "legacy" codes should be declared before the
    "legacy" module (to avoid introducing unwanted dependencies).
---
 pom.xml | 7 ++++++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/pom.xml b/pom.xml
index e4a8127..e8c4149 100644
--- a/pom.xml
+++ b/pom.xml
@@ -105,8 +105,13 @@
   </properties>
 
   <modules>
-    <module>commons-math-legacy</module>
+    <!-- Modules that do not depend on "legacy" codes. -->
     <module>commons-math-neuralnet</module>
+
+    <!-- Non-modularized functionalities. -->
+    <module>commons-math-legacy</module>
+
+    <!-- Modules that depend on "legacy" codes. -->
     <module>commons-math-examples</module>
   </modules>