Remove deprecated/dead Version endpoint code
[aaa.git] / aaa-authn-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.aaa</groupId>
6     <artifactId>aaa-parent</artifactId>
7     <version>0.4.0-SNAPSHOT</version>
8     <relativePath>../parent</relativePath>
9   </parent>
10
11   <artifactId>aaa-authn-api</artifactId>
12   <packaging>bundle</packaging>
13
14   <dependencies>
15     <dependency>
16       <groupId>org.slf4j</groupId>
17       <artifactId>slf4j-api</artifactId>
18     </dependency>
19     <dependency>
20       <groupId>org.slf4j</groupId>
21       <artifactId>slf4j-simple</artifactId>
22     </dependency>
23     <dependency>
24         <groupId>com.sun.jersey</groupId>
25         <artifactId>jersey-server</artifactId>
26         <scope>provided</scope>
27     </dependency>
28   </dependencies>
29   <build>
30     <plugins>
31       <plugin>
32         <groupId>org.apache.felix</groupId>
33         <artifactId>maven-bundle-plugin</artifactId>
34       </plugin>
35     </plugins>
36   </build>
37
38 </project>