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 [16/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-langid/7.7.0/solr-langid-7.7.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/7.7.0/solr-langid-7.7.0.pom (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/7.7.0/solr-langid-7.7.0.pom Tue Feb  5 08:31:44 2019
@@ -0,0 +1,670 @@
+<!--
+  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-langid</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Language Identifier</name>
+  <description>
+    This module is intended to be used while indexing documents.
+    It is implemented as an UpdateProcessor to be placed in an UpdateChain.
+    Its purpose is to identify language from documents and tag the document with language code.
+  </description>
+  <properties>
+    <module-directory>solr/contrib/langid</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.adobe.xmp</groupId>
+      <artifactId>xmpcore</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.carrotsearch</groupId>
+      <artifactId>hppc</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.cybozu.labs</groupId>
+      <artifactId>langdetect</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.drewnoakes</groupId>
+      <artifactId>metadata-extractor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.epam</groupId>
+      <artifactId>parso</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-annotations</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.core</groupId>
+      <artifactId>jackson-databind</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.fasterxml.jackson.dataformat</groupId>
+      <artifactId>jackson-dataformat-smile</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.ben-manes.caffeine</groupId>
+      <artifactId>caffeine</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.github.virtuald</groupId>
+      <artifactId>curvesapi</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.googlecode.juniversalchardet</groupId>
+      <artifactId>juniversalchardet</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.googlecode.mp4parser</groupId>
+      <artifactId>isoparser</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.healthmarketscience.jackcess</groupId>
+      <artifactId>jackcess-encrypt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.ibm.icu</groupId>
+      <artifactId>icu4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.lmax</groupId>
+      <artifactId>disruptor</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.pff</groupId>
+      <artifactId>java-libpst</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.rometools</groupId>
+      <artifactId>rome-utils</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>de.l3s.boilerpipe</groupId>
+      <artifactId>boilerpipe</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>net.arnx</groupId>
+      <artifactId>jsonic</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>net.hydromatic</groupId>
+      <artifactId>eigenbase-properties</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.antlr</groupId>
+      <artifactId>antlr4-runtime</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite</groupId>
+      <artifactId>calcite-linq4j</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.calcite.avatica</groupId>
+      <artifactId>avatica-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-collections4</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.commons</groupId>
+      <artifactId>commons-compress</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.james</groupId>
+      <artifactId>apache-mime4j-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.james</groupId>
+      <artifactId>apache-mime4j-dom</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.opennlp</groupId>
+      <artifactId>opennlp-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>fontbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>jempbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.pdfbox</groupId>
+      <artifactId>pdfbox-tools</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-ooxml-schemas</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.poi</groupId>
+      <artifactId>poi-scratchpad</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-java7</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-parsers</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.tika</groupId>
+      <artifactId>tika-xmp</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.xmlbeans</groupId>
+      <artifactId>xmlbeans</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.zookeeper</groupId>
+      <artifactId>zookeeper</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.aspectj</groupId>
+      <artifactId>aspectjrt</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcmail-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcpkix-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.bouncycastle</groupId>
+      <artifactId>bcprov-jdk15on</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.brotli</groupId>
+      <artifactId>dec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.ccil.cowan.tagsoup</groupId>
+      <artifactId>tagsoup</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.gagravarr</groupId>
+      <artifactId>vorbis-java-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.gagravarr</groupId>
+      <artifactId>vorbis-java-tika</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.jdom</groupId>
+      <artifactId>jdom2</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>
+    <dependency>
+      <groupId>org.tallison</groupId>
+      <artifactId>jmatio</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.tukaani</groupId>
+      <artifactId>xz</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>xerces</groupId>
+      <artifactId>xercesImpl</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>
+      <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-langid/7.7.0/solr-langid-7.7.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/7.7.0/solr-langid-7.7.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/7.7.0/solr-langid-7.7.0.pom.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxkAAoJEPmME8+loTXYFLYP/1flV2742oNrLFxJ1+5xBUAj
+3OsUgEBxrtPpEkC1UTdL38YnPI1QlvYVpKxuWOagT2nxp2n3xg2Q2uK/HbeLwaY1
+R5cJuKOGwdj18hBO2CINrDkuit3utg84y/ig7+WFkQ4P9EGoRfd8/klA57txMu74
+ImXBnOXrg8QIje6db7s7l+OGk0qgwPLZ5sM4XTOqirzgk6JSY4W06hC+oytCRIhg
+c3eZZ8hoChz9bl9JHD3POYFzKP1OXLAHUs6MbHSiQdbiV/6O4Gons7T/PYnrEODG
+GJ/YR/DmLhnUuXSUmZBbl01vOU33/gps4GACIuuo2rDxn7Nw8ZKFgpT2v+lymzv3
+uhhV8BKBHHEfhFAr4EVcAuq47oGBC+duWrM+clYphcp/XJkfycjzIWA2OPhc9Vaj
+LlfbdjwYNg6C9TDMwjmjLczTHoz3fAnx9BaKGwimnSRpATD32GV7FqdSZgF16+Er
++3eqDWO4T2Z6QKiS4H2IxPWW60VnxRmDo/sFzijS4/VrikYYGDgZxt6vt3MjqZfu
+NWosOHokeBVPBTyRtmJskJWk6qMYhYlM4pXxOYX57w17MY4TFDb4rvMAxWvwhzFi
+MzHYrZAu3VZmvLf6OdeASbEJ5SiZslkqibj+iR4TsZVyFx9vHF792dYmiD/csA1L
+av3v8mh0pd35O3kBfPaH
+=43lu
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-langid/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-langid</artifactId>
+  <version>7.7.0</version>
+  <versioning>
+    <versions>
+      <version>7.7.0</version>
+    </versions>
+    <lastUpdated>20190204222718</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-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-ltr/7.7.0/solr-ltr-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-ltr/7.7.0/solr-ltr-7.7.0-javadoc.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0-javadoc.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0-javadoc.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxlAAoJEPmME8+loTXY4SEP/RDNFEtiSvUECVdK+xXosvU9
+Ji5WGUT0ikpdzLkyZMj6z4nZ1zOkfnTATpIAf+P4gvhBtIw/rxOEFTcmKzaGfvzU
+qAPJD1glDwV7M7vUtthevwcchxCSUepqfBzQlElLxdCDWTqQ16jlWeMgRG6+5pbN
+bxcfGtIo7ynUXWlCG6ACyCGrlm7vY72CuUQde2CGYpEjbaESWb5dmeCcfJKFfEg5
+XeBts2OXyeJ3/jTaaxmiqQm4WC4NOJkqxZLPFhEClF0w83RQ4vRmMA5WVSGdLZgr
+zHaF7/z/yQcFQuCc3jrdsTgVCbNHDF2ibOm6x3qxpM9q6jmo9XVnchZU/HpF88D0
+Fmzx/E3VGO+u+rK+BIv8uueZrefrK+rrpAqJOlP4R7CsSE09V784kEVO/j6RtfGb
+aDBr6+Zp4OQbC7tEtuEamHmdVUqX/BCs8bWVNYssei44vupXjXMMiXwhDXFmkCHz
+qdYNVa72RHjBIYb+/EnM7BCnBjY2nrE1Oj90UEbEn1HI2bSrSRbTGFCsmyZzzRm1
+zJQF5hAx1hCGMrG7LnHn3Fx5DqqvXE3SLDAXu6XL1zVqwpFma+blM4kDn7uaGaic
+kioMic5nESC/KsrkgBbp4tMMD12FMwyxA0YGO3RsRr7ccYMX6QrZfVx6IRStenhz
+WpFKBNkzk1FjmHJls1DR
+=OiNK
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-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-ltr/7.7.0/solr-ltr-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-ltr/7.7.0/solr-ltr-7.7.0-sources.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0-sources.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0-sources.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxlAAoJEPmME8+loTXYY9UP/AsbR/ghJRFSCGyPt8ajJa7V
+i2zpoD7roPQUIyyic4ZNSWrud2LOrXo4X0qZYR6WuxCsywJCl8ASrX8nYtwO8EzC
+IHmncRAHlaTo9UhOXjWCiZiZxxDfyDIiMDxmnX833G+XvrIcd5CdPo30oOtFGi+c
+cLtLETIqod2Ecc8ay7MUjiDRhCuPOds1wTtt8fblNZHsqA/gc5+aCZceU9Hs4ELj
+7ZENvZhmNdS9YZ11XuTM6mzpq1QkaDHa+QwwKrf7Z6HJusf2CG7eoMe7rY7zrnV3
+8ZHJRR03Xpqyfx7V9Bur8/HBFEGgBwjCt21SZRgb8+bI/PakBLClB/tMTAhzZXhz
+0PWoF+lWzioiLFTwnkzN9SbQml3FBMHD6ylVumuLEG91F8T7i3/OQX1ROQPOUCDx
+xST/sGTF9z2hbMeIFoujRNIha542DGqY7ItdnFR4/qaPGJEF8hUJPA5Nbo5WInj4
+M9NMvi2oRGYMb5UwofI/ClgQmI/vAoM8iEWHzv+KJG0DstfwFKfNXvQr6XcYEj3z
+HM+lVuwAnJvI6IKU/HZwuCSt13POTM2mr9QUDwrTFCQdQuZ70mG8prxWUsOnzyL2
+78pLNAFK8njgJLAahTIUBIVDiLJ2ZPdq4vsjHlIBfJ8gBaUQpJ6H4dG/m3BBAqB3
+4DwCTvMp8bBZZPdhxIi7
+=uFrm
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-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-ltr/7.7.0/solr-ltr-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-ltr/7.7.0/solr-ltr-7.7.0.jar.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.jar.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxmAAoJEPmME8+loTXY3uMP/1rwmDuhmi09tpmRxqnEwxOw
+fQFoF/Q4GR6qATlyTRYdDfYO7DskZXSpWQIWunsCYKOrlRUP0Rr0xGYS9n4qGp1a
+M3TXo0zBPwKJKqx7EX/+YT47UvFhh3xWEiv3dLvUW0KMlD3DzyaavVACw4/OJdOt
+/QZi9aj4zwki+Nebe1Sbrmti598sJI7AuMgxy7kQ6+y2sKMA+SQM5IejJaHjEZa/
+DoxLJuJisu2Os/nw0780GbFIFkGTYFSRa0BVZ/lyT3cHkl+SNV+KHFYV+8v0o3sf
+NsxHd0Ad1t0EPH3aPMo1LJAX03RLBVvB86EtqFuaEJhngqSYQD4e39758sEESai3
+9E9cLvy3L+KSZZkG/A6H+qPr5LSUxzAjuCLsK7K7g+b4pup0FSHFY7lilqPTXi3x
+a7/yS3isagVT9wp5VWI+0EaVdxsuq2IbuKlf0W6Sj+RDB06cvrPvyR/ZSKq0nqEx
+Na/JNj396jCLudRZrPuaNwlDoEzqPyMzNbLgYzHwGDWMiLzeCuKLFxMNSkWf2oQv
+yYeOd/eo6bbTTjvaQ28TB5yKNZdJJ/RJeIE/hQ4i2qLgoJOwvdhF3x525hIrkZ5p
+AuKRRU/Bsu20GVydgmY0V0BMwkpCQPbJnf7obEWOvjmlkI8Sm6REn1xIJrWT8QK5
+9yZa9kxC2JoLIVNksDB1
+=KMgj
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.pom (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.pom Tue Feb  5 08:31:44 2019
@@ -0,0 +1,498 @@
+<!--
+  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-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.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>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-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>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-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/7.7.0/solr-ltr-7.7.0.pom.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxmAAoJEPmME8+loTXYFaoP/0H+5omJqBZv0HWiwNiBojko
+cDQnOxD5oPLfNCZaWdiA386CPWMTBVwrbzEyrigBWtwSVdHno+GBSc0jFqvMeyjg
+vwlGIu1PVXIIoRU6uHBwfHjpQnsiQvnIU+1YzMF8SKZE8dYu5SaRuC3DVKEJiCCR
+iExKBYyYxqKV3EMKRJb7fBjVrHfCtMmj9MtDux1H2j86aMYQNKM6GeNQqq28Cyet
+tzrSt6+YicT1biora6SC9kRXYI8xfqOMa0HJj2Fm2STy51ly4LcxqILYtZMJk2vc
+NT1NZjU1z4qGhRxUo564kDPDglDsza9cYVZ/RPRW2R6ITH59ZYNxWvRYMhi9OrxP
+FljZFgmP6dqoARK7gJx4I/50re9QhWt56VYPAM4mz3ngZRPPZQuighTVEMUVDQH/
+2Z5fDFl6C+o2HHCgbyRmBidbqDtXxkwoA2cXmqmb+TqtW6rkT2eqsdSA9Bb5VgHI
+LSeK+wzPPy3aGbj8LFH2BAFtP1rS+Wk7atdt5XDK4S1GuFf2f4S8WksN5/B2Yg9a
+XzBZ76bJiM2USqvadfl463iZkBOaLwPm2VL5sxcUwd3XHviAGDxAKgqTHjBQQ6lx
+G+Cl/bD4697gotdoQ8mGMx+x08u53EhrTTOYp8e3xz2qyerme9ZXbX4UFo8CC36D
+jg1IVo6Gr+I6P/w9fjmA
+=/HzF
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-ltr/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-ltr</artifactId>
+  <version>7.7.0</version>
+  <versioning>
+    <versions>
+      <version>7.7.0</version>
+    </versions>
+    <lastUpdated>20190204222722</lastUpdated>
+  </versioning>
+</metadata>

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/7.7.0/solr-parent-7.7.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/7.7.0/solr-parent-7.7.0.pom (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/7.7.0/solr-parent-7.7.0.pom Tue Feb  5 08:31:44 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>7.7.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-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/7.7.0/solr-parent-7.7.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/7.7.0/solr-parent-7.7.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/7.7.0/solr-parent-7.7.0.pom.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxnAAoJEPmME8+loTXYmJoP/2bInEp2ulmcoW6uN2FN/f90
+0FzO1BwpzlQ80syUJuA0DFITB6Exs9arOun8PC1yXd1neX6oODI1kPN/Qidz8Toj
+W2SwSuo3TRHQpsqJHWNdy393xagtNrD+EKjY9Yv5fLe/Cvr/P3huFchQAqelewVj
+m3G8+Ierb3fgniHJDYgkWDE1WWQVbmtGBVBLSasYTFakDmNO8jzhkZkXBzxePW7Y
++zGIqZ3cYFTqZR6kFKFPfY4DT49DYGnUGuMT6y0fQj3eAOi33pibUa55S0w0CGQT
+ylOmtr09fwSe6ZR5Tsnx6/TQmcHNigGpIjqOfj/Dw5Cxv13UnbdCr2zbUuw4KK+c
+kqvHSzG6v/2OcxSzgAqP5cfzDTSxTxJLRy9pnqx/tbqNKv3kY1V2MczSw0OB+qGN
+hENJksx0OpbpDH/PUXa2y7qFXs0Lj+yzJXK/jfwFX5Vb3LAtXgAVnRDPODjGfPTl
+f9ibNalvWWPUn1vwLqtAi2Ob4Hgy0pxmBV2c4s/8Qm5RCNbG1k6IYPUTDL5v3isJ
+vAEidgURu3bo0lxTst/UB4KoOces4XBG/88F2FRk4Be7fu1CS8vRFITeKzASOYfO
+PTyKqqTZgFz36pdNmNVMsnJYZJZ0GiahNgT+GdiyFW/wZgrOtO9zQeEyizHeinUB
+c92vSLSdwR42vdUaF2UP
+=dvm+
+-----END PGP SIGNATURE-----

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

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/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-parent</artifactId>
+  <version>7.7.0</version>
+  <versioning>
+    <versions>
+      <version>7.7.0</version>
+    </versions>
+    <lastUpdated>20190204222641</lastUpdated>
+  </versioning>
+</metadata>

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

Added: dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.7.0-RC1-rev8c831daf4eb41153c25ddb152501ab5bae3ea3d5/solr/maven/org/apache/solr/solr-parent/maven-metadata.xml.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+334594dc5e8f990fd210dadeda6d0ecd457927fe
\ 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-javadoc.jar
==============================================================================
Binary file - no diff available.

Propchange: 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-javadoc.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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-javadoc.jar.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-javadoc.jar.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-javadoc.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxnAAoJEPmME8+loTXY8LwQANY6qg9Z+o9QUFI8i1A39N6W
+ab442Sq4dJUq/zK1jMHRFgbnQO151sswkUG2JNRnwWcSteLPwevlHjlm1sIBcQEp
+h5nm+biKDi0kwWOEufvJCt1rZwEmu7O9HSxY3wZ1BzwKcuyIcUG3EkJK9dr8FEJo
+0vMYHlXcY55CZyLmqCMlyiCtVXm4gjj0x2pQWcxhyjt4wQSTZkfNDFoS/PGLx8kG
+iNkpNGD2Ed4qZw3IJnz+JtGhdNbqd4Qkq4tyJCHAtt8rG14Z1IZI6/wuv10FZMmQ
+WO086WH8l+l/ckQqUdRo6TcmhlR0mn5Bl5HqyhVXjplSUeFcCC8JQybmxgiWCdN2
+8NkW10ZrA6t7wMYAzIX9ePVyFHTBatIjrUAkbmIXJnt7OZ2blIJ8M7F65oV3PdEo
+LfNoheRPbEc9GScwt4kHJBiMOmhf4CzK9faanIu0LJvmdagIoMqd3cVzSzeCGuNG
+/d6/rH0b68sHmJWNCZ0ooXJgWVEcdDIQrSSZ9mj6APr3YMsv2YzxsJy4vWFppEoi
+o5WHh1mI9wzHFhDcJZmawtGMHJxq5pj8AJ0g4zflJgyDGUQ3djT+refVb8IbvHDQ
+xnB+A5tADmmitYvvwciE+0fHfRq5OYb5tr5+d/dpwygMf+WP2wRCKgcBtKXwzj5b
+/5IPu/oh5dkVqZEH5Bw2
+=ft9v
+-----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-javadoc.jar.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-javadoc.jar.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-javadoc.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+7fd64b8cf5d4e067b364e51586c1e164
\ 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-javadoc.jar.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-javadoc.jar.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-javadoc.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+5b39b44728d0d259faf544c5e0be44b597d6142b
\ 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-sources.jar
==============================================================================
Binary file - no diff available.

Propchange: 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-sources.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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-sources.jar.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-sources.jar.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-sources.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxoAAoJEPmME8+loTXYM7cQAJi1tbFmppTINeKN7utswaAI
+S5JLLA8bcI7cZhrPldoTSnFVED4RxfifWvCjCKIRo8I5EemRKF48AiG/Nsy3IxR0
+/gnR8a4QnHZB8jCjg+2pF3Tk+LH8PNQLwsKWWr2LDF8S6Lm6487KbKzoEd8/LvIq
+3hUyaAtLcsw/RXoZAm1bqsR54m+gBUq9/I/j2XCDAcMe2ThVJN/gB/aqFFWO66vs
+HIAk10b67UC51Yfe59SoWGgGCmaUr9VZhideHpG1+GFhfgWu7ptoH/9Eic6HuhZ1
+I17XHFoQZCrxjkkRQpo0ybJ/FpR0KQScIrdZdI+T2uISJV2YpS6pPh/QiVMNIw10
+ekvwz9cdw1mtkgvuMmdcvluvXlnSzXsRaDh1rHDQan6Yx/OboYcg3wV4vfsfao33
+58JFDhN0ZLC1OvX4iUQRKi/66DI3O0xeK+uAmA59n5AsJ0f1H51QETCaGQuJov57
+W2JeOP8FljQPgpdgmCXohl2dswhYEeCIGL1IEVBHRrqROlsnCLIYGKqdhvp+7Jix
+YoEMDJjhkqIpuyc455rfvaVwcmkrjQKgbZf6daGzpEJHSvKWg6mdfIN7i6urKqHE
+Fk/aNzDTziwiSunD0PLGFnw93skHU3860Dmr8cQg+wyWzn0te1wVdK5oHXLkzu51
+LeYzXv5Gk4J7ibZ1RTTm
+=OL2Q
+-----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-sources.jar.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-sources.jar.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-sources.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+650e4fa53f84c14a2b7a5a675bb0a368
\ 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-sources.jar.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-sources.jar.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-sources.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+85326c24b927550bf8776ad017aa2ae216b99343
\ 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.jar
==============================================================================
Binary file - no diff available.

Propchange: 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.jar
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

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.jar.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.jar.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.jar.asc Tue Feb  5 08:31:44 2019
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v2
+
+iQIcBAABCAAGBQJcWLxoAAoJEPmME8+loTXYELMP/AzWVVkEHOwGXyqOyBMz4BwW
+uCeoviwKpLnmhfwo5/zo52ekSMhKwZQ/amsYsGGrAaUDe2HDsmQwRP0OaPLTw2qt
+NRcoBeNZtXDXvOXseMocUMD4KIvhrXLIvvQuyXYELpOPrVRu4oQ4xPs/Ca6BNUBO
+KuzKz37/45Lt6930Ccs5fQsUFy7OND7L15RRQWAxiBsBk2HNnbXz2CjC4mxvgq8W
+vT1feMSNJviYLHO22hwE4vBb1oxKjkfs/mzw84iCp1GmU6Pp+C15De5HTK3Y97Lz
+NP6yzBPyGORYBhFhwgYlMrSgjn804p7C7NrCLuSQdQxmAuBqmXmCSS42I6fejfZe
+p4UHdCSlW6Ajj7t6d8URKr/P1qJNm2AwUvQh2YnFifmeSeyg4ASWV1Y347agG8S0
+5dH//Y6ndLsXcC8tFtteDkbj2W6rChqpWIaGzRZ60wwf55pp10R71uHwTS2xoSBw
+BU8e56/eC3kJHZh+nLKjZAh72h1EKQ9lScx1iGxr8kqCPJ7XKTmyV23lXqcF/L6l
+ctZ9ma6N9Gu9N+YxvUZayXSmTUgbPjGq+3gtlrhW1Ck1dKssEEhANw80Eip0ik5l
+2BmNQ7cee6L7pyaHwnBkWbqP0YmyuTjWh27DXFGeItSgOvhwD5NLpspcesFpc5yU
+N+OSdTYDkKbdahl8oOF+
+=RxzG
+-----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.jar.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.jar.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.jar.md5 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+a40a02e1c3aef86d20a87625daab8a8c
\ 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.jar.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.jar.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.jar.sha1 Tue Feb  5 08:31:44 2019
@@ -0,0 +1 @@
+1d7ec66bb2f0cc41b1505983e7aada344ec15864
\ No newline at end of file