You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by jp...@apache.org on 2017/12/14 23:33:35 UTC

svn commit: r23740 [22/22] - in /dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8: ./ 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.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom Thu Dec 14 23:33:33 2017
@@ -0,0 +1,485 @@
+<!--
+  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.2.0</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr Velocity</name>
+  <description>Apache Solr Velocity</description>
+  <properties>
+    <module-directory>solr/contrib/velocity</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-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.tdunning</groupId>
+      <artifactId>t-digest</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-beanutils</groupId>
+      <artifactId>commons-beanutils</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-cli</groupId>
+      <artifactId>commons-cli</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-codec</groupId>
+      <artifactId>commons-codec</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-collections</groupId>
+      <artifactId>commons-collections</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>commons-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>log4j</groupId>
+      <artifactId>log4j</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.velocity</groupId>
+      <artifactId>velocity</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.velocity</groupId>
+      <artifactId>velocity-tools</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.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.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <optional>true</optional>
+    </dependency>
+
+
+  </dependencies>
+  <build>
+    <sourceDirectory>${module-path}/src/java</sourceDirectory>
+    <resources>
+      <resource>
+        <directory>${module-path}/src/resources</directory>
+      </resource>
+    </resources>
+    <testSourceDirectory>${module-path}/src/test</testSourceDirectory>
+    <testResources>
+      <testResource>
+        <directory>${module-path}/src/test-files</directory>
+      </testResource>
+      <testResource>
+        <directory>${module-path}/src/test</directory>
+        <includes>
+          <include>velocity/*.properties</include>
+        </includes>
+      </testResource>
+      <testResource>
+        <directory>${top-level}/dev-tools/maven/solr</directory>
+        <includes>
+          <include>maven.testlogging.properties</include>
+        </includes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpa3AAoJEAUaD692vGUHSCsP/0aEnU+2GpPVadei/0hSWXWU
+v0xxig2c7DVIXF1gNtbXSQtbXdw/4xWsPh38jd7uNXnE9T+Eqst2k/QGETmCR5Uf
+H2uhC1/RMCWFc2/eUDWLzY6dAo16XPe4XgXevZGpzMTuBgfrY+kslyxCll1mMHJ3
+/eNy04sjtF6lQT+gyWAJYrdtsThDVLMMGFe0lHXxKdBy+iM5n/A2D+X2mIOGSj3p
+uh0cO/HbSn7NYZVgzsuNs7WWW0qhmY3tYV1YFBLetqNYl/YiCP1FbERmR55uHvKm
+V4EcwhJWpG4mfl1i7A45UJq/dgCoKuPP7kQIbQ1qSX+6LuLdgd1pNyG+BqnvFaBw
+k8Tbq4pIAmXCRaebJxu6DiBhTxIP1sRz++nAdlmf5IvbIrmKNshiP03DFt1F6eJE
+oOLZEHfJJnN6HuIvEiLCCcOb0SqP6n3cTKr3tzyks0+1QkczSJbo0Zd9NI4kpdKo
+iwUWYtvQj8hY19SLGM+j+q/s3oDTjMzyakR9OKLrpk+MuPMZY9YpTbYanc09UnjC
+NskC8VwsmUKNDGaOr8QzMgY526EGhoPQBkO8Y1ZJxSxXfJjSVvYAHZvuiE0CMiee
+DX7TfLT9ucUqRais3nSlSMDlRpNK+9nc8QfSroRjxkm0TvtcXm0ss6zIX7oLrVPv
+5UeC9s6WKiYm8c21dS7/
+=kySg
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+5ec5a6dda282bbdab5da6ed450e37b6c
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/7.2.0/solr-velocity-7.2.0.pom.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+931dc319c728c417be747dc620e02bed19aa58d2
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml Thu Dec 14 23:33:33 2017
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-velocity</artifactId>
+  <version>7.2.0</version>
+  <versioning>
+    <versions>
+      <version>7.2.0</version>
+    </versions>
+    <lastUpdated>20171214151957</lastUpdated>
+  </versioning>
+</metadata>

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+0dcea4b71612921219e5e78c52f4a2ff
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/maven/org/apache/solr/solr-velocity/maven-metadata.xml.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+36d9a802ff16b24191932918d4c12b6e899e3bdd
\ No newline at end of file

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpa3AAoJEAUaD692vGUHXlUQAONCvUm5nJ9/HbmBjXmhcI5I
+z9WSpio/uDwXllvDwjr8EUAJnXu52i242ezL1/bFPy/HXsSFBOKVudpiJyoWaLp1
+N1wPkhJrTBRtLBgbsjmRROT3igdLM0/XKOQR+zHcwJeuL2YwQw2MCo2ZpAC8GR65
+hozswbDoa2l7+cYDjT7t3e8jHVC3ObwLSpl+MlKsO+Z+nrbjRAhCMBzQ1mt5JaV+
+lV9eMgfTYhIT1uJcrTd0fnyhdXFwYyH4bCayzX587U+Y+p6RQy/z1zoIQC1CEyLz
+Cd+DjEdwJVc5svQZCR+Nh4zlLowsSN4pulOxi0VUFooGxJ+SyrSOhPkmSKX4RNaB
+VX2VaK+aGS3oQPzrBug+yTeB8g0J38SpjNoPt/jnELzYFAS03Hm2vxD1snTfTv9N
+x5xlNyH8oyN04nndVDvKj0j16c8Oc877PiSlzKrBpbrRHinkPfXdhpEb/p8eBb9j
+fTSePdPi8kdTupTCJzzL5HL74r2VkqhqPV7AiE+ehIK4N6hei6kzFBUuLliAPdfU
+MVuBf8Ijyae5/rXSr2ebWQ75bUAxDj24GFI2k0WBs+o/U7NJ7CZYrfTnmpkJ5glA
+AZjuEdBID8nPU8Wv8tYOKPiFTk80433nZfm0Lq5D3AOF2mGmff5Bloeh0Cqas1dj
+bY0rADSZ/rIR5CifX1+G
+=joVy
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+b0c303cf094ef743d05511c6fb482887 *solr-7.2.0-src.tgz

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0-src.tgz.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+fa088f0fa8754839b659e8fa80776ba984305858 *solr-7.2.0-src.tgz

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpa4AAoJEAUaD692vGUHp3YQAJcGJ4HeF9Q6h05KVQYsuSv7
+dmQ3ZoDdGZmkCnZufqdq76LAuoDO8DOeGPUSLVq1NyjfMyMo/gBP2Vn7gKk3SIi4
+kyOdzTYyb4aaHl0AF0L1dsOt4/VBWPeAf4Yi7BNMRmr6/oAHdd5f0CscHgD1EPfm
+qpvwqfMvBA4jzMgjSPbAl4lyAdr+ayvdR2R/CfE+/sBxxDCXYXP3Rd9MYyCK4bY/
+OLagYQb+pbmytOdZ08yEaMEUTJxpDLOfFal7mZd472ZGVfmu9j/UuDrpilU1HH0c
+WhLvXdpNRam/SZZDd0h4BgkBRq3jZTGWzGZVu0isnhnVQFxQ2RSN7e00fYjioroa
+WZIFn0klzkDQ32Uvu5GcsXTtYroR6+eC+pBsfwzkebX0xJCwe2DT9pCOtSgtmMT5
+O+hVPr2CSmLQ/R4HNzIIBtRAyUbH5Vb122vgzzR2d9Si5Sa2A1vjEaOaunObvx5o
+MwT02RTAfCjwmg0V1ELtb/G3apT4TOkV2URpUZuxU1peuDdn+vutVnusXsvNk27X
+XSALF0RDcDtMb1KWAy5PAl9zvcUY5PGSiaObeFwZkF5JkOcxkzQ27DJjQo2pmxM1
+7se+KqOvGGatbMoOsOHka6qAfeqmM5U/ifU18/O31pc74Co7HnYHOQhB+bWDlD2v
+T26Z39RNMD9Hc4Ap+W7j
+=JVjw
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+e5e2ff68a9bdc26d93ea3d8022148716 *solr-7.2.0.tgz

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.tgz.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+1d0c4d7e8bf733fdae97f2c1b68188923d63fc76 *solr-7.2.0.tgz

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip
------------------------------------------------------------------------------
    svn:mime-type = application/octet-stream

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.asc
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.asc (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.asc Thu Dec 14 23:33:33 2017
@@ -0,0 +1,17 @@
+-----BEGIN PGP SIGNATURE-----
+Version: GnuPG v1
+
+iQIcBAABAgAGBQJaMpa5AAoJEAUaD692vGUHQWQQAL0KcMGx+VoChSPPDL6xo27+
+u5D4ru2k75v6lKhzj+88xr3T3B6I7EV7OOHiFoSASt7aNzD/VceMEECQoKRJK0VF
+7AIN9md6PNkv+xuGpCHqrIcq939PT9xJS/9IF+Hh4JIPPg0KsOJU2cli2FSkAXXu
+3a91mk0QMt18Qt6Hpk2C+qxzrLj0xza95hWOstz62pi21oWT+jUVK+LD1Uzb4LED
+RV+d5990Wle+eKD16cXH0N0ro+CiECiIkTpxJRujDlrZgYmGXWRRvh4kUuR6PSZo
+fNYlcykm9wgMV58Jg/NLs7yd1uAth3SoqIkbaCJQPE0/6kHoioO8u4EOHyt3xSt0
+w4XUOC4++x5INuQU749gFI4fyfvw5W+adHyKrgEE3jjYZQTZxSPFgnKU8kLVSu0r
+sH3TRbiw2euKlfhlCuuzp0rHILVrUdOXZlWq56sdQ1FaTAaJi1e7pdRLaDtvu/Wu
++lX7BAX94MjJ77d7XlGtCCsugOOpckH3lKQNDcIpffMirYBMAjXlUsJJL7B6qylb
+jCiJ9AHMfYKV9w9YKZM+7EbS15ixPw7EBf1Vw9sooshcSHKd+zITJppi0UTzEBEe
+Vb2NUoQr7IzLyM3zuCeepfVHC4PxuxTMQEj8prhzmgqAjFB2FQjFnDBxYLJ0bmDX
+q5UZPMwYEaZn10WhhSIt
+=5YzV
+-----END PGP SIGNATURE-----

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.md5
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.md5 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.md5 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+8f35e84c01f93945dd705535ffa075e5 *solr-7.2.0.zip

Added: dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.sha1
==============================================================================
--- dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.sha1 (added)
+++ dev/lucene/lucene-solr-7.2.0-RC1-revbca54cad5a9f6a80800944fd5bd585b68acde8c8/solr/solr-7.2.0.zip.sha1 Thu Dec 14 23:33:33 2017
@@ -0,0 +1 @@
+089d45aefec7d036093bc3e0cc5c2e147c9f1b00 *solr-7.2.0.zip