2011-08-17 19:53:53 -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.
|
|
|
|
-->
|
|
|
|
<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">
|
2011-08-17 19:53:30 -04:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
|
|
<artifactId>archiva-rest</artifactId>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2011-12-13 13:18:37 -05:00
|
|
|
<version>1.4-M3-SNAPSHOT</version>
|
2011-08-17 19:53:30 -04:00
|
|
|
</parent>
|
|
|
|
<artifactId>archiva-rest-api</artifactId>
|
2011-11-24 18:04:57 -05:00
|
|
|
<packaging>bundle</packaging>
|
2011-08-17 19:53:30 -04:00
|
|
|
<name>Archiva Web :: REST support :: Api</name>
|
|
|
|
|
|
|
|
<dependencies>
|
2011-08-19 03:53:42 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
2011-09-10 03:34:10 -04:00
|
|
|
<artifactId>archiva-security-common</artifactId>
|
|
|
|
|
2011-08-19 03:53:42 -04:00
|
|
|
</dependency>
|
|
|
|
|
2011-09-15 13:37:35 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-admin-api</artifactId>
|
2012-01-30 04:47:41 -05:00
|
|
|
</dependency>
|
2011-09-15 13:37:35 -04:00
|
|
|
|
2012-01-30 04:47:41 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-policies</artifactId>
|
2011-09-15 13:37:35 -04:00
|
|
|
</dependency>
|
|
|
|
|
2012-02-24 16:18:34 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>metadata-model</artifactId>
|
|
|
|
</dependency>
|
2012-01-30 04:47:41 -05:00
|
|
|
|
2012-03-09 18:44:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.archiva</groupId>
|
|
|
|
<artifactId>archiva-repository-scanner</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.redback</groupId>
|
|
|
|
<artifactId>redback-authorization-api</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2011-08-23 08:18:49 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
2011-08-23 08:19:02 -04:00
|
|
|
<artifactId>jaxb-api</artifactId>
|
2011-08-23 08:18:49 -04:00
|
|
|
</dependency>
|
2011-08-17 19:53:30 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>javax.ws.rs</groupId>
|
|
|
|
<artifactId>jsr311-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- normally not needed but here for wadl feature currently in cxf -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
<artifactId>cxf-bundle-jaxrs</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.eclipse.jetty</groupId>
|
|
|
|
<artifactId>jetty-server</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2011-09-30 10:00:23 -04:00
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
2011-11-24 18:04:57 -05:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.felix</groupId>
|
|
|
|
<artifactId>maven-bundle-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<instructions>
|
|
|
|
<Bundle-SymbolicName>org.apache.archiva.rest.api</Bundle-SymbolicName>
|
|
|
|
<Bundle-Version>${project.version}</Bundle-Version>
|
|
|
|
<Export-Package>
|
|
|
|
org.apache.archiva.rest.api.model;version=${project.version};-split-package:=merge-first,
|
|
|
|
org.apache.archiva.rest.api.services;version=${project.version};-split-package:=merge-first
|
|
|
|
</Export-Package>
|
|
|
|
<Import-Package>
|
|
|
|
javax.ws.rs,
|
|
|
|
javax.xml.bind.annotation,
|
|
|
|
org.apache.archiva.admin.model.beans;version=${project.version},
|
2012-02-25 15:45:31 -05:00
|
|
|
org.codehaus.plexus.redback.authorization,
|
|
|
|
org.apache.archiva.metadata.model
|
2011-11-24 18:04:57 -05:00
|
|
|
</Import-Package>
|
|
|
|
</instructions>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
2011-09-30 10:00:23 -04:00
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>bind-sources</id>
|
|
|
|
<goals>
|
|
|
|
<goal>jar-no-fork</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2011-08-17 19:53:30 -04:00
|
|
|
</project>
|