You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by is...@apache.org on 2021/01/19 16:05:56 UTC

svn commit: r45496 [8/17] - in /dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027: ./ lucene/ lucene/changes/ lucene/maven/ lucene/maven/org/ lucene/maven/org/apache/ lucene/maven/org/apache/lucene/ lucene/maven/org/apache/lu...

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.jar.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.jar.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.jar.sha1 Tue Jan 19 16:05:51 2021
@@ -0,0 +1 @@
+49a31e9b42442be8ad8e61609dc94be5cb2edeef
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom Tue Jan 19 16:05:51 2021
@@ -0,0 +1,80 @@
+<!--
+  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-parent</artifactId>
+    <version>8.8.0</version>
+    <relativePath>../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.lucene</groupId>
+  <artifactId>lucene-sandbox</artifactId>
+  <packaging>jar</packaging>
+  <name>Lucene Sandbox</name>
+  <description>Lucene Sandbox</description>
+  <properties>
+    <module-directory>lucene/sandbox</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 -->
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-test-framework</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-core</artifactId>
+    </dependency>
+
+    <dependency>
+      <groupId>org.apache.lucene</groupId>
+      <artifactId>lucene-codecs</artifactId>
+      <scope>test</scope>
+    </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>${project.build.testSourceDirectory}</directory>
+        <excludes>
+          <exclude>**/*.java</exclude>
+        </excludes>
+      </testResource>
+    </testResources>
+  </build>
+</project>

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.asc
==============================================================================
Binary file - no diff available.

Propchange: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.asc
------------------------------------------------------------------------------
    svn:mime-type = application/pgp-signature

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.md5 Tue Jan 19 16:05:51 2021
@@ -0,0 +1 @@
+3e10b00e5b342ad2cd1590a142b70e05
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/8.8.0/lucene-sandbox-8.8.0.pom.sha1 Tue Jan 19 16:05:51 2021
@@ -0,0 +1 @@
+d90f31c231907a0e937c34b3165492a597adb19b
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml Tue Jan 19 16:05:51 2021
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<metadata>
+  <groupId>org.apache.lucene</groupId>
+  <artifactId>lucene-sandbox</artifactId>
+  <version>8.8.0</version>
+  <versioning>
+    <versions>
+      <version>8.8.0</version>
+    </versions>
+    <lastUpdated>20210119123859</lastUpdated>
+  </versioning>
+</metadata>

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.md5
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.md5 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.md5 Tue Jan 19 16:05:51 2021
@@ -0,0 +1 @@
+9fc56805b038e1fbd2bc5b85732948dc
\ No newline at end of file

Added: dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.sha1
==============================================================================
--- dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.sha1 (added)
+++ dev/lucene/lucene-solr-8.8.0-RC1-rev737cb9c49b08f6e3964c1e8a80132da3c764e027/lucene/maven/org/apache/lucene/lucene-sandbox/maven-metadata.xml.sha1 Tue Jan 19 16:05:51 2021
@@ -0,0 +1 @@
+05b915539a491eef7dbb968c9f289f7aaafb447b
\ No newline at end of file