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