Added: 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/scripts/test-jar.sh
==============================================================================
--- 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/scripts/test-jar.sh
 (added)
+++ 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/scripts/test-jar.sh
 Tue May 21 21:11:49 2024
@@ -0,0 +1,96 @@
+#!/bin/bash -e
+
+# 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 is a general bash script to test a datasketches-memory-X.jar.
+# This is intended to be used for C/I matrix testing or for quick
+# verification of the output from the assembly process.
+
+#  Required Input Parameters:
+#  \$1 = absolute path of JDK home directory
+#  \$2 = Git Version Tag for this deployment
+#       Example tag for SNAPSHOT         : 1.0.0-SNAPSHOT
+#       Example tag for Release Candidate: 1.0.0-RC1
+#       Example tag for Release          : 1.0.0
+#  \$3 = absolute path of datasketches-memory-X.jar
+#  \$4 = absolute path of project.basedir
+#  For example:  $ <this script>.sh $JAVA_HOME 2.1.0 
target/datasketches-memory-X.jar .
+
+#### Extract JDKHome, Version, TestJar and ProjectBaseDir from input 
parameters ####
+JDKHome=$1
+GitTag=$2
+TestJar=$3
+ProjectBaseDir=$4
+
+#### Setup absolute directory references ####
+ProjectArtifactId="memory"
+ScriptsDir=${ProjectBaseDir}/tools/scripts/
+MemoryMapFile=$ScriptsDir/assets/LoremIpsum.txt
+
+#### Initialise path dependent variables ####
+PackageChecks=target/archive-tmp/checks
+
+#### Move to project directory ####
+cd ${ProjectBaseDir}
+
+#### Use JAVA_HOME to set required executables ####
+if [[ -n "$JDKHome" ]] && [[ -x "${JDKHome}/bin/java" ]];    then 
Java_="${JDKHome}/bin/java";       else echo "No java version could be found."; 
   exit 1; fi
+if [[ -n "$JDKHome" ]] && [[ -x "${JDKHome}/bin/javac" ]];   then 
Javac_="${JDKHome}/bin/javac";     else echo "No javac version could be 
found.";   exit 1; fi
+if [[ -n "$JDKHome" ]] && [[ -x "${JDKHome}/bin/jar" ]];     then 
Jar_="${JDKHome}/bin/jar";         else echo "No jar version could be found.";  
   exit 1; fi
+
+#### Parse java -version into major version number ####
+if [[ "$Java_" ]]; then
+  # This expression extracts the correct major version of the Java runtime.
+  # For older runtime versions, such as 1.8, the leading '1.' is removed.
+  # Adapted from this answer on StackOverflow:
+  # 
https://stackoverflow.com/questions/7334754/correct-way-to-check-java-version-from-bash-script/56243046#56243046
+  JavaVersion=$("$Java_" -version 2>&1 | head -1 | cut -d'"' -f2 | sed 
'/^1\./s///' | cut -d'.' -f1)
+else
+  echo "No version information could be determined from installed JDK."; exit 
1;
+fi
+
+# Exit if Java version too low (< 8) or too high (> 13)
+if [[ $JavaVersion -lt 8 || $JavaVersion -gt 13 ]]; then
+  echo "Java version not supported: " $JavaVersion; exit 1;
+fi
+
+#### Cleanup and setup output directories ####
+echo
+if [ -d "$PackageChecks" ]; then rm -r $PackageChecks; fi
+mkdir -p $PackageChecks
+
+echo "--- RUN JAR CHECKS ---"
+echo
+if [[ $JavaVersion -eq 8 ]]; then
+  ${Javac_} -cp $TestJar -d $PackageChecks $(find ${ScriptsDir/assets} -name 
'*.java')
+  ${Java_} -cp $PackageChecks:$TestJar 
org.apache.datasketches.memory.tools.scripts.CheckMemoryJar $MemoryMapFile
+else
+  ${Javac_} \
+    --add-modules org.apache.datasketches.memory \
+    -p "$TestJar" -d $PackageChecks $(find ${ScriptsDir/assets} -name '*.java')
+
+  ${Java_} \
+    --add-modules org.apache.datasketches.memory \
+    --add-exports java.base/jdk.internal.misc=org.apache.datasketches.memory \
+    --add-exports java.base/jdk.internal.ref=org.apache.datasketches.memory \
+    --add-opens java.base/java.nio=org.apache.datasketches.memory \
+    --add-opens java.base/sun.nio.ch=org.apache.datasketches.memory \
+    -p $TestJar -cp $PackageChecks 
org.apache.datasketches.memory.tools.scripts.CheckMemoryJar $MemoryMapFile
+fi
+echo
+echo "Successfully checked ${TestJar}"

Propchange: 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/scripts/test-jar.sh
------------------------------------------------------------------------------
    svn:executable = *

Added: 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/toolchains.xml
==============================================================================
--- 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/toolchains.xml
 (added)
+++ 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/toolchains.xml
 Tue May 21 21:11:49 2024
@@ -0,0 +1,53 @@
+<?xml version="1.0" encoding="UTF8"?>
+
+<!--
+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.
+-->
+
+<toolchains>
+    <toolchain>
+        <type>jdk</type>
+        <provides>
+            <version>1.8</version>
+            <vendor>openjdk</vendor>
+        </provides>
+        <configuration>
+            <jdkHome>${env.JAVA8_HOME}</jdkHome>
+        </configuration>
+    </toolchain>
+    <toolchain>
+        <type>jdk</type>
+        <provides>
+            <version>8</version>
+            <vendor>openjdk</vendor>
+        </provides>
+        <configuration>
+            <jdkHome>${env.JAVA8_HOME}</jdkHome>
+        </configuration>
+    </toolchain>
+    <toolchain>
+        <type>jdk</type>
+        <provides>
+            <version>11</version>
+            <vendor>openjdk</vendor>
+        </provides>
+        <configuration>
+            <jdkHome>${env.JAVA11_HOME}</jdkHome>
+        </configuration>
+    </toolchain>
+</toolchains>
\ No newline at end of file

Propchange: 
dev/datasketches/memory/2.2.0-RC1/apache-datasketches-memory-2.2.0-src/tools/toolchains.xml
------------------------------------------------------------------------------
    svn:executable = *

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.asc
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.asc
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.asc
 Tue May 21 21:11:49 2024
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCgAdFiEEgt9MkPctV+NsuDVbBfL6j4zUqQIFAmZNBLsACgkQBfL6j4zU
+qQK5vwf/VVqLqtylR52eqfoEeOazBglHrzSI1pWuTF1dk8qalG0UtRCV05k1Lbkd
+yRgzSKChT7wAAd+ftT4GEasyQyuKrIT1ns2QHWQcNiJ9rP2Vj7LFUNnxib/g6fbZ
+B/TFr89/LJspX6TjyN2f9lqSS1sOSzQeddwTRBvl+Qcg9vMdXbHthSgsJBeNE/JL
+UAcZi53b5tFpszUqq9d6QvQJBEUsEIH0lCc4JJBWDVe/DiCBRDC/7eEOgZP2beuX
+NLJE7VZ6r0nU0NLF7MnUAul1Y0xUbjv5na4+phlYavSS+oOgh92AXIwY3K08iGxw
+SJjvL8nTnE2VqL1p2/2DT1wBWEh8dQ==
+=BPLt
+-----END PGP SIGNATURE-----

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.md5
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.md5
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.md5
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+6d9109e48afe91408a9345ff065a21a6
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.sha1
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.sha1
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-javadoc.jar.sha1
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+804e312873d84ee3c794b2d48fdb832bcc8d3de4
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.asc
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.asc
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.asc
 Tue May 21 21:11:49 2024
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCgAdFiEEgt9MkPctV+NsuDVbBfL6j4zUqQIFAmZNBLcACgkQBfL6j4zU
+qQI7hwf+KMhw4wBVvTc5LA/nDtPyhj/D4tfV3/kLRK4J0CrR5oPXxHGi/60Ml0Oc
+lz2zE5XMWgn4+WpQpxrBCnsluBil3+yL/4smTOYSnI0pLhgQ6umqs1UMBjF8DLuv
+gyKzOXz8rF4Pa2Qc2zTWlE9/Nnen2btTpXeLyLd4kj3Lu3sbh7iX9OVytzc4a3aq
+86oLgkeEAnBPHaBwoUtlIzcFL01PCxB+vYAwYMOa+gpkeh8aYiEO4BTKBF0OA7Km
+dwiqP0Z/4qn8JAXB9xZum+k0ryKGsapGMjECZDn/G1EpfjwJhElKn9wwlJXlqNGz
+PcNe/rDSh5ghAXUUQ+YSmkURXoeNDw==
+=f0Ds
+-----END PGP SIGNATURE-----

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.md5
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.md5
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.md5
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+2d7dd4720a2e48d37e14e9ed673a15af
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.sha1
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.sha1
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-sources.jar.sha1
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+59f8a11c74c4b86049bbfce73a118b076f068bc2
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.asc
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.asc
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.asc
 Tue May 21 21:11:49 2024
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCgAdFiEEgt9MkPctV+NsuDVbBfL6j4zUqQIFAmZNBMIACgkQBfL6j4zU
+qQIfRwf9Ghxm3h7beL3aouVU9TtW0L6NGE2yVSkjPR7boxMxQNZyJVwiFyF2WC0f
+DIz1yS6CPMzvJdHZVaAoqiHE+RyoiHWB7XiI6O4Wzxy4qfDKRG8gjK8jOHRSPzh7
+OkW3SyWTbc0LHWYnBqyxQK3SLwBzvLplS6SCAIPQ3vpcndIS34rYvVkFhwwlpCEc
+HJ/8vAUhXfqsgk41+TqwgU7B01VImXyw1xo3zi0Hr2JYWJi6HHsAdVREAVoNLGah
+uKx8uBXgfG0EVf5WjHaqmvsDAB5SifpnwEIEMSeoJKi1aYPdVPWOUcqIrMTGIcWs
+leTZ+Pm7EIFJjiQMNInyKGSi2IYgMQ==
+=xOZL
+-----END PGP SIGNATURE-----

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.md5
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.md5
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.md5
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+3646294b41b015ec04666025935a80ac
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.sha1
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.sha1
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-test-sources.jar.sha1
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+ef879c6603be9c215cc91fe26404e494266a0c2d
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar
==============================================================================
Binary file - no diff available.

Propchange: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.asc
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.asc 
(added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.asc 
Tue May 21 21:11:49 2024
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCgAdFiEEgt9MkPctV+NsuDVbBfL6j4zUqQIFAmZNBL4ACgkQBfL6j4zU
+qQLhSAgAiqD8tLi6plUo6qyLpLcVEXy2qym1orwFSwDz/iJ4VRgHcj30DrO7HadH
+6oXbw4TC+NPezY/3iSDlawNsDuaMCjJvZczzWj6l1rK2BJfbKa8Tdw5o0Zv2vA34
+io95Ipt8IKUBa1lX83jktpZ7ylcqiKH1wloIs7+ZGskMQI/N72ykhmzDSZIY44eM
+bScScXTfJjnZJOIbXpvZWEYre/osAt6ydY9YkW5ZTDZ+pJNfuubmu8Y3nBZdocNJ
+boekWwEXu2sgacuIaRPfMC/Kq2+scq+2n/7FK+KrGFGk4O4ODbFAMiAGJ1RsGJNq
+aTlQis80Ip5gCXOPwFxf7laceD21RQ==
+=on3i
+-----END PGP SIGNATURE-----

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.md5
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.md5 
(added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.md5 
Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+f50346d315189560026e9232ca521a41
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.sha1
==============================================================================
--- 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.sha1
 (added)
+++ 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1-tests.jar.sha1
 Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+0b991211c4956b32c4ae0e8536defb732ff961da
\ No newline at end of file

Added: dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar
==============================================================================
Binary file - no diff available.

Propchange: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.asc
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.asc 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.asc 
Tue May 21 21:11:49 2024
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCgAdFiEEgt9MkPctV+NsuDVbBfL6j4zUqQIFAmZNBJMACgkQBfL6j4zU
+qQJMdwgAmV7/HDoCWoelQWdcMkc7qCM+GGchjxv1loITg5zKu9tJOYxXA+2rKtKY
+ueLz0uchr9udFKhvrDobBCmE0Wy512sVcZJFhqlhphAL9f4ph00AytyhSUoR6gug
+00T9yOSMaHv5+kuDB1HuG7Sre5WEXsw9qBnpdIF6dTzbrA3AS3vUHONy/gd98NNt
+Y26fxN4QhxBOKSwxPpwD/HKfVlxrSEH4+Gw06ahsrD26YQqMlRVqaKLJdn568y48
+QJDowlEveKVsLoxwGVfE7iALSFz/txQAlCCPRQfz+9l2zLGnlu0QDJa0Q5/Bsh7G
+JZRRcUvGljZWF0hNlWaNrvGQLVDEUA==
+=Uisi
+-----END PGP SIGNATURE-----

Added: dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.md5
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.md5 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.md5 
Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+242a53add0173f99a97f099de2d33fa7
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.sha1
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.sha1 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.jar.sha1 
Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+539d684a9f838566601b5368ef8b6af9189bd0d2
\ No newline at end of file

Added: dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom Tue 
May 21 21:11:49 2024
@@ -0,0 +1,544 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/maven-v4_0_0.xsd";>
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache</groupId>
+    <artifactId>apache</artifactId>
+    <version>32</version>
+  </parent>
+
+  <groupId>org.apache.datasketches</groupId>
+  <artifactId>datasketches-memory</artifactId>
+  <version>2.2.1</version>
+  <!-- Required for multi-module project -->
+  <packaging>pom</packaging>
+
+  <name>${project.artifactId}</name>
+  <description>High-performance native memory access.</description>
+  <url>https://datasketches.apache.org/</url>
+  <inceptionYear>2015</inceptionYear>
+
+  <mailingLists>
+    <mailingList>
+      <name>DataSketches Developers</name>
+      <subscribe>[email protected]</subscribe>
+      <unsubscribe>[email protected]</unsubscribe>
+      <post>[email protected]</post>
+      
<archive>https://mail-archives.apache.org/mod_mbox/datasketches-dev</archive>
+    </mailingList>
+    <mailingList>
+      <name>sketches-user</name>
+      <archive>https://groups.google.com/forum/#!forum/sketches-user</archive>
+      <subscribe>mailto:sketches-user%[email protected]</subscribe>
+      
<unsubscribe>mailto:sketches-user%[email protected]</unsubscribe>
+      <post>mailto:[email protected]</post>
+    </mailingList>
+  </mailingLists>
+
+  <scm>
+    
<connection>scm:git:ssh://[email protected]/apache/${project.artifactId}.git</connection>
+    
<developerConnection>scm:git:ssh://[email protected]/apache/${project.artifactId}.git</developerConnection>
+    <url>https://github.com/apache/${project.artifactId}</url>
+    <tag>HEAD</tag>
+  </scm>
+
+  <issueManagement>
+    <!-- <system>jira</system>
+      <url>https://issues.apache.org/jira/browse/DATASKETCHES</url> -->
+    <system>GitHub</system>
+    <url>https://github.com/apache/${project.artifactId}/issues</url>
+  </issueManagement>
+
+  <developers>
+    <developer>
+      <name>The Apache DataSketches Team</name>
+      <email>[email protected]</email>
+      <url>https://datasketches.apache.org</url>
+      <organization>Apache Software Foundation</organization>
+      <organizationUrl>http://www.apache.org</organizationUrl>
+    </developer>
+  </developers>
+
+  <!--
+       NOTE:
+       The datasketches-memory submodule uses the Maven project-aggregation 
feature and does not inherit
+       from this root module as a parent; so that there is no runtime 
dependency on the parent project (root module).
+       As a result, some properties from this POM (including the version) are 
duplicated in the datasketches-memory
+       module for inclusion in the assembled artifacts.  For more information, 
see:
+       
https://maven.apache.org/guides/introduction/introduction-to-the-pom.html#Project_Aggregation
 -->
+
+
+  <properties>
+    <!-- UNIQUE FOR THIS JAVA COMPONENT -->
+    <protobuf-java.version>4.0.0-rc-1</protobuf-java.version>
+    <!-- Used for UTF8 testing -->
+    <zero-allocation-hashing.version>0.16</zero-allocation-hashing.version>
+    <!-- END:UNIQUE FOR THIS JAVA COMPONENT -->
+
+    <!-- Test -->
+    <testng.version>7.5.1</testng.version>
+
+    <!-- System-wide properties -->
+    <maven.version>3.6.3</maven.version>
+    <java.version>8</java.version>
+    <jdk-toolchain.version>8</jdk-toolchain.version>
+    <maven.compiler.source>${java.version}</maven.compiler.source>
+    <maven.compiler.target>${java.version}</maven.compiler.target>
+    <argLine>-Xmx4g -Duser.language=en -Duser.country=US 
-Dfile.encoding=UTF-8</argLine>
+    <charset.encoding>UTF-8</charset.encoding>
+    
<project.build.sourceEncoding>${charset.encoding}</project.build.sourceEncoding>
+    
<project.build.resourceEncoding>${charset.encoding}</project.build.resourceEncoding>
+    
<project.reporting.outputEncoding>${charset.encoding}</project.reporting.outputEncoding>
+
+    <!-- org.codehaus plugins -->
+    <versions-maven-plugin.version>2.16.2</versions-maven-plugin.version>
+    <exec-maven-plugin.version>3.2.0</exec-maven-plugin.version>
+
+    <!--  Maven Plugins -->
+    <maven-assembly-plugin.version>3.7.1</maven-assembly-plugin.version> <!-- 
may override parent -->
+    <maven-compiler-plugin.version>3.13.0</maven-compiler-plugin.version> <!-- 
may override parent -->
+    <maven-deploy-plugin.version>3.1.2</maven-deploy-plugin.version> <!-- may 
override parent -->
+    <maven-enforcer-plugin.version>3.4.1</maven-enforcer-plugin.version> <!-- 
may override parent -->
+    <maven-gpg-plugin.version>3.2.3</maven-gpg-plugin.version> <!-- may 
override parent -->
+    <maven-jar-plugin.version>3.4.1</maven-jar-plugin.version> <!-- may 
override parent -->
+    <maven-javadoc-plugin.version>3.6.3</maven-javadoc-plugin.version> <!-- 
may override parent -->
+    <maven-release-plugin.version>3.0.1</maven-release-plugin.version> <!-- 
may override parent -->
+    
<maven-remote-resources-plugin.version>3.2.0</maven-remote-resources-plugin.version>
 <!-- may override parent -->
+    <maven-source-plugin.version>3.3.1</maven-source-plugin.version> <!-- may 
override parent -->
+    <maven-surefire-plugin.version>3.2.5</maven-surefire-plugin.version> <!-- 
for surefire, failsafe and surefire-report, may override parent-->
+    <maven-toolchains-plugin.version>3.2.0</maven-toolchains-plugin.version>
+    <maven-install-plugin.version>3.0.0-M1</maven-install-plugin.version>
+    <!-- Apache Plugins -->
+    <apache-rat-plugin.version>0.16.1</apache-rat-plugin.version> <!-- may 
override parent -->
+    <!-- org.jacoco Maven Plugins -->
+    <jacoco-maven-plugin.version>0.8.12</jacoco-maven-plugin.version>
+    <!-- org.eluder Maven Plugins -->
+    <coveralls-repo-token></coveralls-repo-token>
+    <coveralls-maven-plugin.version>4.3.0</coveralls-maven-plugin.version>
+    <!-- other -->
+    <lifecycle-mapping.version>1.0.0</lifecycle-mapping.version>
+    <git-commit-id-plugin.version>4.9.10</git-commit-id-plugin.version>
+    <maven.deploy.skip>true</maven.deploy.skip>
+    <maven.install.skip>true</maven.install.skip>
+    <maven.javadoc.skip>true</maven.javadoc.skip>
+  </properties>
+
+  <repositories>
+    <repository>
+      <id>apache.snapshots</id>
+      <name>Apache Snapshot Repository</name>
+      
<url>https://repository.apache.org/content/groups/snapshots/org/apache/datasketches/</url>
+      <releases>
+        <enabled>false</enabled>
+      </releases>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+    <repository>
+      <id>apache</id>
+      <name>Apache Releases Repository</name>
+      
<url>https://repository.apache.org/content/repositories/releases/org/apache/datasketches/</url>
+      <releases>
+        <enabled>true</enabled>
+      </releases>
+      <snapshots>
+        <enabled>false</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+
+  <dependencyManagement>
+    <dependencies>
+      <dependency>
+        <groupId>org.testng</groupId>
+        <artifactId>testng</artifactId>
+        <version>${testng.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <!-- Used for UTF8 testing -->
+        <groupId>com.google.protobuf</groupId>
+        <artifactId>protobuf-java</artifactId>
+        <version>${protobuf-java.version}</version>
+        <scope>test</scope>
+      </dependency>
+      <dependency>
+        <!-- Used for xxHash testing -->
+        <groupId>net.openhft</groupId>
+        <artifactId>zero-allocation-hashing</artifactId>
+        <version>${zero-allocation-hashing.version}</version>
+        <scope>test</scope>
+      </dependency>
+    </dependencies>
+  </dependencyManagement>
+
+  <build>
+    <pluginManagement>
+      <plugins>
+
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>versions-maven-plugin</artifactId>
+          <version>${versions-maven-plugin.version}</version>
+        </plugin>
+
+        <plugin>
+          <!-- We want to deploy the artifacts to a staging location for 
perusal -->
+          <!-- Apache Parent pom: apache-release profile -->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-deploy-plugin</artifactId>
+          <version>${maven-deploy-plugin.version}</version>
+        </plugin>
+
+        <plugin>
+          <!-- Apache Parent pom, pluginManagement-->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-release-plugin</artifactId>
+          <version>${maven-release-plugin.version}</version>
+        </plugin>
+
+        <plugin>
+          <!-- Extends Apache Parent pom, pluginManagement-->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-jar-plugin</artifactId>
+          <version>${maven-jar-plugin.version}</version>
+          <executions>
+            <execution>
+              <id>default-jar</id>
+              <phase>package</phase>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+            <execution>
+              <id>default-test-jar</id>
+              <phase>package</phase>
+              <goals>
+                <goal>test-jar</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+
+        <plugin>
+          <!-- Extends Apache Parent pom, apache-release profile -->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <version>${maven-javadoc-plugin.version}</version>
+          <configuration>
+            <docfilessubdirs>true</docfilessubdirs>
+            <doclint>none</doclint>
+            <jdkToolchain>
+              <version>${jdk-toolchain.version}</version>
+            </jdkToolchain>
+            
<excludePackageNames>org.apache.datasketches.memory.internal</excludePackageNames>
+          </configuration>
+          <executions>
+            <execution>
+              <id>attach-javadocs</id>
+              <phase>package</phase>
+              <goals>
+                <goal>jar</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-enforcer-plugin</artifactId>
+          <version>${maven-enforcer-plugin.version}</version>
+          <executions>
+            <execution>
+              <id>enforce-banned-dependencies</id>
+              <goals>
+                <goal>enforce</goal>
+              </goals>
+              <configuration>
+                <rules>
+                  <requireJavaVersion>
+                    <version>[8,9),[11,12)</version>
+                  </requireJavaVersion>
+                  <requireMavenVersion>
+                    <version>[${maven.version},)</version>
+                  </requireMavenVersion>
+                  <bannedDependencies>
+                    <excludes>
+                      <!--LGPL licensed library-->
+                      <exclude>com.google.code.findbugs:annotations</exclude>
+                    </excludes>
+                  </bannedDependencies>
+                </rules>
+                <fail>true</fail>
+              </configuration>
+            </execution>
+          </executions>
+        </plugin>
+
+        <plugin>
+          <!-- Apache Parent pom, pluginManagement-->
+          <groupId>org.apache.rat</groupId>
+          <artifactId>apache-rat-plugin</artifactId>
+          <version>${apache-rat-plugin.version}</version>
+          <executions>
+            <execution>
+              <phase>verify</phase>
+              <goals>
+                <goal>check</goal>
+              </goals>
+            </execution>
+          </executions>
+          <configuration>
+            <outputDirectory>${project.basedir}/rat</outputDirectory>
+            <consoleOutput>true</consoleOutput>
+            <useDefaultExcludes>true</useDefaultExcludes>
+            <excludes>
+              <exclude>**/*.yaml</exclude>
+              <exclude>**/*.yml</exclude>
+              <exclude>**/toolchains.xml</exclude>
+              <exclude>**/.*</exclude>
+              <exclude>**/.clover/**/*</exclude>
+              <exclude>**/test/resources/**/*.txt</exclude>
+              <exclude>**/test-output/**/*</exclude>
+              <exclude>**/img/**/*.png</exclude>
+              <exclude>**/git.properties</exclude>
+              <exclude>**/scripts/assets/LoremIpsum.txt</exclude>
+              <exclude>LICENSE</exclude>
+              <exclude>NOTICE</exclude>
+            </excludes>
+          </configuration>
+        </plugin>
+
+        <plugin>
+          <!-- Extends Apache Parent pom, apache-release profile -->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-source-plugin</artifactId>
+          <version>${maven-source-plugin.version}</version>
+          <executions>
+            <execution>
+              <id>attach-sources</id>
+              <phase>package</phase>
+              <goals>
+                <goal>jar-no-fork</goal>
+              </goals>
+            </execution>
+            <execution>
+              <id>attach-test-sources</id>
+              <phase>package</phase>
+              <goals>
+                <goal>test-jar-no-fork</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+
+        <plugin>
+          <!-- Apache Parent pom, pluginManagement-->
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <version>${maven-surefire-plugin.version}</version>
+          <configuration>
+            <trimStackTrace>false</trimStackTrace>
+            <useManifestOnlyJar>false</useManifestOnlyJar>
+            <redirectTestOutputToFile>true</redirectTestOutputToFile>
+            <jdkToolchain>
+              <version>${jdk-toolchain.version}</version>
+            </jdkToolchain>
+            
<reportsDirectory>${project.build.directory}/test-output/${maven.build.timestamp}</reportsDirectory>
+          </configuration>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-toolchains-plugin</artifactId>
+          <version>${maven-toolchains-plugin.version}</version>
+          <configuration>
+            <toolchains>
+              <jdk>
+                <version>[8,9),[11,12)</version>
+              </jdk>
+            </toolchains>
+          </configuration>
+          <executions>
+            <execution>
+              <goals><goal>toolchain</goal></goals>
+            </execution>
+          </executions>
+        </plugin>
+
+        <plugin>
+          <!-- Generates code coverage report from website. -->
+          <groupId>org.jacoco</groupId>
+          <artifactId>jacoco-maven-plugin</artifactId>
+          <version>${jacoco-maven-plugin.version}</version>
+          <executions>
+            <execution>
+              <id>default-prepare-agent</id>
+              <goals>
+                <goal>prepare-agent</goal>
+              </goals>
+            </execution>
+          </executions>
+        </plugin>
+
+        <plugin>
+          <!-- Submit code coverage report to Coveralls.io. -->
+          <groupId>org.eluder.coveralls</groupId>
+          <artifactId>coveralls-maven-plugin</artifactId>
+          <version>${coveralls-maven-plugin.version}</version>
+          <configuration>
+            <!--suppress UnresolvedMavenProperty -->
+            <repoToken>${coveralls-repo-token}</repoToken>
+            <!--suppress UnresolvedMavenProperty -->
+            
<jacocoReports>${maven.multiModuleProjectDirectory}/datasketches-memory-java8/target/site/jacoco/jacoco.xml</jacocoReports>
+          </configuration>
+        </plugin>
+
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-compiler-plugin</artifactId>
+          <version>${maven-compiler-plugin.version}</version>
+          <configuration>
+            <jdkToolchain>
+              <version>${jdk-toolchain.version}</version>
+            </jdkToolchain>
+          </configuration>
+        </plugin>
+
+        <plugin>
+          <groupId>org.codehaus.mojo</groupId>
+          <artifactId>exec-maven-plugin</artifactId>
+          <version>${exec-maven-plugin.version}</version>
+        </plugin>
+
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-javadoc-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-enforcer-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.rat</groupId>
+        <artifactId>apache-rat-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-source-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.jacoco</groupId>
+        <artifactId>jacoco-maven-plugin</artifactId>
+      </plugin>
+      <plugin>
+        <groupId>org.eluder.coveralls</groupId>
+        <artifactId>coveralls-maven-plugin</artifactId>
+      </plugin>
+    </plugins>
+  </build>
+
+  <profiles>
+    <!-- Disable source release assembly for 'apache-release' profile.
+             This is performed from a script outside Maven
+    -->
+    <profile>
+      <id>apache-release</id>
+      <build>
+        <plugins>
+          <plugin>
+            <artifactId>maven-assembly-plugin</artifactId>
+            <version>${maven-assembly-plugin.version}</version>
+            <executions>
+              <execution>
+                <id>source-release-assembly</id>
+                <phase>none</phase>
+              </execution>
+            </executions>
+          </plugin>
+        </plugins>
+      </build>
+    </profile>
+
+    <profile>
+      <id>only-eclipse</id>
+      <activation>
+        <property>
+          <name>m2e.version</name>
+        </property>
+      </activation>
+      <build>
+        <pluginManagement>
+          <plugins>
+            <plugin>
+              <groupId>org.apache.maven.plugins</groupId>
+              <artifactId>maven-remote-resources-plugin</artifactId>
+              <version>${maven-remote-resources-plugin.version}</version>
+              <executions>
+                <execution>
+                  <id>process-resource-bundles</id>
+                  <phase>none</phase>
+                </execution>
+              </executions>
+            </plugin>
+          </plugins>
+        </pluginManagement>
+      </build>
+    </profile>
+
+  </profiles>
+
+  <!-- This Maven project is divided into an aggregator project (the root), 
that manages a group of submodules that
+       inherit configuration from this root module.
+       A multi-module project is used to target different version-specific 
features of the Java language APIs.
+       Furthermore, it is a structure that is supported in most IDEs allowing 
minimal disruption to developers that
+       contribute to this project -->
+  <modules>
+    <module>datasketches-memory-java8</module>
+    <module>datasketches-memory-java11</module>
+  </modules>
+
+</project>

Added: dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.asc
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.asc 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.asc 
Tue May 21 21:11:49 2024
@@ -0,0 +1,11 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQEzBAABCgAdFiEEgt9MkPctV+NsuDVbBfL6j4zUqQIFAmZNBK8ACgkQBfL6j4zU
+qQIWsAgAn78gK1fCpcyQwIt3KAAp/eKZOijuvFLRlHerm2nkpu63SycJv+Bof0wt
+PDWJBv6ioNhG18fijESljSMHj2y4XaqXXEQ9P69AoO7AGtpsRKungYyT10fc81Fc
+uTxMdpRWy0oTlqVDicKTkn5TT2j80ZoAgb8/Pgq153UnmI6nIEQBCJvin90otbGC
+GbJC6wnFZ1R7WSBqotsLb+r71pHxDrg/pv4o5EnFrmbPDNUN1LS05CJ/zwh/7g0/
+UHKbuQSduB/SMn7fWBygYKCD+2PLhrABrRkXoia2OMlv72YtZu55VC5gQC5QTsba
+HJ0imk51Q7ex3VjrZ+hn1/Txh9+pTg==
+=Rkk4
+-----END PGP SIGNATURE-----

Added: dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.md5
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.md5 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.md5 
Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+98a682ed0fe7e99f681c1cbd0317b901
\ No newline at end of file

Added: 
dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.sha1
==============================================================================
--- dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.sha1 
(added)
+++ dev/datasketches/memory/2.2.1-RC1/maven/datasketches-memory-2.2.1.pom.sha1 
Tue May 21 21:11:49 2024
@@ -0,0 +1 @@
+826c5777bcd29b9a37132fc10fb53ea08b8e43eb
\ No newline at end of file



---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]


Reply via email to