Merge "Enables TokenAuthRealm adapter to existing data stores"
[aaa.git] / aaa-authn-basic / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.aaa</groupId>
7         <artifactId>aaa-parent</artifactId>
8         <version>0.3.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-basic</artifactId>
13     <version>0.3.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.aaa</groupId>
19             <artifactId>aaa-authn</artifactId>
20         </dependency>
21         <dependency>
22             <groupId>org.opendaylight.aaa</groupId>
23             <artifactId>aaa-authn-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.slf4j</groupId>
27             <artifactId>slf4j-api</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.sun.jersey</groupId>
31             <artifactId>jersey-server</artifactId>
32             <scope>provided</scope>
33         </dependency>
34         <dependency>
35             <groupId>org.osgi</groupId>
36             <artifactId>org.osgi.core</artifactId>
37             <scope>provided</scope>
38         </dependency>
39         <dependency>
40             <groupId>org.apache.felix</groupId>
41             <artifactId>org.apache.felix.dependencymanager</artifactId>
42             <scope>provided</scope>
43         </dependency>
44         <!-- Testing Dependencies -->
45         <dependency>
46             <groupId>junit</groupId>
47             <artifactId>junit</artifactId>
48             <scope>test</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.slf4j</groupId>
52             <artifactId>slf4j-simple</artifactId>
53             <scope>test</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.mockito</groupId>
57             <artifactId>mockito-all</artifactId>
58             <scope>test</scope>
59         </dependency>
60     </dependencies>
61
62     <build>
63         <plugins>
64             <plugin>
65                 <groupId>org.apache.felix</groupId>
66                 <artifactId>maven-bundle-plugin</artifactId>
67                 <extensions>true</extensions>
68                 <configuration>
69                     <instructions>
70                         <Bundle-Activator>org.opendaylight.aaa.basic.Activator</Bundle-Activator>
71                     </instructions>
72                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
73                 </configuration>
74             </plugin>
75         </plugins>
76     </build>
77 </project>