You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by no...@apache.org on 2021/01/25 10:18:49 UTC

svn commit: r45583 [17/19] - in /dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/l...

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom Mon Jan 25 10:18:46 2021
@@ -0,0 +1,602 @@
+<!--
+  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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.8.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Learning to Rank Package</name>
+  <description>
+    Apache Solr Learning to Rank Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/ltr</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+        <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+        <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-resolver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-epoll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-noop</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.sgr</groupId>
+      <artifactId>s2-geometry-library-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-configuration2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-text</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-asn1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-pkix</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-web</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper-jute</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-hpack</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-http-client-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+    
+        <dependency>
+      <groupId>net.bytebuddy</groupId>
+      <artifactId>byte-buddy</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.mockito</groupId>
+      <artifactId>mockito-core</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.objenesis</groupId>
+      <artifactId>objenesis</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhQACgkQw4/17D/P
+2z7Uhg/+KYP34eiCVQPecXBDrxqjlm50EnWeP0Slkq3daSYFtMW7i2Dt0+XXyDQ3
+6oYTB6b7XgR5YQc8f5aErUXKJyB669MxyVbB+SAuFljJiJtnFTnpG4r3nGgn7yUu
+j+NK1EqyleDUvnr/kA+nAhN6kDfDJWlidvnEG/hjKZuTPkvqRPcZIM+Wbwui8LWH
+m72mfEVQjF1vIdvT3gd+xZ9f1TeSzfGnRygOQ1z60kKV0S4LaiXunTN1Y7YcY3VN
+rVop5VAozjhevfvPDmw9oH4YnvKQIPxtHS4uZkCjUKgx5xLb6Wfu5dzEuzJ5tpq/
+N6JiuxgMw5wIIvPGt7pRxqYeK4zA/Z5YszCnOHBqVitHsqYuRXYSvpZ+YNcVfzUm
+dxz2jz2p3sD0mOxMEP9yQV3+Y7NN/BIpawie3SIp0sxyJRiGCC23LHg1HQ+yetRK
+DDGRqNUh/WrgTlkjJtj+gmVu4C/ge8SXbABlFPq/RvkVraMTqBPGEBTpDaKlVi2/
+ZYqhjearMvBQKq4PhKtDZ3uF0zZXG8EIcGyPYC/iMefhnsTNs1HFdIEX+x3TJgsF
+woYUQj+WJuGhAmWaL9ypD+hAq96m+GTXt15V4PQu/lXeoB9E+Kg8FG+1atGm0aFo
+k6ZxHuwi3CDCzbKJPI1MkcRL4HNYMv33S2Tu6s9RM65GEkH1tRc=
+=+Neh
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+1b30dfb70340aaf160ba1762d9ecdac5
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/8.8.0/solr-ltr-8.8.0.pom.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+745df5d593002da1c3a85958ff9ada1c02bc4e2e
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Mon Jan 25 10:18:46 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>8.8.0</version>
+  <versioning>
+    <versions>
+      <version>8.8.0</version>
+    </versions>
+    <lastUpdated>20210125081445</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+c485d739c077a360742e4adb3b60152c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+a34e1e95c739d142e868b1c486874697683de6d4
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom Mon Jan 25 10:18:46 2021
@@ -0,0 +1,181 @@
+<!--
+  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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.lucene</groupId>
+    <artifactId>lucene-solr-grandparent</artifactId>
+    <version>8.8.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <packaging>pom</packaging>
+  <name>Apache Solr parent POM</name>
+  <description>Apache Solr parent POM</description>
+  <modules>
+    <module>core</module>
+    <module>solrj</module>
+    <module>test-framework</module>
+    <module>contrib</module>
+  </modules>
+  <properties>
+    <module-directory>solr</module-directory>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <issueManagement>
+    <system>JIRA</system>
+    <url>https://issues.apache.org/jira/browse/SOLR</url>
+  </issueManagement>
+  <mailingLists>
+    <mailingList>
+      <name>Solr User List</name>
+      <subscribe>solr-user-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>solr-user-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        https://mail-archives.apache.org/mod_mbox/solr-user/
+      </archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Developer List</name>
+      <subscribe>dev-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>dev-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>https://mail-archives.apache.org/mod_mbox/lucene-dev/</archive>
+    </mailingList>
+    <mailingList>
+      <name>Java Commits List</name>
+      <subscribe>commits-subscribe@lucene.apache.org</subscribe>
+      <unsubscribe>commits-unsubscribe@lucene.apache.org</unsubscribe>
+      <archive>
+        https://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release-local/</url>
+    </repository>
+  </repositories>
+  <build>
+    <pluginManagement>
+      <plugins>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-javadoc-plugin</artifactId>
+          <configuration>
+            <overview/>
+            <windowtitle>${project.name} ${project.version} API (${now.version})</windowtitle>
+            <doctitle>${project.name} ${project.version} API (${now.version})</doctitle>
+          </configuration>
+        </plugin>
+        <plugin>
+          <groupId>org.apache.maven.plugins</groupId>
+          <artifactId>maven-surefire-plugin</artifactId>
+          <configuration>
+            <systemPropertyVariables>
+              <tests.disableHdfs>${tests.disableHdfs}</tests.disableHdfs>
+            </systemPropertyVariables>
+          </configuration>
+        </plugin>
+      </plugins>
+    </pluginManagement>
+    <plugins>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.8.0</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>check</goal>
+            </goals>
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <configuration>
+              <!-- for simplicty with servlet-api and commons-io checks, disable this: -->
+              <failOnUnresolvableSignatures>false</failOnUnresolvableSignatures>
+              <bundledSignatures>
+                <bundledSignature>jdk-unsafe</bundledSignature>
+                <bundledSignature>jdk-deprecated</bundledSignature>
+                <bundledSignature>jdk-non-portable</bundledSignature>
+                <bundledSignature>jdk-reflection</bundledSignature>
+                <bundledSignature>commons-io-unsafe-2.8.0</bundledSignature>
+              </bundledSignatures>
+              <signaturesFiles>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/base.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/servlet-api.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/solr.txt</signaturesFile>
+                <signaturesFile>${top-level}/lucene/tools/forbiddenApis/tests.txt</signaturesFile>
+              </signaturesFiles>
+            </configuration>
+            <goals>
+              <goal>testCheck</goal>
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <systemPropertyVariables>
+            <java.util.logging.config.file>${top-level}/solr/testlogging.properties</java.util.logging.config.file>
+          </systemPropertyVariables>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <profiles>
+    <profile>
+      <id>windows-tests-disableHdfs</id>
+      <activation>
+        <os><family>windows</family></os>
+      </activation>
+      <properties>
+        <tests.disableHdfs>true</tests.disableHdfs>
+      </properties>
+    </profile>
+  </profiles>
+</project>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhUACgkQw4/17D/P
+2z4qKg/9FKqbV+xCGkk5wjh4fAiOzICgbFv4IAZR+08uXxtcnnC4jaKMMKdbuT2s
+Wkas1g/fxMh20u7n8FmIPIwn0ABWjkMeT/kKh2C8seYHJhn3bkv9Vh2TuwKroyYv
+Kh1+8yXTUQ9f7bVBw3zBfvb2hxtFNhGvFqa4AKM1NGV5vg5LnUbNnxipBCi+mKGD
+YoATfCN4MjnokVrT8X0GUipN51OF8f5EusS0LXB2Q4nmScPjUMgCnHDxrHewp3Yx
+6LMcDgvEoOHBAAqMoKvQ4moow+oMyaFMXwoqPdpwpM/GkmsOwDHd9bj3uX7iHakl
+lEHtHg8LcBmCKeUA6tL5E1p9xeOoVNZFmu0CldR8GZ0w5CvVs1o5aU/BpvzvRvpj
+O39phAEgbNgjszgX4NxB9kswudhuXvJyCD0fOV+ga7LcXMtL+chaaanJWdmhtWg9
+wFX4oK4QW7Nxyd6p6x1Q65C0YfaheHx9xACagwyPdlv4WeAcxJf9PQvs2oYxMVME
+/xG6oIABIy45qQwDCp+XQAvjlCTSLpu/KSgyCSJ5sYavFrC7jh9V8xBBFfo0I0SF
+rjWrSl//1hgej8PtMBi0ceHWBFy2NEvBEZrkIxNfJtyWV9OUBqI/X5PnoFd6m070
+ZIHD+LK/rhammXwsReZguyXGUpERnx46medso7JKwcCPdLHQbO0=
+=s+mQ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+32b4e1a08a60fb9b25c64f1cca8cbd76
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/8.8.0/solr-parent-8.8.0.pom.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+b574dcaa5cc5801e0bebf7007a7735cd3779e5f8
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Mon Jan 25 10:18:46 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>8.8.0</version>
+  <versioning>
+    <versions>
+      <version>8.8.0</version>
+    </versions>
+    <lastUpdated>20210125081425</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+3d787282efdf4883b15159af844ef1cc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+5d44d4bac4e839ba32dba1844b75dc3788fe6d1c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhYACgkQw4/17D/P
+2z5N8Q//eMwQKYTuLqDmAtlD5pNMPqJsf7oGkN6lrWoD/k0W5vA7+M0nL5pctaYk
+98VSSRQqV+0ib+3O0YK5Nom3f6AZvL+uzYM3F/uDGgVxW+VicEg4rICUDa5tJd2a
+2q0wmKRymoCDzD6fvLXiyC8dZ4WmB7Pi3CSplGihfVu9i/hpPf/hSYfHeDC+owyN
+5NjnoywMCTIpfI4SHWP+Upt1NHM8RPx29VEGSoGSkwbUIcQFTlaFPYwWc+cKG7Tx
+1hs3fA7EUvkXAm60WFzNsbz/leftE7o+qO/bySxXtP8OtEHTN9lHmHpFowZ30lB2
+LbWS/lkc6TPiG9sHNK1925+ExSebIM5ncVponD2X0iQHDFu5WFAncbDsusLW2uVc
+lvyY4VV9zP5h8LBfJaktgAl0xdnbwh23Pb+PTJX8I4srfYnKnSuyMyGuxDQ/hscC
+i8R3+sOIjn7DclNIBZ7TEXfE0eaQcT0PSVCmYcQ5Uytxf+7aOTZwhPYtkTaUxP12
+teDvsF9v7kdYg13YD/KEQNDmrtGp/e0akpTIDw/oFabtMm0R0v9wEQ9gOlY8B8w9
+93jbKJ0w+J8YHIizftYmZdTlA/sWu+BHPyd8vcZ79ER+Oi7xX/qQoPmzMFzH/PNR
+Pe3IP+TtEnhpJp0lkErdaZ5BWp25x7hSZ1X4Ubb/7dXAQAWc5n0=
+=qrtv
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+4ec82e1ce8f5c4ab2489482a88ae2c92
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-javadoc.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+e5a98c18101c4bc0f797f6b8ac960a79d89a98b1
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhcACgkQw4/17D/P
+2z6E7g/+KgaHzhc/SJiSpt3H5dH/dHXRs1TsQBK34Ze5SroaaCo+ir3FgVsR5wmv
+7jFMHzSgL7mGLMG/cvc2zkdtXAKQ4IBln+V2pfJwL+xPsTa7E6Nrm8M/YX/ezVUF
+aPPQ5Cbii4ijxVu9aVWzRuZM4+FIVf0OrZEtHkknKA5xSndq8SYLWhc1WdImqgXV
+dzBRU2OO6lOR+yzl8gaXDCarW+XMcO0Ut8ijLVHqwZxyGgUuY7qAiHOjFD42C6O1
+JlbPDKszfTcPDNK+FZOtgXduBZ6m0X4/q6yiRIZamtcLV3EeSqEA/foaGQwyVF9d
+dAtKQGigAYTyiFkFwp/zkZwnsjtPbp3Ls4wv7CZnnaiw9iFKsKDOtmQlFfueu/S3
+cRCoHyEMmcu7rliVtFnHO5dmi+OYumMFA1xfx8rBv7SZhhDbeNys96MPpggzWTfX
+7weqY4LP0KHmLVIfbukwmoDe+MoAWdQ464eBKuvW4TIc8agI05nE98VsneITpn0x
+mecHNMokn4r4wnNsz0a5k4aNnYEkCM9pZWK2WufCsYuWsWdOIunj9YdFfF6dWh6a
+IzLmXCL8sQz7hovkerAMRfzmidP3LA1dchff5GLR9I3vidUh6ytyT7q2YOo5fIWl
+R118O8dlGVz2KfccG1JnE5e4KdVxuZjFqpxfisEAhPOa0kynsEE=
+=7UOg
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+7e8a82657cd23cb21ccf725c33c0544d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0-sources.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+5b68bccb1329852459d4ce3302383c1d45244801
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhcACgkQw4/17D/P
+2z7RBA//a1g88KKGedYF/eFGzGfY9AdmYNbt1mYErf5p2GxJcKY4LsPAqUosCgit
+5Q2E2N+YNUKAPj8Oa9tAXyraWY1dw4xVr7KlOg7Do3ft+ME3+gRGC3wXxeQ9FXwc
+oGeQqhpv520KiuqXD+h8jcqb+tLqS2gGLvMH0BDmyI3mRMEUMSVBKRKhRX1sfR71
+2WP1mIxQ7XrpIXivoRqo7gc3lvIfJ9R/36IiE974rJas2LKlICtdkv+xSKHg9VmN
+o1CWMCz8YMJO/u1aQDfj9dKuuGkJv9OaqAq4V77QeqBC32hQdIUjq/SrpvYx3Rjp
+P0dtEJ1bKUMhvfFkPqZ5wunbhJ6o2KmA8IxcMg7Xc7qS731s/B7ciDfoyqX6Psu/
+P03R86Mp1Xz23jTBqHr8ktFeXIodcxBd4F1TaZJibZ66sMHfMu3baWhP6F+qGjd6
+Dx3mQCc9yBqtEB+zc4gCQqBD/uD8ltArmUA25WQeWftqCTkvSkACQ3dTiZXohfsN
+zyFTOmxSw2Lo+XwexBckNAVxEM4Rnj4HbjtSuySxS5bcqNfOJOmtutYFxgEuc2+w
+J4SlqWebSmVRQqx2G0IMWTLwnkY4KMDo21PKVLBw2mYQylWrWgYqjjMrjIEk8hHT
+G3qdhKqGPfYDiVGlX7PEs80lS+ZwxA2+cv4RHXiNSn5FqLj3pyM=
+=oJhL
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+60567b55684a9d911c2fe0d2fd64754f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+956daf90767d5629da7473d35321dba211ee520f
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom Mon Jan 25 10:18:46 2021
@@ -0,0 +1,607 @@
+<!--
+  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/xsd/maven-4.0.0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <parent>
+    <groupId>org.apache.solr</groupId>
+    <artifactId>solr-parent</artifactId>
+    <version>8.8.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-prometheus-exporter</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Prometheus Exporter Package</name>
+  <description>
+    Apache Solr Prometheus Exporter Package
+  </description>
+  <properties>
+    <module-directory>solr/contrib/prometheus-exporter</module-directory>
+    <relative-top-level>../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}</module-path>
+  </properties>
+  <scm>
+    <connection>scm:git:${vc-anonymous-base-url}</connection>
+    <developerConnection>scm:git:${vc-dev-base-url}</developerConnection>
+    <url>${vc-browse-base-url};f=${module-directory}</url>
+  </scm>
+  <dependencies>
+    <dependency>
+      <!-- lucene-test-framework dependency must be declared before lucene-core -->
+      <!-- This dependency cannot be put into solr-parent, because local        -->
+      <!-- dependencies are always ordered before inherited dependencies.       -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+        <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-kuromoji</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-nori</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-analyzers-phonetic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-backward-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-classification</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-expressions</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-grouping</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-highlighter</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-join</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-memory</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-misc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queries</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-queryparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-sandbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial-extras</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-spatial3d</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-suggest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.solr</groupId>
+      <artifactId>solr-solrj</artifactId>
+    </dependency>
+        <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.zafarkhaja</groupId>
+      <artifactId>java-semver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.guava</groupId>
+      <artifactId>guava</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.protobuf</groupId>
+      <artifactId>protobuf-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.google.re2j</groupId>
+      <artifactId>re2j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.jayway.jsonpath</groupId>
+      <artifactId>json-path</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-graphite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jetty9</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-jvm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-buffer</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-handler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-resolver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-epoll</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.netty</groupId>
+      <artifactId>netty-transport-native-unix-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-noop</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.opentracing</groupId>
+      <artifactId>opentracing-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.prometheus</groupId>
+      <artifactId>simpleclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.prometheus</groupId>
+      <artifactId>simpleclient_common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.prometheus</groupId>
+      <artifactId>simpleclient_httpserver</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.sgr</groupId>
+      <artifactId>s2-geometry-library-java</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>javax.servlet</groupId>
+      <artifactId>javax.servlet-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.sourceforge.argparse4j</groupId>
+      <artifactId>argparse4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.thisptr</groupId>
+      <artifactId>jackson-jq</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-configuration2</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-exec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-lang3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-text</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-framework</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.curator</groupId>
+      <artifactId>curator-recipes</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-auth</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.hadoop</groupId>
+      <artifactId>hadoop-hdfs-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpclient</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.httpcomponents</groupId>
+      <artifactId>httpmime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerb-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-asn1</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.kerby</groupId>
+      <artifactId>kerby-pkix</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-1.2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-slf4j-impl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.logging.log4j</groupId>
+      <artifactId>log4j-web</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper-jute</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bitbucket.b_c</groupId>
+      <artifactId>jose4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>commons-compiler</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.janino</groupId>
+      <artifactId>janino</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>stax2-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.woodstox</groupId>
+      <artifactId>woodstox-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-java-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-alpn-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-continuation</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-deploy</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-http</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jmx</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-rewrite</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-security</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-servlets</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-util</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-webapp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-xml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-client</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-common</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-hpack</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-http-client-transport</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty.http2</groupId>
+      <artifactId>http2-server</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.locationtech.spatial4j</groupId>
+      <artifactId>spatial4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ow2.asm</groupId>
+      <artifactId>asm-commons</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.rrd4j</groupId>
+      <artifactId>rrd4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jul-to-slf4j</artifactId>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.xerial.snappy</groupId>
+      <artifactId>snappy-java</artifactId>
+    </dependency>
+    
+    
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhgACgkQw4/17D/P
+2z6KuBAAhKo1gYi2+4hqTxgqKj7qY2KtV6wQ6nhh7CLT1kuD+r96/IHdLpyA40fJ
+q80lixB6EeiW0eokc2egfZTuYBVBGGREMe8LDHRvkwVPXRA96mmTQuM93KiB/QfB
+g+5OI2/sJ55DfuBqQXysL7cRuy0ibDuL2QPx4Bb3XJGjyRHaWV+V5F3pREZCYofq
+M7Mf1iUwn/awm5GDTDEMWRmHOZzNf0xYtXb4ZkfqJcfRF+XWBMTTlPavd68bRd6w
+6zkN2gO3IVkbwCJgk1tG41QV9Oi3It4kebRjMfxh2n2vFtRrvgLiaL6vXeqUiK/z
+VhnPIo+C5veUSqZ5OFgnUDo9+Q36DS4Tw877iM10WPTZjxwZfp1EBwQKBoKGf/Rd
+jSSS/hWojx9EsA9CcrG9QzX4U1cs0WFX/u8wBRNkn4b1XruWqDNiGM3ml/HVcXAG
+GqPQb51YnWNjEL4gYVv4zFuQ3WyvsLYVHrXhbnTnvfzfG0p8mwPCoJPtZ60+4UoM
+pNu2zLQUGvf12VALW45JSEjvdRGUEjt8ZtU9ZqfCKq1q5yDYN/N3/t6nrNijw16M
+u1RVCpHqZse68nH4BXld/ZPPOTp3KNxmsdmFM28dTLQ0IH1k4J1FllxL/RKtMawA
+DOLaJ6qEVpLTx1p94awUIvehT+nRadz81edfqx6ekw9+q3+C/nU=
+=Brek
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+9b429a9707377df9a0b92d03d2cd6752
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/8.8.0/solr-prometheus-exporter-8.8.0.pom.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+649f887540356eaac5a14df09b40f90a5ee3337d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml Mon Jan 25 10:18:46 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-prometheus-exporter</artifactId>
+  <version>8.8.0</version>
+  <versioning>
+    <versions>
+      <version>8.8.0</version>
+    </versions>
+    <lastUpdated>20210125081447</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+43e2d2921e193fa8afd83e3aa988ab8b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+576a494454fce9b1af6a6d3a7928d9765e526c5c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhkACgkQw4/17D/P
+2z5mnw//d0UA/D3KAOqOpGEQX6Pgm2GiaBcZLCzRIbSAdJ0xWTpaQ6vFf6ElT6di
+8zVOZeK/p9yDT3gvM3txbgC6Pe1f6v6XASuCKH89cDI2FgiNkHmBE6b1jqIXBaIE
+lMNG35IG0Neo8Q+92dk12qIbSJy7aqCyEp5vYq6UPl9hq01BDEEV+/XTezPOKJKw
+HP0Clyw3TXDG0YmlEMXB5/dyiL906/4G66LwoZ+iLjG7PccONOo1w8N+QZiOIlyE
+n3/obk64Gj9yhqhE3SquKI1L0jbztOckZvsja71XTNFp/OgjkJUTdAOR8Jv0A5mW
+2hMB+UKOMucHEXBXjtfDJCZHJovHs4J0Y68JSmvSOdX2Wiiri9ubnsaMIfGPp10p
+oHGYsRjvQdh9VTPE3AGLbjawM8nYye2vTZICtrN84EO6ECwl3n3YOBhoauWnOtgl
+7PKItN7qgpWOhEJqnSApHg2qYJ4WHcbwxtnkgbCgQJF2NSB3afs7g8DHtEG27LNA
+tBwAOuB/SA/mQNlxbYE+zaxWWmRR/J8lm0vtCEkvXfDMXCX76FYDHx3gep1/CLg2
+AmyRObB42JFkjdg7f3pMlyQCzMUpuPxs8LrxetZzXt5uCI5pe2gzqHogGgZKro80
+jx46UpLkOIHePryrXJt1GsGg/kfQhMYmt6msogdEfvNJ0LuxOuQ=
+=fe0l
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+9b1bd1b4bb3e5a25ea556fba01c8774d
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-javadoc.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+e53d090e9cb905a6044422d000e098730d637366
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhoACgkQw4/17D/P
+2z4lkhAAjZGleprdGsNeLJEgPamL5zNU6QyuHHJ7sBf0xyVTjBG8kMV5pFMVUV1+
+evYdLWpEJ3GmDHNiSl2HKBd6VH1rlLN7QqCSO+FFDznWXFmUZzYWrSHtKuOrgu10
+YoOcWQ3JVJkZoAWOPy2HXUvolEuapQ7RpfQ2mFySVKy2XCbJgkygm9Br6zppGSg5
+vCRCrjGn+AYHy02J2W51VPZQnipOjlml6byO2+FoPAvx+rRlaFzHZmTMzh+Mv9On
+vJErgdwySTQcX0V/eAPkD9WPUhK5ysifmltRTMFf/EoNdGwlMVFtrm/LsVauI3x7
+UbthY6dnqtFT/7ENPDfcmTtfGZAmiB3qKJhcMCeop16UmcUVBdDf8Y47Oz5alM5m
+JqSaReDB0G0Uscx5935dJaUeeC+xnC97a6XbfTgABwHF6pG2QUXn/Q6yeupceMmq
+OyzMH2orpYfZdFTNNBD8uUYn1+uzBCoBTebcQrE99arUpmMvan8Ikf2za2dCB8Jl
+0p+YExWUxzDaGNP8TlGFZLrIevPxtEbYThmolp5SjhkKVNlZ0tUfWaHdggE5hx8z
+ieOgJpfcAqMBTsBSVhRhp2wSQnOHlIICCJHvJloTg923Sfxhnt7dGCGnT/2cccly
+7uXSP8dBRZn7SzOqcORSyv/ZsbEd3EuiVMNftCUH67WWV3lefKc=
+=PTx+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+99657629942ec107b442c164406213e0
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0-sources.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+cfb8d3e066900acce53fd46b37ecd5991fad1c9c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.asc Mon Jan 25 10:18:46 2021
@@ -0,0 +1,16 @@
+-----BEGIN PGP SIGNATURE-----
+
+iQIzBAABCgAdFiEEz85fu5IMPHRc7uCEw4/17D/P2z4FAmAOfhoACgkQw4/17D/P
+2z6nbA/8CqDyzRFk/IKcXlgwfKkOBVQ2u0UBSYFbMR3enGgkudL3aR+iCefEb95Z
+JI9e+Shp1mUHhv+u0rkiMLdorP0ayHVJ+Onpu9BoX1YfJVP9ylZPg5SZ7/aZWnEI
+cqQFmmdjc0fBNqqUi3ZvsuLrO0mNK/5lWJY6NZY1PZ0MjOAubTgcVTo18cBMRAYc
+Ibm27jCUvGs/3IjCFcqrpvB3Ga+UmZjtDpdITjOh0xZAVrGbWjmHhFCzQxL7jIkx
+PI6ZN3cRFbL3ZDAsNZfGZqhEci0I6dCaAVIjjczXtCIpDkDCyHbHaoqtbokQY9GT
+3Az+D8uxdOdCUhP/fuJDVSJ3cSqidWX9i/+46fwkXkhdi4R8eWshms64J1V0Axwx
+f+XCgQt+YEGjGBllfiYCjxsveqd1jseQeEofy/KL/HRUsrNNc2NGkz9DSMzMQkzw
+jZdWBcNkEWW0QtOyVq5AE/4mfB8ZeQ3uJhxZnc3/mOsBjtIFk4EDRCf5jjfQI/ac
+MEdeOfuOG0r+7/GgmDrd6jB4S3hstyT2ZIDub/0x+dOhXBLiT2baXXLU5EmKf7+Z
+qhJI1dZr7ogoX7B46vg1aMJLrf5vUBj5HT26iFlxb70bDzjcMh6ts0fngRCQhJch
+f4KxgN6aAxmnYA73RndmA+vsr0nmPFZX7gnQ+ron9DUdyH5Rj/U=
+=8Ndj
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.md5 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+742271d7fa0fc3a7521efb2a63026fc3
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC2-revb10659f0fc18b58b90929cfdadde94544d202c4a/solr/maven/org/apache/solr/solr-solrj/8.8.0/solr-solrj-8.8.0.jar.sha1 Mon Jan 25 10:18:46 2021
@@ -0,0 +1 @@
+fad69d9d75ad1a5f43e97a01b35e34cbbfc2926c
\ No newline at end of file