2009-10-07 06:12:41 -04:00
|
|
|
<?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.
|
|
|
|
-->
|
|
|
|
|
2020-06-25 16:41:56 -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">
|
2008-04-02 23:42:59 -04:00
|
|
|
<parent>
|
|
|
|
<artifactId>archiva-web</artifactId>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2017-05-18 01:04:58 -04:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2008-04-02 23:42:59 -04:00
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>archiva-rss</artifactId>
|
|
|
|
<name>Archiva Web :: RSS</name>
|
2018-11-04 07:34:47 -05:00
|
|
|
|
|
|
|
<properties>
|
|
|
|
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
|
|
|
</properties>
|
|
|
|
|
2008-04-02 23:42:59 -04:00
|
|
|
<dependencies>
|
2020-02-04 03:54:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-api</artifactId>
|
|
|
|
</dependency>
|
2008-04-06 22:56:58 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-12-09 03:08:21 -05:00
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
2008-04-27 10:04:28 -04:00
|
|
|
</dependency>
|
2008-04-02 23:42:59 -04:00
|
|
|
<dependency>
|
2020-06-25 16:41:56 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
2008-04-02 23:42:59 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2020-07-04 11:00:19 -04:00
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
2008-04-02 23:42:59 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2019-10-05 10:15:17 -04:00
|
|
|
<groupId>com.rometools</groupId>
|
2008-04-02 23:42:59 -04:00
|
|
|
<artifactId>rome</artifactId>
|
|
|
|
</dependency>
|
2020-01-27 14:12:09 -05:00
|
|
|
|
|
|
|
<!-- TEST Scope -->
|
2020-06-05 14:09:53 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-http</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.maven.wagon</groupId>
|
|
|
|
<artifactId>wagon-http-lightweight</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-02-04 03:54:20 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva.maven</groupId>
|
|
|
|
<artifactId>archiva-maven-repository</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-layer</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-storage-fs</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-filelock</artifactId>
|
|
|
|
<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>
|
2009-12-09 03:08:21 -05:00
|
|
|
</dependency>
|
2011-06-01 09:27:46 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
2014-01-06 00:32:45 -05:00
|
|
|
</dependency>
|
2022-01-04 14:46:35 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-25 16:41:56 -04:00
|
|
|
|
2008-04-02 23:42:59 -04:00
|
|
|
</dependencies>
|
2020-06-25 16:41:56 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/repositories/test-repo/**</exclude>
|
|
|
|
<exclude>src/test/repositories/snapshot-repo/**</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<reuseForks>false</reuseForks>
|
2020-07-01 16:27:51 -04:00
|
|
|
<argLine>-Xms512m -Xmx1024m -server</argLine>
|
2020-06-25 16:41:56 -04:00
|
|
|
<systemPropertyVariables>
|
|
|
|
<appserver.base>${project.build.directory}/appserver-base</appserver.base>
|
|
|
|
<plexus.home>${project.build.directory}/appserver-base</plexus.home>
|
|
|
|
<derby.system.home>${project.build.directory}/appserver-base</derby.system.home>
|
|
|
|
<archiva.user.configFileName>${basedir}/target/archiva.xml</archiva.user.configFileName>
|
|
|
|
<test.resources.path>${project.build.testOutputDirectory}</test.resources.path>
|
|
|
|
<redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
|
|
|
|
<redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
|
|
|
|
<basedir>${basedir}</basedir>
|
|
|
|
<expectedVersion>${project.version}</expectedVersion>
|
|
|
|
<archiva.logMissingI18n>true</archiva.logMissingI18n>
|
|
|
|
<java.awt.headless>true</java.awt.headless>
|
|
|
|
<archiva.repositorySessionFactory.id>test</archiva.repositorySessionFactory.id>
|
|
|
|
<openjpa.Log>${openjpa.Log}</openjpa.Log>
|
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2008-04-02 23:42:59 -04:00
|
|
|
</project>
|