Add missing <name> fields for pom.xml files
[aaa.git] / aaa-authn-sts / 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-sts</artifactId>
13     <name>ODL :: aaa :: ${project.artifactId}</name>
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>com.sun.jersey</groupId>
27             <artifactId>jersey-server</artifactId>
28             <scope>provided</scope>
29         </dependency>
30         <dependency>
31             <groupId>javax.servlet</groupId>
32             <artifactId>javax.servlet-api</artifactId>
33             <scope>provided</scope>
34         </dependency>
35         <dependency>
36             <groupId>org.apache.oltu.oauth2</groupId>
37             <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
38             <scope>provided</scope>
39         </dependency>
40         <dependency>
41             <groupId>org.apache.oltu.oauth2</groupId>
42             <artifactId>org.apache.oltu.oauth2.common</artifactId>
43             <scope>provided</scope>
44         </dependency>
45         <dependency>
46             <groupId>org.apache.oltu.oauth2</groupId>
47             <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
48             <scope>provided</scope>
49         </dependency>
50         <dependency>
51             <groupId>org.osgi</groupId>
52             <artifactId>org.osgi.core</artifactId>
53             <scope>provided</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.apache.felix</groupId>
57             <artifactId>org.apache.felix.dependencymanager</artifactId>
58             <scope>provided</scope>
59         </dependency>
60         <!-- Testing Dependencies -->
61         <dependency>
62             <groupId>com.sun.jersey.jersey-test-framework</groupId>
63             <artifactId>jersey-test-framework-grizzly2</artifactId>
64             <scope>test</scope>
65         </dependency>
66         <dependency>
67             <groupId>org.mortbay.jetty</groupId>
68             <artifactId>jetty-servlet-tester</artifactId>
69             <scope>test</scope>
70         </dependency>
71         <dependency>
72             <groupId>junit</groupId>
73             <artifactId>junit</artifactId>
74             <scope>test</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.mockito</groupId>
78             <artifactId>mockito-core</artifactId>
79             <scope>test</scope>
80         </dependency>
81     </dependencies>
82
83     <build>
84         <plugins>
85             <plugin>
86                 <groupId>org.apache.felix</groupId>
87                 <artifactId>maven-bundle-plugin</artifactId>
88                 <extensions>true</extensions>
89                 <configuration>
90                     <instructions>
91                         <Import-Package>
92                             *,
93                             com.sun.jersey.spi.container.servlet
94                         </Import-Package>
95                         <Web-ContextPath>/oauth2</Web-ContextPath>
96                         <Bundle-Activator>org.opendaylight.aaa.sts.Activator</Bundle-Activator>
97                     </instructions>
98                 </configuration>
99             </plugin>
100         </plugins>
101     </build>
102
103 </project>