You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ge...@apache.org on 2021/06/03 11:48:29 UTC

[lucene-solr] branch branch_8_9 updated: Add pom template for gcs-repository

This is an automated email from the ASF dual-hosted git repository.

gerlowskija pushed a commit to branch branch_8_9
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_9 by this push:
     new c461c50  Add pom template for gcs-repository
c461c50 is described below

commit c461c506ffc02d4f3d16c7a0b0ec4250ba79fb7d
Author: Jason Gerlowski <ge...@apache.org>
AuthorDate: Wed Jun 2 07:20:04 2021 -0400

    Add pom template for gcs-repository
---
 .../solr/contrib/gcs-repository/pom.xml.template   | 48 ++++++++++++++++++++++
 1 file changed, 48 insertions(+)

diff --git a/dev-tools/maven/solr/contrib/gcs-repository/pom.xml.template b/dev-tools/maven/solr/contrib/gcs-repository/pom.xml.template
new file mode 100644
index 0000000..1b7a683
--- /dev/null
+++ b/dev-tools/maven/solr/contrib/gcs-repository/pom.xml.template
@@ -0,0 +1,48 @@
+<!--
+  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>@version@</version>
+    <relativePath>../../pom.xml</relativePath>
+  </parent>
+  <groupId>org.apache.solr</groupId>
+  <artifactId>solr-gcs-repository</artifactId>
+  <packaging>jar</packaging>
+  <name>Apache Solr GCS BackupRepository</name>
+  <description>
+    BackupRepository implementation for Google Cloud Storage (GCS)
+  </description>
+  <properties>
+    <module-directory>solr/contrib/gcs-repository</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>
+  <dependencies>
+@solr-gcs-repository.internal.dependencies@
+@solr-gcs-repository.external.dependencies@
+  </dependencies>
+</project>