2a832a62975c2191fd229fa9eed19a0fd62c5ba1
[aaa.git] / aaa-authn-odl-plugin / 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.project</artifactId>
8         <version>0.1.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>aaa-authn-odl-plugin</artifactId>
13     <version>0.1.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15     <dependencies>
16         <dependency>
17             <groupId>org.opendaylight.aaa</groupId>
18             <artifactId>aaa-authn-api</artifactId>
19             <version>${project.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.slf4j</groupId>
23             <artifactId>slf4j-api</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>org.opendaylight.controller</groupId>
27             <artifactId>netconf-auth</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>org.osgi</groupId>
31             <artifactId>org.osgi.core</artifactId>
32             <scope>provided</scope>
33         </dependency>
34         <!-- Testing Dependencies -->
35         <dependency>
36             <groupId>junit</groupId>
37             <artifactId>junit</artifactId>
38             <scope>test</scope>
39         </dependency>
40         <dependency>
41             <groupId>org.slf4j</groupId>
42             <artifactId>slf4j-simple</artifactId>
43             <version>1.7.7</version>
44             <scope>test</scope>
45         </dependency>
46         <dependency>
47             <groupId>org.mockito</groupId>
48             <artifactId>mockito-all</artifactId>
49             <scope>test</scope>
50         </dependency>
51     </dependencies>
52
53     <build>
54         <plugins>
55             <plugin>
56                 <groupId>org.apache.felix</groupId>
57                 <artifactId>maven-bundle-plugin</artifactId>
58                 <extensions>true</extensions>
59                 <configuration>
60                     <instructions>
61                         <Bundle-Activator>org.opendaylight.aaa.odl.AuthProviderActivator</Bundle-Activator>
62                     </instructions>
63                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
64                 </configuration>
65             </plugin>
66         </plugins>
67     </build>
68 </project>