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/02/05 08:31:46 UTC

svn commit: r32337 [17/18] - in /dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5: ./ 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-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom Tue Feb  5 08:31:44 2019
@@ -0,0 +1,503 @@
+<!--
+  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>7.7.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.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-configuration</groupId>
+      <artifactId>commons-configuration</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>joda-time</groupId>
+      <artifactId>joda-time</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-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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</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.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.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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-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.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-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxpAAoJEPmME8+loTXYhqkP/R8WmfS7Swx4ytcTnHQf61MW
+SsbT3dzPhx4yakLHpmW7ypJJjLn57dn4PoGuQgq7mA2t0MXlP2p+WXFAVn7mcWNK
+YufW/6O1oafq7B9u2dYugYCi0iPoTF1ZTrRGUYyNxzH6Jqkg8oUN7IK12iAGeeWt
+dWQSboUWhEAH/p6+ks4o0zUZle0uRU4o8VRfr5AYTdbQnfN36pu2wc0XueRgwbNM
+HWmgJciYQOsVUrZXxxVwsooACQS/dqEuK+kNyiZQcQI+o1a1Y3DFdq/IATkEIIZT
+SK7XbxD4TdGo6kZsmzul0IMHe00RaKoZeTdAL2hn6t9uWhgaqqBhsWu3mWRSRmL8
+6e0a8KGqLJqYQlcWq4Xoq87fb/NLV+yN7cQm33e05b7zGSDk62T34xL+aj33jOdu
+kHNk34GrNqppNtJRqHz9Kw8U0aF/9N+XkynKRXIrab0T4HoYH1zoOh33btsb33Dw
+7HUri2y17rsEuHO+DZltscGs3EZ1M5BXcnooS468swftqNuCPpU3Zb8LcAn2DrFK
+t6cdaSPRz5nJl7sP6VAqwgfiFdCRJrtY00Z/51qBAIdQTNlA4i8H9F4/VLUG0sgi
+DzX0hK724jJXmPX7t2GogPrNSV9zagIhVhwd4i06vcjuX1Rv4SZ+0TYGtp+TTfC3
+pnhcJffUX/TvBXZhU8Z7
+=Rxgy
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+87e11a920f08cc54f0adb46aac7ea130
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/7.7.0/solr-prometheus-exporter-7.7.0.pom.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+2a2d35e8bde72c200d8a711eab6a2abf8e406e09
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml Tue Feb  5 08:31:44 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-prometheus-exporter</artifactId>
+  <version>7.7.0</version>
+  <versioning>
+    <versions>
+      <version>7.7.0</version>
+    </versions>
+    <lastUpdated>20190204222726</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+09e542c9213481f14a20985b1fabe864
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-prometheus-exporter/maven-metadata.xml.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+67243e9a1a9c06862159f2714e45bd162fe5a0f6
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxpAAoJEPmME8+loTXYDUwQAJb+woU+dD55K0PP+ilYP6wI
+dloRwcDUD6JNi4WckMA7gRZe4vaSruynhcomwqWyAxQ2hPbuAE+d8OsbXmt3yB5y
+0+cOKW1N09PoAFUnBYFnELX0wa+aS5UZlhsVblXRJ65iofPSjS970QDqE7+YNML4
+rSN77gkzK1KEZqRMU710XHO1ajXNlzrUCb5JxFHn5EbGBW3t9V2a3kqeCdNmUJsQ
+WvS5mF+bQFwnXgYCi+uA0k7+aMmU0/R8ikH76zJ7wd03t0RT6vTyp6tfzoLtzWof
+ssGpLk6XmJ1NxtfvjrAsJhGj1MQOKNxmYHSo3gurW1aPOz9Y+tXgP7rXq6OlgRMj
+IINXxNvp3lW/T/rdnSfuqApIqLUEMwyH2HezzVkzjVNuH0xa9l4Xyo47Bo8IxIZu
+RLhKFIMXpAnfyDscmXwvthMB3HBrvx5MFjcAoMQcYCrDQNqAx5gnPjaDwxQ0QJ1h
+ZnKSMHGnK3W5Tx5RPoJZpVSO0/XDXsxcU+nAaO++nF/1wbTrXNkzI29VCWzWZQh+
+3WkaviwTXJcV0AbuDBDw34juTrp/ZEVzuXetYHIaQgdYOUBhmHmiPbUebryrgV8m
+w1Ls5Z1lnA1v70DIdFASOm6FruNGDVqSJN69meft62LvGSljPCGyjDGV2IS00QXD
+fZ9G/Uy8m/s6P0VsHFaY
+=mahc
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+cc98ac7f86fe13ea51afa5d64b766e0c
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-javadoc.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+315f00f0e5c5b47788853e7c6291bac3464f5c3c
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxqAAoJEPmME8+loTXYEDEQALXNOA6tRa5hvHDkt1i+rLtr
+KQ9h30Smc9EU++nR94tHRaacOGW/bwTeBrSqG4Ahdp+dRc0uBs0pPNg3H1Bru8Jo
+bPSJ7FMb4IrRtftPOwg9xF8VQ8GSRqHC1/tDpuA/cTtIhG1IdP8Ya9egJhSg05d4
+exp1mDGX2FRkcffyWEjE9hZs5jEh+YauauhQTp+g9CIxR4+eElRBwUss73yf2BLe
+oQ7d+0sRWwHGggsck+UbFT4asAqGji1gADNq+pveuyKS59d8iXEhDzkVCMmCLXfx
+Qriy5HLMPNbNHN6czt/bv63gNacs76sK+HjF2gu6Vyo1m+eFlLPUE2/txEVmSio8
+10Lo4bwy03rCZDgVcbeRXG0wku8C8PmAkJF2dEP4I8kjDZqa6D8/KDbvBCb/cguQ
+Y2JKXMw98E5DdstP9ftPmBjaCcG63fBn3DwKwlJ/0ZZDEun20zAwNE4H6UyAQUJX
+dBoEEufFec50ilUT6blNfGPAJnTYgTDTY49uFVswCnnZlGAiR/5OiC/81IgiaJZo
+XavwR7xUOMZldIbpYYMHnuEyP2Kf/XZUIQdLVkZPW0NBtGticrGE1VuMPJDYTFTt
+Q8ukpyGyfiHNiF6o1sdfGaLpe292SKOSrghtMbVETQjQGPCt+LVNSh0cjAGFfwVR
+54D1dmDCb92mdFMz1ExP
+=ILPO
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+74b3da4b48549fb244d184ee0cfd887e
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0-sources.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+a1a3a7e7e81cfe5b92ce863b746793e51a58f39d
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxrAAoJEPmME8+loTXYTUUP/38DpD/jg+fBIE3IXhxOCnBw
+GeIjxIdBfAUfsuWEFI4JKNa0OlA75/+rovOVPqUVpn0w6gEGrKnVes87sM2PnsRj
+yq+N6sCFD67axYWV3q3ZEseeHxYGFiZCiPGLhHG0o1aWmTTtj9So+k2fCcj2QDIX
+mne8sJF6iwp0ZvQWzEEE7r5Cdwpa5RlXJMP8HQ8JrAn/NytLtlyMs0dOFrKMj4XI
+StoMgbtSPeY8csPixZbpsPs4IoemQAJTMWGPan9gvWaSuYUMIHLei9NKNXbMkgcm
+bhaakBDOiSxmmMMbzgGR5tvOj4JUH1RS3XG3psTWqmfQcxU9vD2BNOe3/T1EsLtN
+E4/TGaiNb3ImNL3cas0V2Bz1PJPXqsxBPqsQl19CSITtfGtKdnKYPOZTRiqpAVLH
+KsrKOWHgnFCETOVveDm7JOr8EFQX3NNDa9jAa5t8GQB6aZ3Mwh8JIimGWTpFxtY3
+QhC9y0HJHZB5sClAQMG8kcm6dVSgrRiTSJI+BXsRq2rdBzlLnyOj91y6Y9woDbMI
+p/UUVasBZrBmqs+OPOW7QvwUokLEHUQ8FjIJYWfHjueerNq7WdolqAsWyPbahgbg
+gxnFDzOHxg2uMlOYpnVuEXY4siWqii8Y4xWl7NfrmvR/FdjZqlFMlL29ynUOspkF
+y/tBE7l6u7RELYAXTkQa
+=2hBo
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+d15feb8256e6269d5e9781e64781db58
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+98c12bdf80bb28c460f2fa63084f4c4910b3f9bc
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom Tue Feb  5 08:31:44 2019
@@ -0,0 +1,121 @@
+<!--
+  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>7.7.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.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-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxrAAoJEPmME8+loTXYzMQQAKdMWSMKBVjlLc4Zk4ZzIs8I
+EnOPBs17xH4DP9AHsGSTTSJ07JmtkIYsVG5l8bfVnEXyyKGg1b/92tbI4uCcsPFy
+0YM9Yx25eNjV+lLeAyvyVxIqvpMTboGx1t8rQ/N4EyEzUbQBI1Vs7S2qoVUvzFna
+j0im4cvw22aDFA1iKtIJXT51qOD3agkjbIhtKxmIp5jeSHtb67RsNoYcmNUddIlg
+YwFSs8rnQIAaJjG6hyaCR4ALanNjkOW1ehbiQPrKUeY4HncqrguQNW2T9tev1JrK
+8jhHklQBheeCSVbyvSfJuQnnmzOrUzfP9E8Bh/W0aA61JlfG4XbZTGnvEbtxBzFY
+PfHUeR4EMQmksQqKdTpvyuF5vd3x9PKeahR2hu7mTOf5u2Uzy8zF1/DyiU2W3REL
+tGggrgazcfRGG/AOpT4LdwOBDoBSrvdorRrPwafoOOlZVEgCOOuwmPovFnbnYsRd
+S+gr5wVQPN3d5uw86zt14eGDXySjCQlQWfML1Lnv/vd5QfV1Yir+ddnOIWTDw0sa
+opxdKMwycfOBcVSiA+Po3bSnUEzpolUS/eEdomgNVpM7/FjVfjRYLg9p0gMJorkH
+nF6m2oncvzPcToy6kc+JB7Z1MLf9kmriLz4OvPMH6IVXqhm1nnpfdmnbQc+F9IYy
+bQJzE+CJgCL4kouvoBrU
+=/C5g
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+1307ab703e48368dcc8b54a8dadf4a21
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/7.7.0/solr-solrj-7.7.0.pom.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+73b39a4d106cfda85ba277ab9bfd85ac11982f9b
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml Tue Feb  5 08:31:44 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-solrj</artifactId>
+  <version>7.7.0</version>
+  <versioning>
+    <versions>
+      <version>7.7.0</version>
+    </versions>
+    <lastUpdated>20190204222647</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+4e3eab3df59e0f1e44bab0f3af178898
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-solrj/maven-metadata.xml.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+69a19b5f070d24dd96b5a66618a0e9a83e3472a9
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxsAAoJEPmME8+loTXY+CIP+wfi8ZlLoNwr28AGPALFUseg
+KlPh5F99OlUt4ctpk1DDBPzTYWKN4hSE2PTLJB8cwHWPeqPq1mSqhvxn57nc4l2Z
+woB+FVbCAB8jB7jLAvV2cqH1dsF7u+dAQ4Pnc9S9Ffen1UeE72cYJBMHu+P7woo5
+zo//2WCXEzIkd16DjI4SCu8FEf73Kmoyhy+l5ThzGcDnlJ4uLb7ha802CGFcqKCZ
++HCJubjiucrE+hBgGxDoWtz/KxxYQ6SRJYSnfd+Ucplymkmj2QQ5cGTYvR+L209f
+YNggc6accz5dd0xGHxLD5GPuh4tzVwSz+9qFc9epmlWSVc+5WYWQwfD0HD6TadEU
+Fav7ClUP4jQpScGpugqiFRHL2FQUtMvrJVRhQokPhxutMuf+G7I9NlEgj9e8kUJh
+tyxc7xGf0Z0QSaRaakxOYeLmetLJ4dhjVMcsZi2WgURRmWdqVp3z/Nbe65+HfChw
+zmnDPipG1YXSivrNc/+XD62sONwWzwvqtuvO0JprMXn73ypZUAcDDp+htCPibz+y
+LFy5gwCSyQ46Y6q1WLxRRS95BU9AQ7TV3GHtpq0//sVMNWJ7OcFK2CcgsizybUBz
+zM+8ZM9FdGLuWT8HA0raxZ0LDSKW4SsxX0emAn1QpLrSYlYh3Td0sJaCe/uFRJCj
+9SXL3D30pcPSEP/m/xbF
+=bIWB
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+eb58618fd5a32a16dbe18367eb354993
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-javadoc.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+7bdec40fce37f93ee2bad4c06f7ca914a2d612c1
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxsAAoJEPmME8+loTXYN9gQALGUzQIqdrdlkJLcPpNoK7zS
+OJBSCAObuq0vpo1bsBSmF195RatGw2CflXvfPc6KCLlQ5TFZbR4Y6R0V0I9xsKzj
+iOZlcv2pBFykinAJK6Qg3nEhhhtYXkqpAd94btXhkIQTii4Y6dPe2bm5wio+uQtJ
+0ANx+w2WUBYAn6+2JP235xEdvyB5QUh2D66X0rPmVqSDxYtX6lhLiEwlkx/VLUHv
+DsIWGOeVnWE9tQ0KaoRah53jJ8cGMyMyrRbGEklkXlBNebD4+WBIAvfStrQb7Bw3
+k0dxghgZyPWbqdKZrU86r7ycM4+wPLqo8jz1rlMOAbASlNaTcMfCUlaCeYJIti0x
+o52V8sgO0sAc2frEMr2bS4bG7xBrUSD6vt1VEiROds9TxeNzhvKlwuwTUyxhUsAO
+BfWINZ+2NmqPw/5U/vJYzcArFtrLj0b0NMEIHbn1Jh1iWF2hhYkiuPJslry3sywS
+y5nYChvygXqEGfi+bW911R73MfmWTEXE+AaUdlbTe+SMhXu0NYfCpAFSqbsdSAIC
+gdNyAJktOqjpLRko0Aiodxfhl43WLRPrWOV9NWuVC9czTPhpmS03CUgsQCmWV2Tr
+/jTsa9cOx9j+rplIaa2i348Ac/icvAghHsmW+FZoJTqUnGWPWdR3xLmrbngYq2Dn
+h3Z9D//sXI0mNSk06CMH
+=imAJ
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+81832b524e97e8b3dfb8d7ec8ead2053
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0-sources.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+f156c53059afdda3b572cfc91eba439602dfa777
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxtAAoJEPmME8+loTXY8LwP/1lIW/5i9CL7/inQDO5Hct6d
+flAh86UQkWGk8T2EHA+fY5v+kbV46YIG/EluzPniJT1DUyi2IGyIRyOFYaUfjSMG
+T2uEw5Jf+HJpJqCIJMudj4wvuHotSWjOmo1jT93uhg08VJxvoK5Hl4fVzsMgvkb3
+qorNZlWRzd2GrZQeG8DCLicdkkJCF4H54MtGc5w2pCsBBDldVNkLJBuaBRlsLdMx
+HiADshy+PpRYSsUmVN0j2ZIaxbZ/xMpVx3/1tUSAs/TFQkq4cG1uAIcc0JJ2OF24
+LJSxc4VUocqiSe9eKzFACX2lLZhmQxbhHG9aUGsOgcYtqQFgo4+Gvk/qhirltVqp
+p4vrj0rHwDPIDRG87nBgS0KNh5QaWip8H49UHZAoMwo8xl3usp3Rhcy0/viQd/b1
+4gbl4aZyq8nhC0TmPqYhA1HibtImpYhIf0K6tm0oB/833eFGSe0729ZdBfboZUeG
+oxMYq/4IktD8OXYCoddIB2TK/hLIeFqT2UUvIQRDnnhJiK8m3ptzRKHa9mbNEuzn
+CaU/01y2v1Nq+lSX3ESNOHczI1FPl3Bn3+FK/t+JyaT/kiR5iTTwupGTt2Qxumc7
+ZFWDNjeTfXSndnfrCq43T3Oz9um+U4FgkkgVKhEgZzm29x921e6CiGF6UqWXFYpg
+RKdeJhOw0/N+A8G7wBfr
+=xhcN
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+6ee1deec0ae5d7a940f92f051352f790
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+086bbff83569a467658b9e10b646e56d72c33ea8
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom Tue Feb  5 08:31:44 2019
@@ -0,0 +1,522 @@
+<!--
+  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>7.7.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Test Framework</name>
+  <description>Apache Solr Test Framework</description>
+  <properties>
+    <module-directory>solr/test-framework</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>
+    <!-- These dependencies are compile scope because this is a test framework. -->
+    <dependency>
+      <!-- lucene-test-framework dependency must come before lucene-core -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+    </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.lucene</groupId>
+      <artifactId>lucene-test-framework</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.carrotsearch.randomizedtesting</groupId>
+      <artifactId>junit4-ant</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>randomizedtesting-runner</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.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-configuration</groupId>
+      <artifactId>commons-configuration</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>joda-time</groupId>
+      <artifactId>joda-time</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</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.ant</groupId>
+      <artifactId>ant</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-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</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.htrace</groupId>
+      <artifactId>htrace-core</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.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.jackson</groupId>
+      <artifactId>jackson-core-asl</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.jackson</groupId>
+      <artifactId>jackson-mapper-asl</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-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.hamcrest</groupId>
+      <artifactId>hamcrest-core</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>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+       <plugin>
+        <groupId>de.thetaphi</groupId>
+        <artifactId>forbiddenapis</artifactId>
+        <executions>
+          <execution>
+            <id>solr-shared-check-forbidden-apis</id>
+            <phase>none</phase> <!-- Block inherited execution -->
+          </execution>
+          <execution>
+            <id>solr-shared-test-check-forbidden-apis</id>
+            <goals>
+              <goal>check</goal> <!-- NOT testCheck -->
+            </goals>
+          </execution>
+        </executions>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxtAAoJEPmME8+loTXY4hAP/A63ruwRAZQyCwp4qWoCJhM6
+CQ70GYozz0ZmRYYV0+jzkf96Wjw4YUS7WqgA844DXi5MngzGWjPKbr8EdKNFsTLR
+cYpMilL2f1nS0Q56Sr2aVSl52QUUC1fBHXtLnkNh29TJD31ZXXcN2fTIQeEMd1xp
+NnGJi5yFRQmqazz8BCuBslfCDV+EuDpTQr12xERi2Xyh74mXot6uiCJwkLXr3uSP
+16UOtKMTLOm8X3CHJ4NngWClOZsy7U7uL/4njbGX7iwOu3jbdHUJivCWRDlN8Ynr
+JxFDi68nLtLvMhVUlvQt/fEMb9ACJSVeAv0uni0lS/60NvkQzX4j6+NW4tyNvsJW
+Eu4LtGaQPyku3B/tAxgYiZvGOYRiLdlwjdUWhaCjB94XCRzE7bgs6DzVhP+LKRxY
+MJFDI/0T/rp+d9An/EIH4DF2maWECf5c0oIzXet68ERL8TpL3sB0OqO0Zcxs/XHu
+VmpM4nTv71nQAo/xhxo4CT4923hP3A+h5glHiaWNxCUvshneN4OVxknCR76glgss
+OKHUt8THBxRqgIb4Z4V/pWQOQl+Me5Ft9mUj1VZBqlJT+7CyCKwjH8hIfIkxxMQt
+WglHD+GnvTbE6oiSypCMzDLUAEeHXTox5+4yM72Eas+kAVzuPLxxrvlvX0E9u/C/
+WQBW5xNjXDhyznD5nP54
+=lcqA
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+549a25c75711bd94f8e93fa4e0e16d82
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/7.7.0/solr-test-framework-7.7.0.pom.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+6e9b79f24af88d1d5b9f70bfae99c5c918556cf9
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml Tue Feb  5 08:31:44 2019
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-test-framework</artifactId>
+  <version>7.7.0</version>
+  <versioning>
+    <versions>
+      <version>7.7.0</version>
+    </versions>
+    <lastUpdated>20190204222650</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+af269ca1818c37e1af6fdaa3e4fb94d3
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-test-framework/maven-metadata.xml.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+0dec30f9beb77f97c33db145dd359f77cb83ef56
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxuAAoJEPmME8+loTXY0XEQAJy8MTYL21VzM7Qs/pE5E5K/
+LQRJhPiD1ww+4g09eDOjpwVedkweef6QUU/UZVQGLoiJxPUx4eX96wiUtKaXl99F
+5UqRqQ85Oy8Xzc3usD9SZM8knJHcsjgxOiprTIfTgMT4rBN/CeLX3+gzYlvUpoB6
+xd3Cs/30azlG3MyccQdTkOpCiQ1lTOCk4pTHbZ9h9D9pZyRfV9bFqZzLw1Hcw9hi
+A6mymlXYWU4Pze/zvfdEIFPdk39W0P6e2mQN9Ug+C+PhNt5ZWWCPbGSqHdOYYpSj
+3O27LRsFDXphMfPoewkFjvTIvbpf4YozJ+fgqwzrhOdG5uGa0GDaksByN2i12tzm
+0Rmx9MjCxiePMjpH69/XThZO70cY8ZLAb/36rpkcqoJMwobl9+GR3VBO4gwWvcw9
+jKB6TMW5DaI4OIYlAUGUuSppExUxVw64Ez76mXBxIlf8f9/xVJg3IUJQfti58XRi
+qzJnJwiVvVZpqPYQP73ap0vDUbjPO7xnhSwkaSjEZ4JC6TyROIVm4gnzSb61I6Qm
+/7mQn4IlW7M1qpCb83WDMgoultJeOjvEHBvLbt4WGaEyvjBMevBPC6uWTvpMCZt+
+wnvkf/Twgwo3K7waBprma9CY9TZKMcXF5CSOsFa/n0jHFu827CYiQJwAh4y8mfN5
+Ia7u+Wpz9hJY168norFb
+=C4u+
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+84753c4008f5f40601d8b0e9c1e36f1d
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-javadoc.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+24653bcf2433322a99b5e5113d02eaf1614c2cf8
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxuAAoJEPmME8+loTXYwsEQALUSNmS3E7ITjmiG0Ez7HLPK
+4bmRJBIbWYYosl/VvahEvtX4eS8tSrusY7W1dEFH85owCwdaNoMLNl/YY4jUEJ8n
+YNnuAc2WA1fYUHoy66TnpSLGSzkR1Mg5ocg1Q3zJXTukYHfE3yiUHRE84p8zmHMD
+TfF6UumDS8hCtlqgUadMpNFFmSB/L+EwOVElhXn7i1UkLVj28kxlIP2YPoUlFOvA
+f6DP6rJ2sRmHn0t8qO7m+squp6E09zPWrtKF/eN2sTZ/rDw47pO9fvnzDOP5IUZR
+p+D1yHN72fes47bHvW84C1kdlADlRab0U5Ifbhk9o1Za7pG5s3J4ngcL/lchZjj7
+J3DOuWV0ujTrGFLzfzzkjI8tMWqh2uurxWlegbZj3DoU4w44uUy/+9tGSHEAkZar
+QpO7xz92dj22FOZM/yOzWdVvVP9Dv4BSxqNNhvBwLK43JzN+3XmwErS4k/G9y/fY
+6k5diK8rW6Ds569GX3H/cCDob0rCKHMsDGoiI5K17dG8inm/crWX7P4yyZBCRfng
+fW/89PbkRoXl7LTe9PJ8VQL7gpGKNotf0tmQk4krCkVNdoBjEJ82X1Q8CbIY470w
+rpXvey0P5uDbCNOSzZ2KjN/67lY2p7tgi6FwUofF6SCt9T6fORQPH5a7oCpOt7Vv
+PCzI4axgwMae9k90amPH
+=3M8h
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+95c2316f413c03a561959a49ce045793
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0-sources.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+fd6c88684ae9f14adde029b410c45328505bbcf3
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxvAAoJEPmME8+loTXYWgAP/1Xm2NbguhWGsWMg5A/Hn24p
+1BSkOvnOdP/kbE6B3gMqNZfdq7RObg/oC3d/rLgsiBZXAaZcC3UTBeiOQqzAqkJe
+niCtlAFBnUVKVKRQ1jtxU47y5MoQzDEbOrRTpiM5b0shDTQzke9JHm/omp05ED2e
+yQTk74NdIxSeHFO5pVvwAZSzyf1WCvRq0wRfmbjBrBLBm1Kwic+NJSttcHlTbhCd
+339/r+i5a78KMrJLyeq/MeHHZE0gDeQ3NXAXui+WIizGZZrj4DVbFe+vP5Eml4Hu
+C9eelUgyVvmLylyoX4wVATBSwXYb6mbNlFt6AVLzHhQ/4mhjamy+S+Ne53lsr8vu
+nca9n9yLh+VceN7PSMFqMGGXmQfAb+f1j/1VM9c8AonvvxyY20pl1phRJy3rY4il
+ztn43/PUnSHdd52nE/c+uj60idKXnkvn7ogLB/bUZhAgO9QOFs52ySh1hJe1ivpn
+LZxUWt+ruDD7rU/hpDQegXk9yCuMlnTzFHYOurHR2ul714Pjwr0YIT4YpWymreNB
+I4wBOHUNNLC4E9y/uV8C9JXuHWweRhjVx+v030doqiF5cwvsnMcD00wWoPDEM3/s
+F1EQ0KGyrq6jqszBDHXCS5j/NRQdH04MnEiUippTAlDUw6ZSUlPbmduFQcm7TELd
+2mHDKTTPNLqzeJxW7JQr
+=CEwp
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.md5
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.md5 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+36cb6cc7f06a3ad42e9d90320b6dc9d4
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-velocity/7.7.0/solr-velocity-7.7.0.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+a3d62c7674c5c422504031c1947dd983f8c0e382
\ No newline at end of file