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
The following commit(s) were added to refs/heads/modularized_master by this
push:
new d206737 Update modules list.
d206737 is described below
commit d2067374626de14b2af2cb89a627835775df865f
Author: Gilles Sadowski <[email protected]>
AuthorDate: Sun May 23 06:04:52 2021 +0200
Update modules list.
---
dist-archive/pom.xml | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 74 insertions(+)
diff --git a/dist-archive/pom.xml b/dist-archive/pom.xml
index 0c0d084..08d47b7 100644
--- a/dist-archive/pom.xml
+++ b/dist-archive/pom.xml
@@ -81,12 +81,85 @@ under the License.
<classifier>javadoc</classifier>
</dependency>
+ <!-- Module: ANN -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-neuralnet</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-neuralnet</artifactId>
+ <version>${project.version}</version>
+ <classifier>sources</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-neuralnet</artifactId>
+ <version>${project.version}</version>
+ <classifier>javadoc</classifier>
+ </dependency>
+
+ <!-- Module: Transforms -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-transform</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-transform</artifactId>
+ <version>${project.version}</version>
+ <classifier>sources</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-transform</artifactId>
+ <version>${project.version}</version>
+ <classifier>javadoc</classifier>
+ </dependency>
+
+ <!-- Module: Examples -->
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-examples</artifactId>
+ <version>${project.version}</version>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-examples</artifactId>
+ <version>${project.version}</version>
+ <classifier>sources</classifier>
+ </dependency>
+ <dependency>
+ <groupId>org.apache.commons</groupId>
+ <artifactId>commons-math-examples</artifactId>
+ <version>${project.version}</version>
+ <classifier>javadoc</classifier>
+ </dependency>
+
</dependencies>
+
<build>
<plugins>
<plugin>
+ <artifactId>maven-dependency-plugin</artifactId>
+ <executions>
+ <execution>
+ <id>get-dependencies</id>
+ <phase>prepare-package</phase>
+ <goals>
+ <goal>copy-dependencies</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<artifactId>maven-assembly-plugin</artifactId>
<version>2.4</version>
+ <configuration>
+ <skipAssembly>false</skipAssembly>
+ </configuration>
<executions>
<execution>
<id>create-distribution</id>
@@ -95,6 +168,7 @@ under the License.
<goal>single</goal>
</goals>
<configuration>
+ <skipAssembly>false</skipAssembly>
<descriptors>
<descriptor>src/assembly/bin.xml</descriptor>
<descriptor>src/assembly/src.xml</descriptor>