2009-11-19 17:16:20 +00:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2011-08-25 08:42:50 +00: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
|
|
|
|
~
|
|
|
|
~ 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.
|
|
|
|
-->
|
2011-10-18 12:19:44 +00: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/xsd/maven-4.0.0.xsd">
|
2009-11-19 17:16:20 +00:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>archiva-scheduler</artifactId>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2017-05-18 15:04:58 +10:00
|
|
|
<version>3.0.0-SNAPSHOT</version>
|
2009-11-19 17:16:20 +00:00
|
|
|
</parent>
|
|
|
|
<artifactId>archiva-scheduler-indexing</artifactId>
|
2011-09-01 17:09:08 +00:00
|
|
|
<name>Archiva Scheduler :: Indexing</name>
|
2011-09-26 16:07:16 +00:00
|
|
|
|
2018-11-04 13:34:47 +01:00
|
|
|
<properties>
|
|
|
|
<site.staging.base>${project.parent.parent.basedir}</site.staging.base>
|
|
|
|
</properties>
|
|
|
|
|
2009-11-19 17:16:20 +00:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-scheduler-api</artifactId>
|
|
|
|
</dependency>
|
2011-09-13 12:12:39 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2020-02-03 21:58:05 +01:00
|
|
|
<artifactId>archiva-repository-api</artifactId>
|
2011-09-13 12:12:39 +00:00
|
|
|
</dependency>
|
2020-02-03 21:58:05 +01:00
|
|
|
<!--
|
2009-11-19 17:16:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-configuration</artifactId>
|
|
|
|
</dependency>
|
2020-02-03 21:58:05 +01:00
|
|
|
-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva.components</groupId>
|
|
|
|
<artifactId>archiva-components-spring-taskqueue</artifactId>
|
|
|
|
</dependency>
|
2010-06-11 08:35:06 +00:00
|
|
|
<dependency>
|
2020-07-04 17:00:19 +02:00
|
|
|
<groupId>jakarta.inject</groupId>
|
|
|
|
<artifactId>jakarta.inject-api</artifactId>
|
2010-06-11 08:35:06 +00:00
|
|
|
</dependency>
|
2011-09-26 16:07:16 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
</dependency>
|
2009-11-19 17:16:20 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2013-11-07 05:21:39 +00:00
|
|
|
|
2009-11-19 17:16:20 +00:00
|
|
|
</dependencies>
|
2011-09-26 16:07:16 +00:00
|
|
|
|
|
|
|
<build>
|
2011-10-01 05:17:00 +00:00
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.rat</groupId>
|
|
|
|
<artifactId>apache-rat-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<excludes>
|
|
|
|
<exclude>src/test/index-updates/nexus-maven-repository-index.properties</exclude>
|
|
|
|
</excludes>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
2011-09-26 16:07:16 +00:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemPropertyVariables>
|
2011-10-01 04:56:42 +00:00
|
|
|
<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>
|
2011-11-07 08:29:35 +00:00
|
|
|
<redback.jdbc.url>${redbackTestJdbcUrl}</redback.jdbc.url>
|
|
|
|
<redback.jdbc.driver.name>${redbackTestJdbcDriver}</redback.jdbc.driver.name>
|
2011-10-05 10:23:09 +00:00
|
|
|
<basedir>${basedir}</basedir>
|
2014-03-28 11:43:24 +00:00
|
|
|
<archiva.repositorySessionFactory.id>mock</archiva.repositorySessionFactory.id>
|
2017-05-21 17:39:07 +02:00
|
|
|
<openjpa.Log>${openjpa.Log}</openjpa.Log>
|
2011-09-26 16:07:16 +00:00
|
|
|
</systemPropertyVariables>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2009-11-19 17:16:20 +00:00
|
|
|
</project>
|