You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ji...@apache.org on 2019/03/08 11:20:27 UTC

svn commit: r32824 [17/18] - in /dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979: ./ 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.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom Fri Mar  8 11:20:25 2019
@@ -0,0 +1,550 @@
+<!--
+  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.0.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.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.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</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-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</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-jvm</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-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.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.zookeeper</groupId>
+      <artifactId>zookeeper</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.noggit</groupId>
+      <artifactId>noggit</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.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</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>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.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2VAAoJEPmME8+loTXYjLkP/2pmDXZzTwUbI91olNEHksLS
+A4gjBIxMPKbAptSX0AQGUa0lbxKpYQLEfJibol6gyTSPrTQXsjTIgGrWmjuuL+3y
+jh967tDUR6PMUxV/ZU0IHjZmwCTJbY9HIA3F+t43lTkUXouydq3aOyLK90rnUnlC
+X6RiTIb07s5wyFbGKQjcVFxIpzqKwhvNN3eiFTB63gidRHwncepsaeLbkqPdneOk
+u9lHS5w3aYBZtoJk0m6FhWRdocZZVjbEFbRJlxoSBY9e9SGA4qc5sgCSXunu3NiL
+Qsi+u44PxEqsgWOrcKwGGEDgo0E0rUhfsAv8TVdvO1Rvaf0yyTa09CJnkzF6DSHO
+JJjZ0AT3ipgHZFm6MNOAvCwt+et1zlD/6CTKjl0mk9IQ6b2PIFtTycuvd2LZt3JS
+mrhHWm6NKNUey1ioGDv2OeSfPd2NEh00GJMpXDDO8HflE6rWhUUu/1sDtacRfYbA
+qKfINcyRwkMK0Y+e50uDU1UnUWGdjVuOkvOrBahegpma4zJVjVJKQIKGCE1OcWSm
+1KkzmB7iwXuhAoeNlK39mAfSAEXUwihIon3cx6mbGRplcLkxla6816Go5k7CuEaU
+qPngUSJ7xWlFGASn+wIP+5XKgOx19G4cDPnD9mNDsByQMy4GhGzxtJ21hPDnMDIU
+AT9jpkwp9HmGvHQV5UMX
+=GCFl
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+ac9995d38f8d39ff4f29740ba8b33b95
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/8.0.0/solr-ltr-8.0.0.pom.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+938aed6f10765b7ee1f9fb1bab4d84e4025329e0
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml Fri Mar  8 11:20:25 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-ltr</artifactId>
+  <version>8.0.0</version>
+  <versioning>
+    <versions>
+      <version>8.0.0</version>
+    </versions>
+    <lastUpdated>20190308110946</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+f396c8a38e85108d11a02ba91264b834
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+0818953e4b9b1e5e191e63c33be2a87135ebb7e4
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom Fri Mar  8 11:20:25 2019
@@ -0,0 +1,186 @@
+<!--
+  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.0.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>
+        http://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>http://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>
+        http://mail-archives.apache.org/mod_mbox/lucene-java-commits/
+      </archive>
+    </mailingList>
+  </mailingLists>
+  <inceptionYear>2006</inceptionYear>
+  <repositories>
+    <repository>
+      <id>maven-restlet</id>
+      <name>Public online Restlet repository</name>
+      <url>http://maven.restlet.org</url>
+    </repository>
+    <repository>
+      <id>releases.cloudera.com</id>
+      <name>Cloudera Releases</name>
+      <url>https://repository.cloudera.com/artifactory/libs-release</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.5</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.5</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.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2WAAoJEPmME8+loTXYrXIP/17JXbmVZ08kjLSItVGhaxT2
+3g0PfSIliN+SQG8dnmpnVRh5X8J0dHv9nRYgfycpSFbMGDLUKvE0uSmjNIm49372
+vSCF+N/eSblsAd7CbpPksudLOZlsdrvIxGKWKN91/865S6fZfr4kNMydPU70A8mu
+r2W4e1uzMKsN7qcT5DEApJWONc1SVfnu3uzWqg/O0hIQuRX3rJps4hQPJIwgLGm7
+NWUMNuikx0tECGR93TbgYSH7/TL11aOgGY+fFnayRPXM7c6LHSXTOVLD0neDzCEf
+kYVQ6wtkFABWCedAgqK9mjgfBbeGZilbqTOae3H+DiEDeccLPFmj9pcT9Gnl4dmb
+LytxaxG1V5FSx8Hl7W0+7RunSmKTufWesD44YGnFH7q0qvO6SIRqj0CW34GyPOEn
+jlhc3AT3aBDgg73pQ1tUKj6Vqcn18ZIOvbHcZYtsMhiSQemI1kk7sl1lYNmJT1sD
+cjA7t4dfB6OEeyAL8rRM6rt5udkaojUzD1hAxTgagEwIlQQfpGeEhO5hbzr5b3rN
+ziPFWCIVuNKnSkaGCgXbRfNIafxMsye1geF4jiP5N6FCOG3ClAcEkJS/91QSoq5u
+X0hBkombS7iqi0ybCiSxCc+xloaaS0a7xhrva6YbDe6bRyQbF9LyrFgzx9end7U3
+9O55keQVUSxGQpv4DWSK
+=Gv3i
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+3b593f9df560500e0cf04784fe08d09c
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/8.0.0/solr-parent-8.0.0.pom.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+b7796275330066d70b1038ef57ef303af9f8aa38
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml Fri Mar  8 11:20:25 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-parent</artifactId>
+  <version>8.0.0</version>
+  <versioning>
+    <versions>
+      <version>8.0.0</version>
+    </versions>
+    <lastUpdated>20190308110905</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+151c4b2b0077f643a33a944ecd5d8c29
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+455497f7b88f0c95dec5e358d95f67b083785458
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2WAAoJEPmME8+loTXYSKoP/iFztJ3QH7Rly+cfE1BdMzcg
+bEEOPY6Hm3/WuZxdSK1XmLsabQpXWXnF3J4kt9enKR1Ah+D1/QteSFhxh9pyeIP7
+S7iHiSF5fa/llcWdXiz0sGHs49RYThv1sqkrtAllTTBO5273yj0upKwaEpegSnr1
+ZfoRF5LH6oL5gJz91wBnac1cNhhPTWNmtMGb65xPNLQRtc/ZX5QiJrMjseMDAfoK
+slPk/Tugt+7AVEdK8eqhAvQQbkwvrnXDddyLoSzegwNdOrDjBl+FzDVmlAB04rXO
+rnCNhW0NBuRc2Ek6VgwnNjpp7HGKhCt3wo6xcIQStQDFx9pFwq+D3KUFynhgloB4
+6nEQK4M5Y38BWgZj0tQEArD2gUcnmYis5mky2Ko5+FD9DEkDx8+U4voOciS1eU0p
+a/L7WnD1xJvNW/fI4w5lUbK39yJO2kdxkIg9sT8B1RppW2+Iw2LzPF4Tqg/ZXB7R
+JAnmbXiQTcUvXAtm//fQg8le/uv0YnylY5guuJkGydds1xsbuu7zzYmdP4rLQtFN
+eeE0V4h6UjsvzMS5YJMipMwl9H7BBpuPdivoqQLq9utxtpdjyP8XUnAcDeyH4LyG
+P/rSWqnmL0EK3cbU1XcIQ8J8QOCOO/+PGIGyyMPWu/Whcys7qzlt9WLO+Qiy6c5k
+hcW7tvdAQPSmIho5iXvp
+=I7Au
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+8f81057d628fb714647fb492abe51754
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-javadoc.jar.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+103c5c296d81f0940529eecd86f2181b0a7a7b29
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2XAAoJEPmME8+loTXYhgYP/A4XgZuV0WtjttDP6nrwFZd7
+0LgioK0qWqOfPjaaua45sV1AWVCMawotOb+MkL5fJNjf26lIeJ5cQfWdbPQjajZj
+1O/01seMsoIQ2uXeyawaJvwj0YFznKgu6P11PEyPiFt3pTgm09mWO5yjVg5wSk73
+ci3Il4I5BniM/+NxxOSoIuTFrrAF06AIbeqbs6ZkCJ6/KajWbCHRscZqjayZc25I
+BEj7MzYOTBTbEY4yeyrT1e4zSW1jqvPoCgENWqa3V5hzLS9bjv2/5zcgeAh2C7A8
+A/d3g+f8RvahE6PWfFHgez1o81e7QSChbd0HbMd/Ph9FeONEXSyzzV6CfbPzUALV
+R+z6JGMEga740CJuVGCxRt1uBlp32+wlflPAvMpiHU5F/bTn1TR/OKv9KyFxomQl
+fMdXw6kURFHpv/CEbnqe8J0Pfe4rjWiublrc22fWDmYxBaESnWGHXqOEtFibDhUl
+DHl7w6EV/RcwrQn9b/ux5uxORig013oefdWmhrULGcS2jiakvwtS/Qf8YwC3v+Et
+8EitT1vAa6GydkG6lBFX+yFbNIqvdj7jKwhenCcCrF6z2zSQpR3178BXgy7jX63u
+nRSeZWsonlHmx6SoFe6Hf5xzVCcM/qGeKMqSmPeXLqwFhEcdcH+SjbjPkOpifmR5
+yMtwnPyYlUxyEVpH6/B2
+=b7DW
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+b5d1c566384fb7e3c03f422788e25821
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0-sources.jar.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+36e6aac53e438f49de663d2db6cd0c7d38944f39
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2YAAoJEPmME8+loTXYkosQAJE/ehVEYJLYj1AGCLo57id6
+39ohWGVyayVVrMucvaw3a7/vNOqNqWaRqwDBEvfSi9NL2DMZHh28vtRVOBbmyC9V
+VHZ+IjpCAQ0Qcg5jRUOu914SlDBGB7nSBDFLjrE7eTRBmmWdw0rfqInegxClzUNp
+SMBb+kWfNAOwpA2rbBmfSMHgf3iSTLqeKSOR+wGLjPpokUBP/rCCEaxM/6wCSpi5
+yxcHmutDmLQmDGDZYyuk7xHqJu9SHeLWa79/hgcQXAyWwDXXkDSCeQvt9LlF84jL
+MBI9Pwa0E9nyijCPnTar9dYi2drkjS5aU0AoQ9igjX7tEVtU9R1h2FKS6kAMZOaU
+HImVLQe65QeooW8nkq8PzC0bGD6G9wW6eDQCusgibu00vI6NnZItAf01wXRcNHgi
+8S/rH7YA0E44Q9R0VNCyJnpkYO9/C+jdyW9UUaMbwZTihMS4ubsjSB9OL5fj0OZB
+Ilu34sjRWHklXJFOLZtM5oKSDqsn3m5VLCAL8uio1JUD6m19DMyc8n9BDxY20oEO
+8W5nm1P/G0TPW8OlG9Gu3YAAzkObjhzwUayfSzdgEru/DY6FlHTrNveDDXuB3ThK
+Y5GFNIFORusJffxX/FNhcRZJFluDDGxCvfYf4Wcd20EAGQy1uyAju+r+mPDt8qNK
+nVA+G1bP3c7GjGruVyRq
+=zd83
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+ed26b9231720ec59762d83d2891916fe
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.jar.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+23b631bc4428b00660ca47a3ee6795d9da146eb0
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom Fri Mar  8 11:20:25 2019
@@ -0,0 +1,555 @@
+<!--
+  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.0.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.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.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</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-fileupload</groupId>
+      <artifactId>commons-fileupload</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-lang</groupId>
+      <artifactId>commons-lang</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>dom4j</groupId>
+      <artifactId>dom4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>info.ganglia.gmetric4j</groupId>
+      <artifactId>gmetric4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>io.dropwizard.metrics</groupId>
+      <artifactId>metrics-ganglia</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-jvm</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>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-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.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.zookeeper</groupId>
+      <artifactId>zookeeper</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.noggit</groupId>
+      <artifactId>noggit</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.restlet.jee</groupId>
+      <artifactId>org.restlet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.restlet.jee</groupId>
+      <artifactId>org.restlet.ext.servlet</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>
+    
+    
+  </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.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2YAAoJEPmME8+loTXYyFUP/RR8tE12AkoYOcRXD5nw3GVr
+B4lmUI6nnciTLk+Ji0ZTGiO1wXMz/5SnRkdDySf/GcNFstyvfHoYJiGTh9ZSJt6H
+6b537vFS2qRoDjUavg5VGGnKtElB07SpT2FtZjz+mzFDjleKIQCBRV4DYgXm11Ij
+f4t+1qXWPDPZ9zE+SJkFmB2ZRO7KZsCyU0Qfb9LX7xjjkyvKHac16es8iqnpOFg/
+QHr8vZGe7BbAE1vHHCuKIB4FwBFpZc8hI0DxbNk8t9aDUcMjvz5xinG0IaBQcR4/
+mqlngRKgWAbq/hU1mwKMYDr/BKk+p9t2izl7+3aBZErNt/4FcBlMBbLXFxlX3jEX
+n3aXcoaDF0EX/c8zFTTulPZ1UKh3DMXR+RLqZt9t/B1QZ+9lh9V4gwNbD7RGQSYz
+4e69ItCWl4AGgEpcILKAlNR0/Qutwp2jxGpZjN3TdC5ttj7sB+AiMwXGsIcd6zFi
+0wtdJK9YjGSNSMnURASxakLJQgVtU3ekbAbd31DxUVrxVMYLSuWcfZ3noPKFGbzk
+DGnWLPLp4CKPP0vyV0t1+eEskNcTLhZrd2wVLbhHxPhDd5oTEdKRZryvT7ZasZSf
+sFgOaqM+ojVbF6ZMig0SSbEieWuGwz91w5BwFaafGpp+HIc7LNNfQtBAPaGe+RQL
+ua2KzW8PKwAED1N1CMzI
+=U5LU
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+142e72a8a521a818ec3989e729685054
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/8.0.0/solr-prometheus-exporter-8.0.0.pom.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+9e26bfaab1f31581e5eacc1bf23ca19409b74344
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml Fri Mar  8 11:20:25 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-prometheus-exporter</artifactId>
+  <version>8.0.0</version>
+  <versioning>
+    <versions>
+      <version>8.0.0</version>
+    </versions>
+    <lastUpdated>20190308110949</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+498497b308830073df1f1d04ac038464
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+2b5b69fad9411aa1353297985fe194a744aec1d2
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2ZAAoJEPmME8+loTXYDdAP/29Zt/hX2SYhsMjbUVY5dLyD
+senP+T8oP3ic8M00wbALrlo1LQANAyrq519fjmhUhqnnxhQKk4ZWRUz4ZDNPaHcg
+Xeb0vV12ylhU//2hxV8WUitwc1WkI7bgIrJEUk/OnRhTGGSvev+bqRFtRoq2o+UG
+mOgJTdhiRPW/mLxBnSu62ovHIn1CwtRpDvrhHipm4oG1iRTbeKghVssUozcpy6UG
+EMJTYzlABrxV8NHxtevesFav2sVGVrAjgN+C4eGle18/mtiGoSTBRW1HQexy+l7i
+8+JbXxROoE4NYHOOX40mZTQr+KKoJA0AM9kikW8vYjIb7rgegbo2HrWCieWhAbfx
+yT6pCVVgtDiyLAR6ktrQJIevEj+lPPavMtZ4jQU9pKXF57KHDPPMwgLMesFPlwqh
+ZIDurDLTa9ISul6ZUOlFcZrxvMEhp9M18p+L6YMNJCjUvpaKJ+bmYOkZi5HzhVQs
+Jin8kPU/1f+Mk7jYSaWiYE2odvrGRzCYj4HvIYKEZAyzWYBeGCvk28m1iWi8kJKp
+soJ0kZex2R3nbxCPQxqpb2JiXhAiaTG/oAmfbO2biVoaIH57lCU+Jovv84FZ9qmV
+jRppBcPszJ6WH4Bb9yyqQjGHtNhNaW0D9HSmFYEhGs/cR1ZIyWf4Wh4BVtwiyQKS
+HfS/7TVFjcVcdsT9hsgK
+=qigY
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+cf2c558bb986a7046041a3f34ee111b8
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-javadoc.jar.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+973648ee760a0e29c0f5860ebd6649abcc2c6bed
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2ZAAoJEPmME8+loTXYvGIQAI9LZPCSnAE4B1ZkgXwuuZit
+Zd3WiQ893UVrWlMTZK111TlHCX6Q+u/YCtdxwro3OYE5yUMaCAxH/9kxwZ7/sO/N
+zth6N79Ko/JY5G+iI34oCcI4jaCoDFAGsJTqxg2J6dCrlWf1ucKu65+S+Fhyxah3
+Moa2Znx+F5Mtsg1WbVUCqqkABJ9SuEQ33lLGVo2unJKmq65Uoy8zQ+JBZmqxNsFK
+SBfy0JIUe54S/Hw0jfHvmDyIB+hvZhRY/sBDwj8Cxl3N7g/972BrJBR+juKWAYzu
+gxUyVAr/m7ODKqxH3OUvSjAhp3DsxNrvZUxNdAxxJcpjWDSB4gqTtcxgMEVyMx4B
+x83x8D5MFpHN9pJRqjYex0+NAhVIb1IG0o57oTdEnFZIbteyiK8Q1vmKsuf/z7jj
+0lDCAbhC17R/Nii3kAiY18zaEr5Qm6vJn9IRaB4/3JO0T1lmv3V5KMKtdkbC1PF6
+3Y8vIAJykdkp2tLMGAIiZm4gaYlMO+3pycVW5H/ekVyCaboU7uoF4Lxsl6QcWfMO
+u9MbxBOTgXJYYCFUfVOPMd6mRrfG70EWfGVDXFFbTHqAMEEx1ERWcqsXER8LckeS
+eeGJg4/HMJNjibaKxGChzg39W30Wjoa5UZUnOMZofOL1566Pe74Ye4xQl37LaEvn
+j29FOxYKqpueAffYX/UL
+=umc5
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+b5f56748442d7e0fafdf11c73a7a8bd9
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0-sources.jar.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+a9d5607767853408bd1bd1b6d0fc8c18489443ef
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2aAAoJEPmME8+loTXYmCIP/1S3wT5v4o2TBiOCGCzdIkqV
+65mUOM9/U5i7CWckR1R8Hx5oNeh0AYQpcT0whViXsDa7jj/HjLusT8BhMrDcSFbs
+yEPzWaPfCdAFCgdr7y1Ue3VWUpNmcKS2g4d0wOntEa/SHoVRH4w1SLMdZnzNKxBX
+ZRqwQbDftcxQZPMyeeU22awBv3KBQ2kDWrKzQhSNADhJFAYRzjWozOHMUBzWf0jd
+bHukC1ICijhGPiQvFaQHtZy0MXscRxn11ILpfHRArsAFcvM8zh3ooY8+qRokZv6U
+4T4mmr7rfy84z8imsU9T8QPSp4kiu3IgyMyuRXx+CjyASWmn82M2IFPB9hJhpS6B
+Q4tEdOyC//08ySHTtfg91tiVR8s8nt+yC8/h1NBtV9Y9nqogCluceJFZL15M91ZR
+bXyZ4xIzT9HIY0Nf7dBATGlJjggt4DjF9Rhs1K8bFlum4fiLyEI4SF88xErVzEMc
+Jt/LN/ovAH07qBvLM64SQNIcSBPRakkKnGAmU7DbEYH2rWx0NGMcWiifr3F707Bd
+fMDI2YX4bbCd/b5ZJTPoSVcRebyS52G+MonZ7du3JCpkJLt8hC6UqVKEkmF2u+CG
+wtBbRCQWGEVjAIqVsQcblF7nDzjR+cvM9mJaoFKedMBWdGdXgfrQGLAakDO64TMf
+yCjR9TF0gjj0rFAsCPdb
+=GP98
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.md5 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+9c176b5c3f3e7fbe1fc1ba55eab75c93
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.jar.sha1 Fri Mar  8 11:20:25 2019
@@ -0,0 +1 @@
+a6adc1dc179574d29f40017818292cfa222d3721
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.pom (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.pom Fri Mar  8 11:20:25 2019
@@ -0,0 +1,161 @@
+<!--
+  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.0.0</version>
+    <relativePath>../../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Solrj</name>
+  <description>Apache Solr Solrj</description>
+  <properties>
+    <module-directory>solr/solrj</module-directory>
+    <relative-top-level>../../../../..</relative-top-level>
+    <module-path>${relative-top-level}/${module-directory}/src/java</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>
+      <groupId>commons-io</groupId>
+      <artifactId>commons-io</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-math3</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.zookeeper</groupId>
+      <artifactId>zookeeper</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-client</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-util</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.noggit</groupId>
+      <artifactId>noggit</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>jcl-over-slf4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}</sourceDirectory>
+    <testSourceDirectory/>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- Tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <skip>true</skip> <!-- This skips test compilation - tests are run from solr-solrj-tests module -->
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.pom.asc (added)
+++ dev/lucene/lucene-solr-8.0.0-RC4-rev2ae4746365c1ee72a0047ced7610b2096e438979/solr/maven/org/apache/solr/solr-solrj/8.0.0/solr-solrj-8.0.0.pom.asc Fri Mar  8 11:20:25 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcgk2aAAoJEPmME8+loTXYDxUP/iazQtgYPBPrvNoaDS+R9HD0
+frQ45/IF7xsAu9ojeM5zYKhgYxOyRVCHTw1bWEVKdS7KkPUrQNrKaB1s2R/Mbqr/
+AN0tapsmZFoQOW6WEZj7Z+BNWpK62r84NvY+9LxzlZ91XyncdEVT07wL1xgPAMRH
+QnTbJoqPhm+1Iwk0rOesai9hdTuOkeS+fdqvpkk7BK0hCtlt1F/F0p7zPgO7oClt
+MNsvjh2oFSBIbN+Gvev0jtmCC/r5FYZHclYfdJ9NRpWYYuXmKc9WdnKrkdSIieYX
+X16QHG29aWHu2EwUWYdk1jR/jxj/mxg9duW+qyiWfvG2ds7GKyPh1nxVPniTKfNX
+MaXA6/YAgGvIPqtmi9xatBQgR+cDzIt6aJumlcc7UwQ4MQqDZolD7CY9E12mcqK8
+dG6a/AIuUtuwQShSCQcN4YIPnk3wVTwSQGvXAVr186hMcd4H3GujxitxJMmhCnXk
+IBlIwZJYzSVjDCGCw9WrzoyaGf2kaJIWE9vL1U5HtETf0a2WwTIbvLjPWFpKvoR4
+g0YeYAXrU8CQbLDcHn7vqbdwyJP5Ta6sFo0M4isEGnnN85MsBjN4Y6XNcZniqs6+
+OneedrmYT9C0ISJr1k+YlGg+hPH8yMhTZmp0tXOAbyA0+E3HguUZl20mV8dS3UN5
+HpwWVfyc+SLcOoHP8SWv
+=GPT1
+-----END PGP SIGNATURE-----