2009-10-16 08:35:38 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2006-12-23 01:39:46 -05:00
|
|
|
<!--
|
|
|
|
~ 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
|
|
|
|
~
|
2009-10-16 08:35:38 -04:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2006-12-23 01:39:46 -05:00
|
|
|
~
|
|
|
|
~ 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.
|
2009-10-16 08:35:38 -04:00
|
|
|
-->
|
2011-10-18 08:19:44 -04:00
|
|
|
<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/maven-v4_0_0.xsd">
|
2006-09-05 03:00:52 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2009-10-16 08:35:38 -04:00
|
|
|
<parent>
|
2020-06-28 04:00:07 -04:00
|
|
|
<artifactId>metadata-store-provider</artifactId>
|
2009-10-16 08:35:38 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2017-05-18 01:04:58 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2009-10-16 08:35:38 -04:00
|
|
|
</parent>
|
2011-03-29 10:13:37 -04:00
|
|
|
<artifactId>metadata-store-file</artifactId>
|
2020-06-28 04:00:07 -04:00
|
|
|
<name>Archiva Metadata :: Store Provider :: File System</name>
|
|
|
|
<description>Metadata Provider based on file system</description>
|
2018-11-04 07:34:47 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
|
|
|
</properties>
|
|
|
|
|
2009-10-16 08:35:38 -04:00
|
|
|
<dependencies>
|
2010-02-16 07:44:12 -05:00
|
|
|
<dependency>
|
2022-01-09 17:14:44 -05:00
|
|
|
<groupId>org.apache.archiva.configuration</groupId>
|
|
|
|
<artifactId>archiva-configuration-provider</artifactId>
|
2010-02-16 07:44:12 -05:00
|
|
|
</dependency>
|
2009-10-16 08:35:38 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
|
|
|
</dependency>
|
2019-09-01 08:37:52 -04:00
|
|
|
<dependency>
|
2020-06-20 12:31:04 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-common</artifactId>
|
2019-09-01 08:37:52 -04:00
|
|
|
</dependency>
|
2010-03-18 01:34:55 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2020-06-20 12:31:04 -04:00
|
|
|
<artifactId>archiva-checksum</artifactId>
|
2010-03-18 01:34:55 -04:00
|
|
|
</dependency>
|
2009-10-16 08:35:38 -04:00
|
|
|
<dependency>
|
2020-06-20 12:31:04 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2009-10-16 08:35:38 -04:00
|
|
|
</dependency>
|
2009-11-27 08:09:04 -05:00
|
|
|
<dependency>
|
2020-07-04 11:00:19 -04:00
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
2020-06-20 12:31:04 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Test scope -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
|
|
|
<classifier>tests</classifier>
|
2009-11-27 08:09:04 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-07-02 03:36:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2012-07-02 03:40:05 -04:00
|
|
|
<artifactId>archiva-test-utils</artifactId>
|
2012-07-02 03:36:23 -04:00
|
|
|
<version>${project.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2014-11-05 14:11:08 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>generic-metadata-support</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-11-27 08:09:04 -05:00
|
|
|
<dependency>
|
2013-04-24 06:41:53 -04:00
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
2012-09-09 11:37:27 -04:00
|
|
|
<artifactId>log4j-jcl</artifactId>
|
2009-11-27 08:09:04 -05:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2010-03-18 00:26:23 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
2021-07-11 13:23:07 -04:00
|
|
|
<artifactId>mockito-core</artifactId>
|
2010-03-18 00:26:23 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2012-06-01 19:48:01 -04:00
|
|
|
<dependency>
|
2014-03-25 02:29:30 -04:00
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
2012-06-01 19:48:01 -04:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2009-10-16 08:35:38 -04:00
|
|
|
</dependencies>
|
2011-11-29 10:15:40 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
2014-03-31 09:23:20 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
|
|
|
<archiva.repositorySessionFactory.id>file</archiva.repositorySessionFactory.id>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-11-29 10:15:40 -05:00
|
|
|
</plugins>
|
|
|
|
</build>
|
2006-09-05 03:00:52 -04:00
|
|
|
</project>
|