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