Deprecate odl-aaa-keystone feature
[aaa.git] / aaa-idp-mapping / 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-idpmapping</artifactId>
12   <version>0.4.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16     <dependency>
17       <groupId>org.glassfish</groupId>
18       <artifactId>javax.json</artifactId>
19     </dependency>
20     <dependency>
21       <groupId>org.osgi</groupId>
22       <artifactId>org.osgi.core</artifactId>
23       <scope>provided</scope>
24     </dependency>
25     <dependency>
26       <groupId>org.slf4j</groupId>
27       <artifactId>slf4j-api</artifactId>
28     </dependency>
29     <dependency>
30       <groupId>org.apache.felix</groupId>
31       <artifactId>org.apache.felix.dependencymanager</artifactId>
32       <scope>provided</scope>
33     </dependency>
34
35     <!-- Test dependencies -->
36     <dependency>
37       <groupId>junit</groupId>
38       <artifactId>junit</artifactId>
39       <scope>test</scope>
40     </dependency>
41     <dependency>
42       <groupId>org.mockito</groupId>
43       <artifactId>mockito-all</artifactId>
44       <scope>test</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.slf4j</groupId>
48       <artifactId>slf4j-simple</artifactId>
49       <scope>test</scope>
50     </dependency>
51     <dependency>
52       <groupId>org.powermock</groupId>
53       <artifactId>powermock-api-mockito</artifactId>
54       <scope>test</scope>
55     </dependency>
56     <dependency>
57       <groupId>org.powermock</groupId>
58       <artifactId>powermock-module-junit4</artifactId>
59       <scope>test</scope>
60     </dependency>
61   </dependencies>
62
63   <build>
64     <plugins>
65       <plugin>
66         <groupId>org.apache.felix</groupId>
67         <artifactId>maven-bundle-plugin</artifactId>
68         <extensions>true</extensions>
69         <configuration>
70           <instructions>
71             <Bundle-Activator>org.opendaylight.aaa.idpmapping.Activator</Bundle-Activator>
72           </instructions>
73           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
74         </configuration>
75       </plugin>
76     </plugins>
77   </build>
78 </project>