mirror of https://github.com/apache/archiva.git
45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
|
<?xml version="1.0"?>
|
||
|
<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>
|
||
|
<parent>
|
||
|
<artifactId>archiva-rest</artifactId>
|
||
|
<groupId>org.apache.archiva</groupId>
|
||
|
<version>1.4-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<artifactId>archiva-rest-api</artifactId>
|
||
|
<name>Archiva Web :: REST support :: Api</name>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.codehaus.redback</groupId>
|
||
|
<artifactId>redback-authorization-api</artifactId>
|
||
|
<exclusions>
|
||
|
<exclusion>
|
||
|
<groupId>commons-logging</groupId>
|
||
|
<artifactId>commons-logging</artifactId>
|
||
|
</exclusion>
|
||
|
</exclusions>
|
||
|
</dependency>
|
||
|
<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>
|
||
|
</project>
|