From 2d3810df45298ecc7aba14f4d6f33c7aaf310ecd Mon Sep 17 00:00:00 2001 From: Stephen Colebourne Date: Mon, 16 Sep 2019 11:55:47 +0100 Subject: [PATCH] Update build files Switch to v3.6.2-SNAPSHOT Regenerate using commons-build plugin Change to https Remove svn artifact --- .travis.yml | 24 +++ CONTRIBUTING.md | 46 +++-- NOTICE.txt | 2 +- README.md | 23 ++- math-RC.sh | 4 +- math-pre-RC.sh | 2 +- pom.xml | 121 +++++++++--- siteMods/pom.xml | 6 +- src/changes/changes.xml | 4 +- src/site/site.xml | 35 ++-- src/site/xdoc/developers.xml | 8 +- src/site/xdoc/download_math.xml | 180 ++++++++++-------- src/site/xdoc/issue-tracking.xml | 32 ++-- src/site/xdoc/mail-lists.xml | 33 ++-- .../commons/math3/special/BesselJTest.java | 1 - src/userguide/pom.xml | 42 ++-- 16 files changed, 356 insertions(+), 207 deletions(-) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 000000000..aeaaa1ee8 --- /dev/null +++ b/.travis.yml @@ -0,0 +1,24 @@ +# Licensed to the Apache Software Foundation (ASF) under one or more +# contributor license agreements. See the NOTICE file distributed with +# this work for additional information regarding copyright ownership. +# The ASF licenses this file to You under the Apache License, Version 2.0 +# (the "License"); you may not use this file except in compliance with +# the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. + +language: java +jdk: + - openjdk8 + +env: + - MAVEN_OPTS="-Xmx6g -Xms2g" + +script: + - mvn clean install jacoco:report site -Ptravis-jacoco diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5bcbfc11d..f09099837 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -25,7 +25,7 @@ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | +======================================================================+ | | - | 1) Re-generate using: mvn commons:contributing-md | + | 1) Re-generate using: mvn commons-build:contributing-md | | | | 2) Set the following properties in the component's pom: | | - commons.jira.id (required, alphabetic, upper case) | @@ -50,48 +50,66 @@ Getting Started + Make sure you have a [JIRA account](https://issues.apache.org/jira/). + Make sure you have a [GitHub account](https://github.com/signup/free). -+ If you're planning to implement a new feature it makes sense to discuss you're changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Math's scope. -+ Submit a ticket for your issue, assuming one does not already exist. ++ If you're planning to implement a new feature it makes sense to discuss your changes on the [dev list](https://commons.apache.org/mail-lists.html) first. This way you can make sure you're not wasting your time on something that isn't considered to be in Apache Commons Math's scope. ++ Submit a [Jira Ticket][jira] for your issue, assuming one does not already exist. + Clearly describe the issue including steps to reproduce when it is a bug. + Make sure you fill in the earliest version that you know has the issue. -+ Fork the repository on GitHub. ++ Find the corresponding [repository on GitHub](https://github.com/apache/?query=commons-), +[fork](https://help.github.com/articles/fork-a-repo/) and check out your forked repository. Making Changes -------------- -+ Create a topic branch from where you want to base your work (this is usually the master/trunk branch). ++ Create a _topic branch_ for your isolated work. + * Usually you should base your branch on the `master` or `trunk` branch. + * A good topic branch name can be the JIRA bug id plus a keyword, e.g. `MATH-123-InputStream`. + * If you have submitted multiple JIRA issues, try to maintain separate branches and pull requests. + Make commits of logical units. + * Make sure your commit messages are meaningful and in the proper format. Your commit message should contain the key of the JIRA issue. + * e.g. `MATH-123: Close input stream earlier` + Respect the original code style: + Only use spaces for indentation. - + Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change. - + Check for unnecessary whitespace with git diff --check before committing. -+ Make sure your commit messages are in the proper format. Your commit message should contain the key of the JIRA issue. -+ Make sure you have added the necessary tests for your changes. + + Create minimal diffs - disable _On Save_ actions like _Reformat Source Code_ or _Organize Imports_. If you feel the source code should be reformatted create a separate PR for this change first. + + Check for unnecessary whitespace with `git diff` -- check before committing. ++ Make sure you have added the necessary tests for your changes, typically in `src/test/java`. + Run all the tests with `mvn clean verify` to assure nothing else was accidentally broken. Making Trivial Changes ---------------------- +The JIRA tickets are used to generate the changelog for the next release. + For changes of a trivial nature to comments and documentation, it is not always necessary to create a new ticket in JIRA. In this case, it is appropriate to start the first line of a commit with '(doc)' instead of a ticket number. + Submitting Changes ------------------ -+ Sign the [Contributor License Agreement][cla] if you haven't already. ++ Sign and submit the Apache [Contributor License Agreement][cla] if you haven't already. + * Note that small patches & typical bug fixes do not require a CLA as + clause 5 of the [Apache License](https://www.apache.org/licenses/LICENSE-2.0.html#contributions) + covers them. + Push your changes to a topic branch in your fork of the repository. -+ Submit a pull request to the repository in the apache organization. ++ Submit a _Pull Request_ to the corresponding repository in the `apache` organization. + * Verify _Files Changed_ shows only your intended changes and does not + include additional files like `target/*.class` + Update your JIRA ticket and include a link to the pull request in the ticket. +If you prefer to not use GitHub, then you can instead use +`git format-patch` (or `svn diff`) and attach the patch file to the JIRA issue. + + Additional Resources -------------------- + [Contributing patches](https://commons.apache.org/patches.html) -+ [Apache Commons Math JIRA project page](https://issues.apache.org/jira/browse/MATH) ++ [Apache Commons Math JIRA project page][jira] + [Contributor License Agreement][cla] + [General GitHub documentation](https://help.github.com/) -+ [GitHub pull request documentation](https://help.github.com/send-pull-requests/) ++ [GitHub pull request documentation](https://help.github.com/articles/creating-a-pull-request/) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) -+ #apachecommons IRC channel on freenode.org ++ `#apache-commons` IRC channel on `irc.freenode.net` [cla]:https://www.apache.org/licenses/#clas +[jira]:https://issues.apache.org/jira/browse/MATH diff --git a/NOTICE.txt b/NOTICE.txt index be158fe28..6fe2e558f 100644 --- a/NOTICE.txt +++ b/NOTICE.txt @@ -1,5 +1,5 @@ Apache Commons Math -Copyright 2001-2016 The Apache Software Foundation +Copyright 2001-2019 The Apache Software Foundation This product includes software developed at The Apache Software Foundation (http://www.apache.org/). diff --git a/README.md b/README.md index 73cafa40e..d21f4f35b 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | +======================================================================+ | | - | 1) Re-generate using: mvn commons:readme-md | + | 1) Re-generate using: mvn commons-build:readme-md | | | | 2) Set the following properties in the component's pom: | | - commons.componentid (required, alphabetic, lower case) | @@ -43,13 +43,18 @@ Apache Commons Math =================== +[![Build Status](https://travis-ci.org/apache/commons-math.svg)](https://travis-ci.org/apache/commons-math) +[![Coverage Status](https://coveralls.io/repos/apache/commons-math/badge.svg)](https://coveralls.io/r/apache/commons-math) +[![Maven Central](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-math3/badge.svg)](https://maven-badges.herokuapp.com/maven-central/org.apache.commons/commons-math3/) +[![Javadocs](https://javadoc.io/badge/org.apache.commons/commons-math3/3.6.2-SNAPSHOT.svg)](https://javadoc.io/doc/org.apache.commons/commons-math3/3.6.2-SNAPSHOT) + The Apache Commons Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang. Documentation ------------- -More information can be found on the [homepage](https://commons.apache.org/proper/commons-math). -The [JavaDoc](https://commons.apache.org/proper/commons-math/apidocs) can be browsed. +More information can be found on the [Apache Commons Math homepage](https://commons.apache.org/proper/commons-math). +The [Javadoc](https://commons.apache.org/proper/commons-math/apidocs) can be browsed. Questions related to the usage of Apache Commons Math should be posted to the [user mailing list][ml]. Where can I get the latest release? @@ -62,14 +67,14 @@ Alternatively you can pull it from the central Maven repositories: org.apache.commons commons-math3 - 3.4 + 3.6.2-SNAPSHOT ``` Contributing ------------ -We accept PRs via github. The [developer mailing list][ml] is the main channel of communication for contributors. +We accept Pull Requests via GitHub. The [developer mailing list][ml] is the main channel of communication for contributors. There are some guidelines which will make applying PRs easier for us: + No tabs! Please use spaces for indentation. + Respect the code style. @@ -81,7 +86,9 @@ You can learn more about contributing via GitHub in our [contribution guidelines License ------- -Code is under the [Apache Licence v2](https://www.apache.org/licenses/LICENSE-2.0.txt). +This code is under the [Apache Licence v2](https://www.apache.org/licenses/LICENSE-2.0). + +See the `NOTICE.txt` file for required notices and attributions. Donations --------- @@ -91,8 +98,8 @@ Additional Resources -------------------- + [Apache Commons Homepage](https://commons.apache.org/) -+ [Apache Bugtracker (JIRA)](https://issues.apache.org/jira/) ++ [Apache Issue Tracker (JIRA)](https://issues.apache.org/jira/browse/MATH) + [Apache Commons Twitter Account](https://twitter.com/ApacheCommons) -+ #apachecommons IRC channel on freenode.org ++ `#apache-commons` IRC channel on `irc.freenode.org` [ml]:https://commons.apache.org/mail-lists.html diff --git a/math-RC.sh b/math-RC.sh index 98c0f279b..284590c84 100755 --- a/math-RC.sh +++ b/math-RC.sh @@ -21,7 +21,7 @@ # # ----------------------------------------------------------------------------- # Set script variables -version=2.1 +version=3.6.2 repo_path=~/.m2/repository/org/apache/commons/commons-math/${version} site_mods_path=./siteMods release_path=~/math-release @@ -45,7 +45,7 @@ svn revert src/site/site.xml svn revert pom.xml # # Generate the release artifacts and install them locally -mvn assembly:assembly +mvn assembly:single mvn -Prc -DcreateChecksum=true install # # Copy the zips/tarballs and release notes to release directory diff --git a/math-pre-RC.sh b/math-pre-RC.sh index 467bd8ec5..2376f140f 100755 --- a/math-pre-RC.sh +++ b/math-pre-RC.sh @@ -27,4 +27,4 @@ mvn changes:announcement-generate -Prelease-notes [-Dchanges.version=m.n] -mvn commons:download-page +mvn commons-build:download-page diff --git a/pom.xml b/pom.xml index 4972bac53..793a87426 100644 --- a/pom.xml +++ b/pom.xml @@ -16,31 +16,31 @@ limitations under the License. --> + 4.0.0 org.apache.commons commons-parent - 39 + 48 - 4.0.0 org.apache.commons commons-math3 - 3.7-SNAPSHOT + 3.6.2-SNAPSHOT Apache Commons Math 2003 The Apache Commons Math project is a library of lightweight, self-contained mathematics and statistics components addressing the most common practical problems not immediately available in the Java programming language or commons-lang. - http://commons.apache.org/proper/commons-math/ + https://commons.apache.org/proper/commons-math/ jira - http://issues.apache.org/jira/browse/MATH + https://issues.apache.org/jira/browse/MATH - scm:git:http://git-wip-us.apache.org/repos/asf/commons-math.git - scm:git:https://git-wip-us.apache.org/repos/asf/commons-math.git - https://git-wip-us.apache.org/repos/asf?p=commons-math.git + scm:git:http://gitbox.apache.org/repos/asf/commons-math.git + scm:git:https://gitbox.apache.org/repos/asf/commons-math.git + https://gitbox.apache.org/repos/asf?p=commons-math.git @@ -369,7 +369,7 @@ org.apache.commons.math3 - 3.7-SNAPSHOT + 3.6.2-SNAPSHOT (requires Java 1.5+) RC1 -bin @@ -386,19 +386,10 @@ 1.5 1.5 3.5 - 3.0.2 + 3.0.4 2.17 - 2.6.1 - - - 0.7.5.201505241946 - 0.96 - 0.8 - 0.8 - 0.8 - 0.8 - 0.85 - false + 2.8 + 2.7.6 math https://svn.apache.org/repos/infra/websites/production/commons/content/proper/commons-math @@ -406,9 +397,14 @@ true - 1.2.10 + 1.2.11 ${git.revision}; ${maven.build.timestamp} + + + + + @@ -417,6 +413,9 @@ org.apache.maven.plugins maven-surefire-plugin + + + false **/*Test.java **/*TestBinary.java @@ -534,7 +533,62 @@ org.apache.maven.plugins maven-javadoc-plugin - -header '<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>' + + ${doclint.javadoc.qualifier} --allow-script-in-comments -header '<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/${math.mathjax.version}/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>' + + + + + org.apache.rat + apache-rat-plugin + ${commons.rat.version} + + + + + + src/test/maxima/special/RealFunctionValidation/MANIFEST.txt + + + src/test/resources/org/apache/commons/math3/random/testData.txt + src/test/resources/org/apache/commons/math3/random/emptyFile.txt + src/test/resources/org/apache/commons/math3/stat/data/PiDigits.txt + src/test/resources/org/apache/commons/math3/stat/data/NumAcc3.txt + src/test/resources/org/apache/commons/math3/stat/data/Lew.txt + src/test/resources/org/apache/commons/math3/stat/data/NumAcc2.txt + src/test/resources/org/apache/commons/math3/stat/data/NumAcc1.txt + src/test/resources/org/apache/commons/math3/stat/data/Lottery.txt + src/test/resources/org/apache/commons/math3/stat/data/NumAcc4.txt + src/test/resources/org/apache/commons/math3/stat/data/Michelso.txt + src/test/resources/org/apache/commons/math3/stat/data/Mavro.txt + src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/issue-1211.bsp + src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-bad-orientation.ply + src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-hole.ply + src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-out-of-plane.ply + src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N-too-close.ply + src/test/resources/org/apache/commons/math3/geometry/euclidean/threed/pentomino-N.ply + + + src/main/resources/assets/org/apache/commons/math3/random/new-joe-kuo-6.1000 + + + src/userguide/resources/references.txt + + + bin/** + .gitignore + .git/** + .checkstyle + .ekstazi/** + + @@ -577,7 +631,12 @@ apache-rat-plugin ${commons.rat.version} - + + src/test/maxima/special/RealFunctionValidation/MANIFEST.txt @@ -685,13 +744,22 @@ org.apache.maven.plugins maven-javadoc-plugin - -header '<script type="text/javascript" src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>' + ${doclint.javadoc.qualifier} --allow-script-in-comments -header '<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/${math.mathjax.version}/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>' + + java8plus + + [1.8,) + + + -Xdoclint:none + + jgit-buildnumber @@ -702,7 +770,7 @@ - ru.concerteza.buildnumber + org.bidib.buildnumber maven-jgit-buildnumber-plugin ${math.jgit.buildnumber.version} @@ -803,4 +871,3 @@ - diff --git a/siteMods/pom.xml b/siteMods/pom.xml index f9c3f80a8..696ebcb90 100644 --- a/siteMods/pom.xml +++ b/siteMods/pom.xml @@ -29,12 +29,12 @@ http://commons.apache.org/math/ jira - http://issues.apache.org/jira/browse/MATH + https://issues.apache.org/jira/browse/MATH scm:svn:http://svn.apache.org/repos/asf/commons/proper/math/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/math/trunk - http://svn.apache.org/viewvc/commons/proper/math/trunk + scm:git:https://gitbox.apache.org/repos/asf/commons-math.git + https://gitbox.apache.org/repos/asf?p=commons-math.git math diff --git a/src/changes/changes.xml b/src/changes/changes.xml index 6901fef9e..a0bd27b97 100644 --- a/src/changes/changes.xml +++ b/src/changes/changes.xml @@ -47,7 +47,7 @@ If the output is not quite correct, check for invisible trailing spaces! - Commons Math Release Notes + Apache Commons Math Release Notes @@ -55,6 +55,7 @@ If the output is not quite correct, check for invisible trailing spaces! Performance improvement for Array2DRowRealMatrix.getSubMatrix() + - + + href="https://commons.apache.org/math/javadocs/api-3.6.1/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.6/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.5/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.4.1/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.4/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.3/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.2/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.1.1/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.1/index.html"/> + href="https://commons.apache.org/math/javadocs/api-3.0/index.html"/> + href="https://commons.apache.org/math/javadocs/api-2.2/index.html"/> + href="https://gitbox.apache.org/repos/asf/commons-math.git"/> + href="https://wiki.apache.org/commons/Math"/> - + @@ -81,10 +81,9 @@ - + - + ]]> diff --git a/src/site/xdoc/developers.xml b/src/site/xdoc/developers.xml index f280a6c97..2679c164f 100644 --- a/src/site/xdoc/developers.xml +++ b/src/site/xdoc/developers.xml @@ -48,11 +48,11 @@
  • Download the Commons Math source code. Follow the instructions under the heading "Repository Checkout" on the - Git at the ASF page. + Git at the ASF page. The git url for the current development sources of Commons Math - is http://git-wip-us.apache.org/repos/asf/commons-math.git + is http://gitbox.apache.org/repos/asf/commons-math.git for anonymous read-only access and - https://apacheid@git-wip-us.apache.org/repos/asf/commons-math.git + https://apacheid@gitbox.apache.org/repos/asf/commons-math.git (where apacheid should be replaced by each committer Apache ID) for committers read-write access.
  • @@ -82,7 +82,7 @@ Setup an account on JIRA and use it to submit patches and identify bugs. Read the - + directions for submitting bugs and search the database to determine if an issue exists or has already been dealt with.

    diff --git a/src/site/xdoc/download_math.xml b/src/site/xdoc/download_math.xml index b574311e4..f19ee2964 100644 --- a/src/site/xdoc/download_math.xml +++ b/src/site/xdoc/download_math.xml @@ -26,15 +26,28 @@ limitations under the License. | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | +======================================================================+ | | - | 1) Re-generate using: mvn commons:download-page | + | 1) Re-generate using: mvn commons-build:download-page | | | | 2) Set the following properties in the component's pom: | - | - commons.componentid (required, alphabetic, lower case) | + | - commons.componentid (required, alphabetic, lower case) | | - commons.release.version (required) | - | - commons.binary.suffix (optional) | + | - commons.release.name (required) | + | - commons.binary.suffix (optional) | | (defaults to "-bin", set to "" for pre-maven2 releases) | + | - commons.release.desc (optional) | + | - commons.release.subdir (optional) | + | - commons.release.hash (optional, lowercase, default sha512) | + | | + | - commons.release.[234].version (conditional) | + | - commons.release.[234].name (conditional) | + | - commons.release.[234].binary.suffix (optional) | + | - commons.release.[234].desc (optional) | + | - commons.release.[234].subdir (optional) | + | - commons.release.[234].hash (optional, lowercase, [sha512])| | | | 3) Example Properties | + | (commons.release.name inherited by parent: | + | ${project.artifactId}-${commons.release.version} | | | | | | math | @@ -46,17 +59,17 @@ limitations under the License. Download Apache Commons Math - Commons Documentation Team + Apache Commons Documentation Team

    We recommend you use a mirror to download our release - builds, but you must verify the integrity of + builds, but you must verify the integrity of the downloaded files using signatures downloaded from our main distribution directories. Recent releases (48 hours) may not yet - be available from the mirrors. + be available from all the mirrors.

    @@ -88,81 +101,86 @@ limitations under the License.

    - The KEYS - link links to the code signing keys used to sign the product. - The PGP link downloads the OpenPGP compatible signature from our main site. - The MD5 link downloads the checksum from the main site. + It is essential that you + verify the integrity + of downloaded files, preferably using the PGP signature (*.asc files); + failing that using the SHA512 hash (*.sha512 checksum files). +

    +

    + The KEYS + file contains the public PGP keys used by Apache Commons developers + to sign releases.

    -
    - - - - - - - - - - - - -
    commons-math3-3.6.1-bin.tar.gzmd5pgp
    commons-math3-3.6.1-bin.zipmd5pgp
    -
    - - - - - - - - - - - - -
    commons-math3-3.6.1-src.tar.gzmd5pgp
    commons-math3-3.6.1-src.zipmd5pgp
    -
    -
    -
    - - - - - - - - - - - - -
    commons-math-2.2.tar.gzmd5pgp
    commons-math-2.2.zipmd5pgp
    -
    - - - - - - - - - - - - -
    commons-math-2.2-src.tar.gzmd5pgp
    commons-math-2.2-src.zipmd5pgp
    -
    -
    -
    -

    - Older releases can be obtained from the archives. -

    - -
    - -
    +
    + + + + + + + + + + + + +
    commons-math3-3.6.2-SNAPSHOT-bin.tar.gzsha512pgp
    commons-math3-3.6.2-SNAPSHOT-bin.zipsha512pgp
    +
    + + + + + + + + + + + + +
    commons-math3-3.6.2-SNAPSHOT-src.tar.gzsha512pgp
    commons-math3-3.6.2-SNAPSHOT-src.zipsha512pgp
    +
    +
    +
    + + + + + + + + + + + + +
    commons-math-2.2.tar.gzsha512pgp
    commons-math-2.2.zipsha512pgp
    +
    + + + + + + + + + + + + +
    commons-math-2.2-src.tar.gzsha512pgp
    commons-math-2.2-src.zipsha512pgp
    +
    +
    +
    +

    + Older releases can be obtained from the archives. +

    + +
    + + diff --git a/src/site/xdoc/issue-tracking.xml b/src/site/xdoc/issue-tracking.xml index 237c4c3ed..40cc29c4a 100644 --- a/src/site/xdoc/issue-tracking.xml +++ b/src/site/xdoc/issue-tracking.xml @@ -26,7 +26,7 @@ limitations under the License. | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | +======================================================================+ | | - | 1) Re-generate using: mvn commons:jira-page | + | 1) Re-generate using: mvn commons-build:jira-page | | | | 2) Set the following properties in the component's pom: | | - commons.jira.id (required, alphabetic, upper case) | @@ -43,35 +43,35 @@ limitations under the License. --> - Commons Math Issue tracking - Commons Documentation Team + Apache Commons Math Issue tracking + Apache Commons Documentation Team -
    +

    - Commons Math uses ASF JIRA for tracking issues. - See the Commons Math JIRA project page. + Apache Commons Math uses ASF JIRA for tracking issues. + See the Apache Commons Math JIRA project page.

    - To use JIRA you may need to create an account + To use JIRA you may need to create an account (if you have previously created/updated Commons issues using Bugzilla an account will have been automatically - created and you can use the Forgot Password + created and you can use the Forgot Password page to get a new password).

    If you would like to report a bug, or raise an enhancement request with - Commons Math please do the following: + Apache Commons Math please do the following:

      -
    1. Search existing open bugs. +
    2. Search existing open bugs. If you find your issue listed then please add a comment with your details.
    3. Search the mailing list archive(s). You may find your issue or idea has already been discussed.
    4. Decide if your issue is a bug or an enhancement.
    5. -
    6. Submit either a bug report - or enhancement request.
    7. +
    8. Submit either a bug report + or enhancement request.

    @@ -80,7 +80,7 @@ limitations under the License.
    • the more information you provide, the better we can help you
    • test cases are vital, particularly for any proposed enhancements
    • -
    • the developers of Commons Math are all unpaid volunteers
    • +
    • the developers of Apache Commons Math are all unpaid volunteers

    @@ -92,9 +92,9 @@ limitations under the License.

    You may also find these links useful:

    diff --git a/src/site/xdoc/mail-lists.xml b/src/site/xdoc/mail-lists.xml index d1f1de8b2..4c123a778 100644 --- a/src/site/xdoc/mail-lists.xml +++ b/src/site/xdoc/mail-lists.xml @@ -26,7 +26,7 @@ limitations under the License. | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates | +======================================================================+ | | - | 1) Re-generate using: mvn commons:mail-page | + | 1) Re-generate using: mvn commons-build:mail-page | | | | 2) Set the following properties in the component's pom: | | - commons.componentid (required, alphabetic, lower case) | @@ -41,14 +41,14 @@ limitations under the License. --> - Commons Math Mailing Lists - Commons Documentation Team + Apache Commons Math Mailing Lists + Apache Commons Documentation Team

    - Commons Math shares mailing lists with all the other + Apache Commons Math shares mailing lists with all the other Commons Components. To make it easier for people to only read messages related to components they are interested in, the convention in Commons is to prefix the subject line of messages with the component's name, @@ -58,24 +58,27 @@ limitations under the License.

    - Questions related to the usage of Commons Math should be posted to the + Questions related to the usage of Apache Commons Math should be posted to the User List.
    The Developer List - is for questions and discussion related to the development of Commons Math. + is for questions and discussion related to the development of Apache Commons Math.
    Please do not cross-post; developers are also subscribed to the user list. +
    + You must be subscribed to post to the mailing lists. Follow the Subscribe links below + to subscribe.

    Note: please don't send patches or attachments to any of the mailing lists. - Patches are best handled via the Issue Tracking system. - Otherwise, please upload the file to a public server and include the URL in the mail. + Patches are best handled via the Issue Tracking system. + Otherwise, please upload the file to a public server and include the URL in the mail.

    -
    +

    - Please prefix the subject line of any messages for Commons Math + Please prefix the subject line of any messages for Apache Commons Math with [math] - thanks!

    @@ -96,7 +99,7 @@ limitations under the License. Commons User List

    - Questions on using Commons Math. + Questions on using Apache Commons Math.

    Subscribe @@ -114,7 +117,7 @@ limitations under the License. Commons Developer List

    - Discussion of development of Commons Math. + Discussion of development of Apache Commons Math.

    Subscribe @@ -185,10 +188,10 @@ limitations under the License. General announcements of Apache project releases.

    - Subscribe - Unsubscribe + Subscribe + Unsubscribe read only - mail-archives.apache.org + mail-archives.apache.org markmail.org
    old.nabble.com
    www.mail-archive.com
    diff --git a/src/test/java/org/apache/commons/math3/special/BesselJTest.java b/src/test/java/org/apache/commons/math3/special/BesselJTest.java index 83ec98225..3f79a99d6 100644 --- a/src/test/java/org/apache/commons/math3/special/BesselJTest.java +++ b/src/test/java/org/apache/commons/math3/special/BesselJTest.java @@ -21,7 +21,6 @@ import org.junit.Assert; import org.junit.Test; /** - * @version $Id$ */ public class BesselJTest { diff --git a/src/userguide/pom.xml b/src/userguide/pom.xml index 1c5ee060a..af5320c65 100644 --- a/src/userguide/pom.xml +++ b/src/userguide/pom.xml @@ -29,40 +29,52 @@ http://commons.apache.org/math/ jira - http://issues.apache.org/jira/browse/MATH + https://issues.apache.org/jira/browse/MATH scm:svn:http://svn.apache.org/repos/asf/commons/proper/math/trunk - scm:svn:https://svn.apache.org/repos/asf/commons/proper/math/trunk - http://svn.apache.org/viewvc/commons/proper/math/trunk + scm:git:https://gitbox.apache.org/repos/asf/commons-math.git + https://gitbox.apache.org/repos/asf?p=commons-math.git UTF-8 UTF-8 - 1.5 - 1.5 + 1.7 + 1.7 java - + + - org.apache.maven.plugins - maven-shade-plugin + maven-assembly-plugin + + + + ${mainclass} + + + + jar-with-dependencies + + ${jarbasename} + false + - package + make-assembly + package - shade + single - - ${artifactId}-uber-${version} - - + + + @@ -87,7 +99,7 @@ org.piccolo2d piccolo2d-extras 3.0 - + org.apache.commons commons-lang3