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
|
|
|
-->
|
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/xsd/maven-4.0.0.xsd">
|
2009-12-15 18:07:36 -05:00
|
|
|
<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>
|
2011-12-13 13:18:37 -05:00
|
|
|
<version>1.4-M3-SNAPSHOT</version>
|
2005-11-29 02:46:08 -05:00
|
|
|
</parent>
|
2009-12-15 18:07:36 -05:00
|
|
|
<artifactId>problem-reports</artifactId>
|
2011-11-22 09:17:04 -05:00
|
|
|
<packaging>bundle</packaging>
|
2011-09-01 13:09:08 -04:00
|
|
|
<name>Archiva Core Plugins :: 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>
|
2011-09-13 08:12:39 -04:00
|
|
|
<!-- FIXME this deps must be removed -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-configuration</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-admin-api</artifactId>
|
|
|
|
</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>
|
2011-11-22 09:17:04 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.apache.archiva.reports</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Export-Package>
|
|
|
|
org.apache.archiva.reports*;version=${project.version}
|
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>
|
|
|
|
javax.annotation,
|
|
|
|
javax.inject,
|
|
|
|
org.apache.archiva.admin.model.beans;version=${project.version},
|
|
|
|
org.apache.archiva.checksum;version=${project.version},
|
|
|
|
org.apache.archiva.configuration;version=${project.version},
|
|
|
|
org.apache.archiva.metadata.model;version=${project.version},
|
|
|
|
org.apache.archiva.metadata.repository;version=${project.version},
|
|
|
|
org.apache.archiva.metadata.repository.storage;version=${project.version},
|
|
|
|
org.apache.archiva.repository.events;version=${project.version},
|
|
|
|
org.apache.archiva.consumers;version=${project.version},
|
|
|
|
org.apache.commons.collections;version="[3.2,4)",
|
|
|
|
org.springframework.*;version="[3,4)",
|
2012-04-12 11:09:01 -04:00
|
|
|
org.apache.archiva.redback.components.registry,
|
2011-11-22 09:17:04 -05:00
|
|
|
org.slf4j;resolution:=optional
|
|
|
|
</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2010-03-08 23:24:32 -05:00
|
|
|
<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>
|