Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
consumer to move old releases to an archive location
git-svn-id: https://svn.apache.org/repos/asf/archiva/sandbox/trunk@1615046 13f79535-47bb-0310-9956-ffa450edef68
- Loading branch information
Showing
6 changed files
with
830 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@@ -0,0 +1,236 @@ | ||
<?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/maven-v4_0_0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
<groupId>org.apache.archiva.plugins</groupId> | ||
<artifactId>archive-releases-consumer</artifactId> | ||
<version>1.0-SNAPSHOT</version> | ||
<name>Apache Archiva Consumer to Archive Releases</name> | ||
<description> | ||
This is a simple consumer component which will archive releases over a certain age to an archive directory, removing | ||
them from the repository system. | ||
</description> | ||
<properties> | ||
<archiva.version>2.1.1-SNAPSHOT</archiva.version> | ||
<slf4j.version>1.7.7</slf4j.version> | ||
<log4j.version>2.0</log4j.version> | ||
<spring.version>4.0.6.RELEASE</spring.version> | ||
<redback.registry.version>2.3</redback.registry.version> | ||
<guava.version>16.0.1</guava.version> | ||
<springockito.version>1.0.9</springockito.version> | ||
<mockito.version>1.9.0</mockito.version> | ||
<httpclient.version>4.3.1</httpclient.version> | ||
<httpclient.core.version>4.3</httpclient.core.version> | ||
</properties> | ||
<dependencies> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>archiva-consumer-api</artifactId> | ||
<version>${archiva.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>archiva-configuration</artifactId> | ||
<version>${archiva.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>archiva-repository-admin-api</artifactId> | ||
<version>${archiva.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>archiva-model</artifactId> | ||
<version>${archiva.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>archiva-repository-layer</artifactId> | ||
<version>${archiva.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>metadata-repository-api</artifactId> | ||
<version>${archiva.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva.redback.components.registry</groupId> | ||
<artifactId>spring-registry-api</artifactId> | ||
<version>${redback.registry.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.slf4j</groupId> | ||
<artifactId>slf4j-api</artifactId> | ||
<version>${slf4j.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.inject</groupId> | ||
<artifactId>javax.inject</artifactId> | ||
<version>1</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>javax.annotation</groupId> | ||
<artifactId>jsr250-api</artifactId> | ||
<version>1.0</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-context</artifactId> | ||
<version>${spring.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
|
||
<dependency> | ||
<groupId>junit</groupId> | ||
<artifactId>junit</artifactId> | ||
<version>4.11</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.springframework</groupId> | ||
<artifactId>spring-test</artifactId> | ||
<version>${spring.version}</version> | ||
<exclusions> | ||
<exclusion> | ||
<groupId>commons-logging</groupId> | ||
<artifactId>commons-logging</artifactId> | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.archiva</groupId> | ||
<artifactId>maven2-repository</artifactId> | ||
<version>${archiva.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-core</artifactId> | ||
<version>${log4j.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.logging.log4j</groupId> | ||
<artifactId>log4j-slf4j-impl</artifactId> | ||
<version>${log4j.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.kubek2k</groupId> | ||
<artifactId>springockito</artifactId> | ||
<version>${springockito.version}</version> | ||
<scope>test</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<!-- match up with those used by Archiva --> | ||
<dependencyManagement> | ||
<dependencies> | ||
<dependency> | ||
<groupId>com.google.guava</groupId> | ||
<artifactId>guava</artifactId> | ||
<version>${guava.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.mockito</groupId> | ||
<artifactId>mockito-all</artifactId> | ||
<version>${mockito.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpclient</artifactId> | ||
<version>${httpclient.version}</version> | ||
</dependency> | ||
<dependency> | ||
<groupId>org.apache.httpcomponents</groupId> | ||
<artifactId>httpcore</artifactId> | ||
<version>${httpclient.core.version}</version> | ||
</dependency> | ||
</dependencies> | ||
</dependencyManagement> | ||
|
||
<build> | ||
<pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-clean-plugin</artifactId> | ||
<version>2.5</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.1</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-resources-plugin</artifactId> | ||
<version>2.6</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>2.4</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>2.17</version> | ||
</plugin> | ||
</plugins> | ||
</pluginManagement> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.apache.maven.plugins</groupId> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<configuration> | ||
<source>1.7</source> | ||
<target>1.7</target> | ||
</configuration> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
<!--repositories> | ||
<repository> | ||
<id>archiva.snapshots</id> | ||
<name>Archiva VM Snapshots Repository</name> | ||
<url>https://archiva-repository.apache.org/archiva/repository/snapshots</url> | ||
<releases> | ||
<enabled>false</enabled> | ||
</releases> | ||
<snapshots> | ||
<enabled>true</enabled> | ||
</snapshots> | ||
</repository> | ||
</repositories--> | ||
</project> |
Oops, something went wrong.