diff options
author | Martin Stockhammer <martin_s@apache.org> | 2020-06-28 10:00:07 +0200 |
---|---|---|
committer | Martin Stockhammer <martin_s@apache.org> | 2020-06-28 10:00:07 +0200 |
commit | 5d058d7f4d93254291e456d2f8cb722159d053aa (patch) | |
tree | 1c186ed76ee3159d063b03561bd5727ab98da402 /archiva-modules/metadata/metadata-store-provider/pom.xml | |
parent | 5a35e01601336a462858f4a2af98f5b55de7a8d6 (diff) | |
download | archiva-5d058d7f4d93254291e456d2f8cb722159d053aa.tar.gz archiva-5d058d7f4d93254291e456d2f8cb722159d053aa.zip |
Moving metadata store providers to metadata folder
Diffstat (limited to 'archiva-modules/metadata/metadata-store-provider/pom.xml')
-rw-r--r-- | archiva-modules/metadata/metadata-store-provider/pom.xml | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/archiva-modules/metadata/metadata-store-provider/pom.xml b/archiva-modules/metadata/metadata-store-provider/pom.xml new file mode 100644 index 000000000..fb174148d --- /dev/null +++ b/archiva-modules/metadata/metadata-store-provider/pom.xml @@ -0,0 +1,41 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!-- + ~ 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"> + <parent> + <artifactId>metadata</artifactId> + <groupId>org.apache.archiva</groupId> + <version>3.0.0-SNAPSHOT</version> + </parent> + <modelVersion>4.0.0</modelVersion> + + <artifactId>metadata-store-provider</artifactId> + <packaging>pom</packaging> + <name>Archiva Metadata :: Store Provider</name> + + <modules> + <module>metadata-store-file</module> + <module>metadata-store-cassandra</module> + <module>oak-jcr</module> + </modules> + + +</project>
\ No newline at end of file |