Author: mattjuntunen
Date: Sat Aug 14 18:48:05 2021
New Revision: 49500

Log:
Distribution files for Commons Geometry v1.0 (RC2)

Added:
    dev/commons/geometry/1.0-RC2/
    dev/commons/geometry/1.0-RC2/CONTRIBUTING.md
    dev/commons/geometry/1.0-RC2/HEADER.html
    dev/commons/geometry/1.0-RC2/README.html
    dev/commons/geometry/1.0-RC2/RELEASE-NOTES.txt
    dev/commons/geometry/1.0-RC2/binaries/
    dev/commons/geometry/1.0-RC2/binaries/HEADER.html
    dev/commons/geometry/1.0-RC2/binaries/README.html
    dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz   
(with props)
    dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.asc
    dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.sha512
    dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip   (with 
props)
    dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.asc
    dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.sha512
    dev/commons/geometry/1.0-RC2/source/
    dev/commons/geometry/1.0-RC2/source/HEADER.html
    dev/commons/geometry/1.0-RC2/source/README.html
    dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz   (with 
props)
    dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.asc
    dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.sha512
    dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip   (with 
props)
    dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.asc
    dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.sha512
Removed:
    dev/commons/geometry/1.0-RC1/

Added: dev/commons/geometry/1.0-RC2/CONTRIBUTING.md
==============================================================================
--- dev/commons/geometry/1.0-RC2/CONTRIBUTING.md (added)
+++ dev/commons/geometry/1.0-RC2/CONTRIBUTING.md Sat Aug 14 18:48:05 2021
@@ -0,0 +1,115 @@
+<!---
+ 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.
+-->
+<!---
+ +======================================================================+
+ |****                                                              ****|
+ |****      THIS FILE IS GENERATED BY THE COMMONS BUILD PLUGIN      ****|
+ |****                    DO NOT EDIT DIRECTLY                      ****|
+ |****                                                              ****|
+ +======================================================================+
+ | TEMPLATE FILE: contributing-md-template.md                           |
+ | commons-build-plugin/trunk/src/main/resources/commons-xdoc-templates |
+ +======================================================================+
+ |                                                                      |
+ | 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)             |
+ |                                                                      |
+ | 3) Example Properties                                                |
+ |                                                                      |
+ |  <properties>                                                        |
+ |    <commons.jira.id>MATH</commons.jira.id>                           |
+ |  </properties>                                                       |
+ |                                                                      |
+ +======================================================================+
+--->
+Contributing to Apache Commons Geometry
+======================
+
+You have found a bug or you have an idea for a cool new feature? Contributing 
code is a great way to give something back to
+the open source community. Before you dig right into the code there are a few 
guidelines that we need contributors to
+follow so that we can have a chance of keeping on top of things.
+
+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 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 Geometry'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.
++ 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_ 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. 
`GEOMETRY-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. `GEOMETRY-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 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 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 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 Geometry JIRA project page][jira]
++ [Contributor License Agreement][cla]
++ [General GitHub documentation](https://help.github.com/)
++ [GitHub pull request 
documentation](https://help.github.com/articles/creating-a-pull-request/)
++ [Apache Commons Twitter Account](https://twitter.com/ApacheCommons)
++ `#apache-commons` IRC channel on `irc.freenode.net`
+
+[cla]:https://www.apache.org/licenses/#clas
+[jira]:https://issues.apache.org/jira/browse/GEOMETRY

Added: dev/commons/geometry/1.0-RC2/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-RC2/HEADER.html (added)
+++ dev/commons/geometry/1.0-RC2/HEADER.html Sat Aug 14 18:48:05 2021
@@ -0,0 +1,31 @@
+<!--
+ 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.
+-->
+<h2>Apache Commons Project Distributions</h2>
+
+<p>
+    The most recent source and binary releases for the Apache Commons project 
are available from this
+    directory listing. For older releases, please use the
+    <a href="https://archive.apache.org/dist/commons/";>archives</a>.
+</p>
+
+<h2>Important Notices</h2>
+
+<ul>
+    <li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+    <li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/geometry/1.0-RC2/README.html
==============================================================================
--- dev/commons/geometry/1.0-RC2/README.html (added)
+++ dev/commons/geometry/1.0-RC2/README.html Sat Aug 14 18:48:05 2021
@@ -0,0 +1,66 @@
+<!--
+ 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.
+-->
+<h1>Commons-Geometry v1.0</h1>
+
+<p>This is the 1.0 version of commons-geometry. It is available in both binary 
and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+    The tar files in the distribution use GNU tar extensions
+    and must be untarred with a GNU compatible version of tar. The version
+    of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a 
href="https://commons.apache.org/proper/commons-geometry/";>Commons 
Geometry</a>.</p>
+
+<p>From the Apache Commons Project<br><a 
href="https://commons.apache.org/";>https://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/";>nearest mirror 
site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/";>Go
+        here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+    there will be an accompanying <samp><em>file</em>.asc</samp> signature
+    file in the same directory as the file (binaries/ or source/).  The
+    signing keys can be found in the distribution directory at &lt;<a
+            
HREF="http://www.apache.org/dist/commons/KEYS";><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from 
a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-geometry-1.0-bin.tar.gz.asc
+</pre>
+<p>
\ No newline at end of file

Added: dev/commons/geometry/1.0-RC2/RELEASE-NOTES.txt
==============================================================================
--- dev/commons/geometry/1.0-RC2/RELEASE-NOTES.txt (added)
+++ dev/commons/geometry/1.0-RC2/RELEASE-NOTES.txt Sat Aug 14 18:48:05 2021
@@ -0,0 +1,78 @@
+
+              Apache Commons Geometry 1.0 RELEASE NOTES
+
+The Apache Commons Geometry team is pleased to announce the release of
+commons-geometry-parent-1.0
+
+The Apache Commons Geometry project provides geometric types and utilities.
+
+This is the first major release of Apache Commons Geometry.
+Apache Commons Geometry 1.0 contains the following library modules:
+ commons-geometry-core (requires Java 8+)
+ commons-geometry-euclidean (requires Java 8+)
+ commons-geometry-spherical (requires Java 8+)
+ commons-geometry-io-core (requires Java 8+)
+ commons-geometry-io-euclidean (requires Java 8+)
+
+Changes in this version include:
+
+New features:
+o GEOMETRY-118:  Add coordinate-specific transform methods to 
AffineTransformMatrixXD classes,
+        e.g. "applyX", "applyY", "applyZ".
+o GEOMETRY-95:  Add solid geometry tutorial.
+o GEOMETRY-120:  Add SimpleTriangleMeshBuilder.addFace(int[]) method as 
alternative to
+        addFace(int, int, int).
+o GEOMETRY-117:  Add shear methods to AffineTransformMatrix2D. Thanks to 
Christoph Läubrich.
+o GEOMETRY-119:  Add VectorXD.normalizeOrNull() methods so that callers can 
detect normalization
+        failures without needing to catch an exception.
+o GEOMETRY-115:  Add modules for IO functionality: commons-geometry-io-core,
+        commons-geometry-io-euclidean.
+o GEOMETRY-108:  Add BoundaryList interface and implementation classes.
+
+Fixed Bugs:
+o GEOMETRY-116:  Fix incorrect OSGi headers. Reported by Christoph Läubrich.
+
+Changes:
+o GEOMETRY-138:  Do not use checked exceptions in IO modules.
+o GEOMETRY-13:  Use Norms.EUCLIDEAN from Commons Numbers to compute 3D 
Euclidean norm values.
+o GEOMETRY-126:  Replace VectorXD.linearCombination methods with VectorXD.Sum 
classes. Use
+        Sum class from Commons Numbers for computing internal linear 
combinations.
+o GEOMETRY-124:  Replace DoublePrecisionContext with 
Precision.DoubleEquivalence from
+        Commons Numbers.
+o GEOMETRY-109:  Rename the BoundarySourceXX.from() static factory methods to 
"of" to better
+        match the JDK's Stream.of() method.
+o GEOMETRY-103:  Migrate unit tests to JUnit 5. Thanks to Arturo Bernal.
+
+
+For complete information on Apache Commons Geometry, including instructions on 
how to submit
+        bug reports, patches, or suggestions for improvement, see the Apache 
Commons Geometry
+        website:
+
+https://commons.apache.org/proper/commons-geometry/
+
+
+=============================================================================
+
+              Apache Commons Geometry 1.0-beta1 RELEASE NOTES
+
+The Apache Commons Geometry team is pleased to announce the release of
+Apache Commons Geometry 1.0-beta1
+
+The Apache Commons Geometry project provides geometric types and utilities.
+
+This is a beta release of Apache Commons Geometry. No guarantees are made 
regarding the stability
+of the API or compatibility with future releases.
+
+Apache Commons Geometry 1.0-beta1 contains the following library modules:
+ commons-geometry-core (requires Java 8+)
+ commons-geometry-euclidean (requires Java 8+)
+ commons-geometry-spherical (requires Java 8+)
+ commons-geometry-hull (requires Java 8+)
+ commons-geometry-enclosing (requires Java 8+)
+
+No changes defined in this version.
+
+For complete information on Apache Commons Geometry, including instructions on 
how to submit bug
+reports, patches, or suggestions for improvement, see the Apache Commons 
Geometry website:
+
+https://commons.apache.org/proper/commons-geometry/

Added: dev/commons/geometry/1.0-RC2/binaries/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-RC2/binaries/HEADER.html (added)
+++ dev/commons/geometry/1.0-RC2/binaries/HEADER.html Sat Aug 14 18:48:05 2021
@@ -0,0 +1,31 @@
+<!--
+ 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.
+-->
+<h2>Apache Commons Project Distributions</h2>
+
+<p>
+    The most recent source and binary releases for the Apache Commons project 
are available from this
+    directory listing. For older releases, please use the
+    <a href="https://archive.apache.org/dist/commons/";>archives</a>.
+</p>
+
+<h2>Important Notices</h2>
+
+<ul>
+    <li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+    <li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/geometry/1.0-RC2/binaries/README.html
==============================================================================
--- dev/commons/geometry/1.0-RC2/binaries/README.html (added)
+++ dev/commons/geometry/1.0-RC2/binaries/README.html Sat Aug 14 18:48:05 2021
@@ -0,0 +1,66 @@
+<!--
+ 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.
+-->
+<h1>Commons-Geometry v1.0</h1>
+
+<p>This is the 1.0 version of commons-geometry. It is available in both binary 
and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+    The tar files in the distribution use GNU tar extensions
+    and must be untarred with a GNU compatible version of tar. The version
+    of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a 
href="https://commons.apache.org/proper/commons-geometry/";>Commons 
Geometry</a>.</p>
+
+<p>From the Apache Commons Project<br><a 
href="https://commons.apache.org/";>https://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/";>nearest mirror 
site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/";>Go
+        here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+    there will be an accompanying <samp><em>file</em>.asc</samp> signature
+    file in the same directory as the file (binaries/ or source/).  The
+    signing keys can be found in the distribution directory at &lt;<a
+            
HREF="http://www.apache.org/dist/commons/KEYS";><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from 
a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-geometry-1.0-bin.tar.gz.asc
+</pre>
+<p>
\ No newline at end of file

Added: dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: 
dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.asc
==============================================================================
--- dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.asc 
(added)
+++ dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.asc 
Sat Aug 14 18:48:05 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEXv8cYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87Ptwsa+NEL/izV05K58I4eP3eDqdhbty0l
+l89FR7SlMLSVag3rZZP0dcw2JcV6719VWAXJ4t/CZOuRI2lq6kuyEV7wvul0CW5F
+OoPFEEEJWM6W9xBd3BC0b7hG/05WfERYP60JbhsX6lCDODyy+sok8MQjdp/62V9a
+eUIx99brJ7bU4nFUmUj3L9o2AWOMFl3rfwLT8XnV0oWry3Xq6MKc90V7ZEMf66WC
+fgxNo7Wol7DVi7cFQ/zk+DX0DdNtBcCH21tRyg9iudGOZICBVQyPnbEhdUygsCpw
+UkE7mpo9czR2Z10j6BJEZ9makRc1gfitlGXYm/inFDEigqYRtWJF9KxJd9vpz9js
+onyfRUW9S13yfneS8mIhMPMgr7V3QTqJDe1Wp9Z5w9DxsJMC7BDsu6U+PqnAwlVV
+fnIVfr5aiQ420R5vgMkg9D0WE05JVE4tzjNpMh/A6g0GDu9DeSdV0ODInH9DHWTR
+FhSrRgftXsq17EC2aL7qmTlKNVV/kUlRsZsdTR9uFw==
+=uB9C
+-----END PGP SIGNATURE-----

Added: 
dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.sha512
==============================================================================
--- 
dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.sha512 
(added)
+++ 
dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.tar.gz.sha512 
Sat Aug 14 18:48:05 2021
@@ -0,0 +1 @@
+1c873a4549af86868e9d90989fa8e51887e5eaa08895dc5a6d198e2351253739f3eb66a2be434ba430505f4e2b5cc343443ac1002f352859bac6ccf0af3ebf2f
 *commons-geometry-1.0-bin.tar.gz

Added: dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.asc
==============================================================================
--- dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.asc 
(added)
+++ dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.asc Sat 
Aug 14 18:48:05 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEXv8gYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaRSoL/04iRuZkCUeoLo7l9EYsL9lS
+8+z4kn9TgNyqcb9ta3VFAN75mxqHuOoY8c/ucVEnlfv98Oz9TImvS8S6i7+d5LE3
+x9tQv2UL/7csSToypEWIhyFH61QMkw1lTiIUkOhbDpU85YoHDEbrG/Vuug6f3Vlq
++fCBRF2WFXOXGwICz52FLwbz6fpX1zh/wHDBoXQAqyV/bQUDTAtcmZ+SEox69dWw
+PTXdky/Gt1zxUmfPCP1SVbhzsJUUFIeKOkOQ+wzD7w+xwGHETxiz0XuqyUVSZWZn
+ZBNQJIGr3PSeWi3+qF8tyJZePDOIKTcwyOTHgsWwp5tzQWd4anw3KD81nm0F07KE
+KyviSIfHJ+SpHyOncmHXdAJPMSvbbzmZETs5gwR7ZAblAhDTKygY53Hkmd1YXsBp
+8sQPhultF2jb8QlUxRa5RrsrxVBdDe2Xgj5pZuIR5kck0Db89vENROQbRC1BNOyn
+KVYM0Nu+oB2vWNwSi301kEilZVQyI0jH7uPt9nT/4w==
+=DRgM
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.sha512 
(added)
+++ dev/commons/geometry/1.0-RC2/binaries/commons-geometry-1.0-bin.zip.sha512 
Sat Aug 14 18:48:05 2021
@@ -0,0 +1 @@
+6894d2a0d6c28650c4d1710aa0e6bf9ea9a7c284d4a9f7c1dbbe1548d867561dd575a2cfa71d2ad5ee0b4c0bde56af38ad3f77a9e94179a0d626a532c871671f
 *commons-geometry-1.0-bin.zip

Added: dev/commons/geometry/1.0-RC2/source/HEADER.html
==============================================================================
--- dev/commons/geometry/1.0-RC2/source/HEADER.html (added)
+++ dev/commons/geometry/1.0-RC2/source/HEADER.html Sat Aug 14 18:48:05 2021
@@ -0,0 +1,31 @@
+<!--
+ 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.
+-->
+<h2>Apache Commons Project Distributions</h2>
+
+<p>
+    The most recent source and binary releases for the Apache Commons project 
are available from this
+    directory listing. For older releases, please use the
+    <a href="https://archive.apache.org/dist/commons/";>archives</a>.
+</p>
+
+<h2>Important Notices</h2>
+
+<ul>
+    <li><a href="#mirrors">Download from your nearest mirror site!</a></li>
+    <li><a href="#sig">PGP/GPG Signatures</a></li>
+</ul>
+

Added: dev/commons/geometry/1.0-RC2/source/README.html
==============================================================================
--- dev/commons/geometry/1.0-RC2/source/README.html (added)
+++ dev/commons/geometry/1.0-RC2/source/README.html Sat Aug 14 18:48:05 2021
@@ -0,0 +1,66 @@
+<!--
+ 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.
+-->
+<h1>Commons-Geometry v1.0</h1>
+
+<p>This is the 1.0 version of commons-geometry. It is available in both binary 
and source distributions.</p>
+
+
+<p><font color="red" size="+2">Note:</font>
+    The tar files in the distribution use GNU tar extensions
+    and must be untarred with a GNU compatible version of tar. The version
+    of tar on Solaris and Mac OS X will not work with these files</p>
+
+<a name="changes"><h2>Changes</h2></a>
+
+<p>The changes in this release are detailed in the release notes.</p>
+
+<p>Thank you for using <a 
href="https://commons.apache.org/proper/commons-geometry/";>Commons 
Geometry</a>.</p>
+
+<p>From the Apache Commons Project<br><a 
href="https://commons.apache.org/";>https://commons.apache.org/</a></p>
+
+<h2><a name="mirrors">Download from your
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/";>nearest mirror 
site!</a></a></h2>
+
+<p>
+    Do not download from www.apache.org.  Please use a mirror site
+    to help us save apache.org bandwidth.
+    <a href="http://www.apache.org/dyn/closer.cgi/commons/";>Go
+        here to find your nearest mirror.</a>
+</p>
+
+<a name="sig"><h2>Signatures</h2></a>
+
+<p>Many of the files have been digitally signed using GnuPG.  If so,
+    there will be an accompanying <samp><em>file</em>.asc</samp> signature
+    file in the same directory as the file (binaries/ or source/).  The
+    signing keys can be found in the distribution directory at &lt;<a
+            
HREF="http://www.apache.org/dist/commons/KEYS";><samp>http://www.apache.org/dist/commons/KEYS</samp></a>&gt;.</p>
+
+<p><b>Always download the KEYS file directly from the Apache site, never from 
a mirror site.</b></p>
+
+
+<pre>Always test available signatures, <i>e.g.</i>,
+$ pgpk -a KEYS
+$ pgpv commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ pgp -ka KEYS
+$ pgp commons-geometry-1.0-bin.tar.gz.asc
+or,
+$ gpg --import KEYS
+$ gpg --verify commons-geometry-1.0-bin.tar.gz.asc
+</pre>
+<p>
\ No newline at end of file

Added: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.asc
==============================================================================
--- dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.asc 
(added)
+++ dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.asc Sat 
Aug 14 18:48:05 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEXv8kYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87Ptwsa0QMMAIXIex6gqpmICkcp2UuIqF2A
+Ydzx1BVEgkpqWU/kGq8/U1rl/K0tWQVy50D0CjUCOewot+RI3bQwO0wtkd1VFuWy
+QDLSuKfmUathoEcyKWRjsj0SgQ9s+qYgrUDj7lUbdo+HocyBPD/LZYcjenwdRveK
+BEOa5JdqeWxNdsu1twsO8EFY7F1psRS/2gzWnv0HJPSjxSGxmielUnH+Xmpx8Hgx
+lCmxiKgQgwir5eg38r87LnpReTNSSWVBzmJ4wxAb5LszEdbtC5mSmiCC70p9kKp/
+wCRvvU093hkwxvVlRgPeSSbMtYnWDb6xBTcorz8hQnVlckX2HbjuLT2bGBgn0ENS
+bFrMXtCWji61i/LIxBB/abwIUnt9bLI11cq5B0smtoXYcP8/XwYoE9wOS4Ga9lJR
+uu6LtxXWiH6jcQKRE49l6IEcjPjnTpUSP2qUbiFtRVHq4UzPiMx+oOnaFN10r449
+uzvAYjO1U77xqNoBy5GMoxASLJHfP6S0W6mo2vpKrQ==
+=g3N0
+-----END PGP SIGNATURE-----

Added: 
dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.sha512 
(added)
+++ dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.tar.gz.sha512 
Sat Aug 14 18:48:05 2021
@@ -0,0 +1 @@
+0c9346c3620eed5b716f4438d606c2144a9c5cd4f873c58b7cb02e6dd3c32a2ea271879eadbab2feb0759542206b421afd849229ff1cb7faa114a92f5b63c9bc
 *commons-geometry-1.0-src.tar.gz

Added: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.asc
==============================================================================
--- dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.asc (added)
+++ dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.asc Sat 
Aug 14 18:48:05 2021
@@ -0,0 +1,14 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQHMBAABCgA2FiEEfdU67+3xw9OStR6+NG9Pzs+3CxoFAmEXv8kYHG1hdHRqdW50
+dW5lbkBhcGFjaGUub3JnAAoJEDRvT87PtwsaOswMALaWOyX1CBTkso4+sS8Kmb0M
+uInX+aHSFevcxeAxZpDWIS+geQxt5LUBopTaISoPp/E1BcP0rCG4c3cGBAunk3w9
+HT31rqnT17mIYNJjO4kATjscHZtR8/SYHAJCX/3cDX40vZmZuEIuf264grK+TOyj
+Nru8JmnlmhdLz+owxvjLXXoUoJuJGFS2BdDZSLdRd2Z0A5l0y4M2DU3vTuVJmPM2
+sDKSelh1y9CZaYIuKAcZQ/PDpSAuXNwh4/PBhsPLwTbeVhvoH75Jxig6sXB6VngY
+KkSYCxCmMITLynNpg94WxUykOWRzB1Sva24PTNe7FTn84FhikOrLHSJT681GID2U
+eVT7BGhU6q6bajSwh0NNpXOvrtCEfLObZDhNaLL8G8hE3u/uQAiGvrbaqQ+/kZco
+hgPfJslEgtbZnW2wLOFpUejkGDwmjPlwlpYlbVAo0Dc3z/hhAP6j95jV4JZCEo8n
+mHTQ6bGIZ3SDP4loxu/CKd8dmdTcnzMQsdKWyudtYw==
+=qP6a
+-----END PGP SIGNATURE-----

Added: dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.sha512
==============================================================================
--- dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.sha512 
(added)
+++ dev/commons/geometry/1.0-RC2/source/commons-geometry-1.0-src.zip.sha512 Sat 
Aug 14 18:48:05 2021
@@ -0,0 +1 @@
+8b3fbac1b9e8ef663c83bfe8fdabd20bcd1f8e6a7ec053fdee8320b35a1bd7678958b91742d017d5861b4bbc3db7a70a76e5bada75189f56d9bfd36e8ca2849f
 *commons-geometry-1.0-src.zip


Reply via email to