This is an automated email from the ASF dual-hosted git repository. mattjuntunen pushed a commit to annotated tag NUMBERS_1_0_B1_RC1 in repository https://gitbox.apache.org/repos/asf/commons-numbers.git
commit 4158ddbc0dcfe7f7f0912b301ca98e4a9377bf81 Author: Matt Juntunen <matt.juntu...@hotmail.com> AuthorDate: Sun Mar 29 16:09:58 2020 -0400 adding missing modules to dist-archive; fixing dist-archive version --- dist-archive/pom.xml | 180 +++++++++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 175 insertions(+), 5 deletions(-) diff --git a/dist-archive/pom.xml b/dist-archive/pom.xml index 9905be1..7f9f2dc 100644 --- a/dist-archive/pom.xml +++ b/dist-archive/pom.xml @@ -25,7 +25,7 @@ under the License. <parent> <groupId>org.apache.commons</groupId> <artifactId>commons-numbers-parent</artifactId> - <version>1.0-SNAPSHOT</version> + <version>1.0-B1</version> </parent> <artifactId>commons-numbers</artifactId> @@ -46,22 +46,59 @@ under the License. </properties> <dependencies> + <!-- Module: Angle --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-angle</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-angle</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-angle</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> - <!-- Module: Core --> + <!-- Module: Arrays --> <dependency> <groupId>org.apache.commons</groupId> - <artifactId>commons-numbers-core</artifactId> + <artifactId>commons-numbers-arrays</artifactId> <version>${project.version}</version> </dependency> <dependency> <groupId>org.apache.commons</groupId> - <artifactId>commons-numbers-core</artifactId> + <artifactId>commons-numbers-arrays</artifactId> <version>${project.version}</version> <classifier>sources</classifier> </dependency> <dependency> <groupId>org.apache.commons</groupId> - <artifactId>commons-numbers-core</artifactId> + <artifactId>commons-numbers-arrays</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + + <!-- Module: Combinatorics --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-combinatorics</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-combinatorics</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-combinatorics</artifactId> <version>${project.version}</version> <classifier>javadoc</classifier> </dependency> @@ -85,6 +122,120 @@ under the License. <classifier>javadoc</classifier> </dependency> + <!-- Module: Core --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-core</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-core</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-core</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + + <!-- Module: Examples JMH --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-examples-jmh</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-examples-jmh</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-examples-jmh</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + + <!-- Module: Field --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-field</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-field</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-field</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + + <!-- Module: Fraction --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-fraction</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-fraction</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-fraction</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + + <!-- Module: Gamma --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-gamma</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-gamma</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-gamma</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + + <!-- Module: Primes --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-primes</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-primes</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-primes</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + <!-- Module: Quaternion --> <dependency> <groupId>org.apache.commons</groupId> @@ -104,6 +255,25 @@ under the License. <classifier>javadoc</classifier> </dependency> + <!-- Module: Rootfinder --> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-rootfinder</artifactId> + <version>${project.version}</version> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-rootfinder</artifactId> + <version>${project.version}</version> + <classifier>sources</classifier> + </dependency> + <dependency> + <groupId>org.apache.commons</groupId> + <artifactId>commons-numbers-rootfinder</artifactId> + <version>${project.version}</version> + <classifier>javadoc</classifier> + </dependency> + </dependencies> <build>