2006-10-26 05:15:23 -04:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2005-12-29 23:37:28 -05:00
|
|
|
<!--
|
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
|
2005-12-29 23:37:28 -05:00
|
|
|
~
|
2009-12-15 18:07:36 -05:00
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
2005-12-29 23:37:28 -05:00
|
|
|
~
|
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-12-15 18:07:36 -05:00
|
|
|
-->
|
|
|
|
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2005-11-29 02:46:08 -05:00
|
|
|
<parent>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>plugins</artifactId>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2010-01-12 21:07:00 -05:00
|
|
|
<version>1.4-SNAPSHOT</version>
|
2005-11-29 02:46:08 -05:00
|
|
|
</parent>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>problem-reports</artifactId>
|
|
|
|
<name>Archiva Problem Reporting Plugin</name>
|
2005-11-29 02:46:08 -05:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>metadata-repository-api</artifactId>
|
2005-12-06 00:55:45 -05:00
|
|
|
</dependency>
|
2006-09-05 01:12:31 -04:00
|
|
|
<dependency>
|
2008-03-28 22:01:11 -04:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2010-03-08 23:24:32 -05:00
|
|
|
<artifactId>archiva-checksum</artifactId>
|
2006-09-05 01:12:31 -04:00
|
|
|
</dependency>
|
2006-06-07 07:22:35 -04:00
|
|
|
<dependency>
|
2009-12-15 18:07:36 -05:00
|
|
|
<groupId>org.apache.archiva</groupId>
|
2010-03-08 23:24:32 -05:00
|
|
|
<artifactId>archiva-model</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-consumer-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-all</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>test-repository</artifactId>
|
|
|
|
<scope>test</scope>
|
2009-03-13 22:33:57 -04:00
|
|
|
</dependency>
|
2005-11-29 02:46:08 -05:00
|
|
|
</dependencies>
|
2010-03-08 23:24:32 -05:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>test-repository</id>
|
|
|
|
<phase>generate-test-resources</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>unpack-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<includeArtifactIds>test-repository</includeArtifactIds>
|
|
|
|
<outputDirectory>target/test-repository</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
2005-11-29 02:46:08 -05:00
|
|
|
</project>
|