Initial WIP for AAA
[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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.opendaylight.aaa</groupId>
6     <artifactId>aaa.project</artifactId>
7     <version>0.1.0-SNAPSHOT</version>
8     <relativePath>../</relativePath>
9   </parent>
10
11   <artifactId>aaa-authn-sts</artifactId>
12   <version>0.1.0-SNAPSHOT</version>
13   <packaging>bundle</packaging>
14
15   <dependencies>
16
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.opendaylight.controller</groupId>
29       <artifactId>sal</artifactId>
30     </dependency>
31     <dependency>
32       <groupId>org.slf4j</groupId>
33       <artifactId>slf4j-api</artifactId>
34     </dependency>
35     <dependency>
36       <groupId>com.sun.jersey</groupId>
37       <artifactId>jersey-server</artifactId>
38       <scope>provided</scope>
39     </dependency>
40     <dependency>
41       <groupId>javax.servlet</groupId>
42       <artifactId>servlet-api</artifactId>
43       <version>2.5</version>
44       <scope>provided</scope>
45     </dependency>
46     <dependency>
47       <groupId>org.apache.oltu.oauth2</groupId>
48       <artifactId>org.apache.oltu.oauth2.authzserver</artifactId>
49       <version>1.0.0</version>
50       <scope>provided</scope>
51     </dependency>
52     <dependency>
53       <groupId>org.apache.oltu.oauth2</groupId>
54       <artifactId>org.apache.oltu.oauth2.common</artifactId>
55       <version>1.0.0</version>
56       <scope>provided</scope>
57     </dependency>
58     <dependency>
59       <groupId>org.apache.oltu.oauth2</groupId>
60       <artifactId>org.apache.oltu.oauth2.resourceserver</artifactId>
61       <version>1.0.0</version>
62       <scope>provided</scope>
63     </dependency>
64     <dependency>
65       <groupId>org.osgi</groupId>
66       <artifactId>org.osgi.core</artifactId>
67       <scope>provided</scope>
68     </dependency>
69
70     <!-- Testing Dependencies -->
71     <dependency>
72       <groupId>junit</groupId>
73       <artifactId>junit</artifactId>
74       <scope>test</scope>
75     </dependency>
76     <dependency>
77       <groupId>org.apache.oltu.oauth2</groupId>
78       <artifactId>org.apache.oltu.oauth2.client</artifactId>
79       <version>1.0.0</version>
80       <scope>test</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.slf4j</groupId>
84       <artifactId>slf4j-simple</artifactId>
85       <version>1.7.7</version>
86       <scope>test</scope>
87     </dependency>
88   </dependencies>
89
90   <build>
91     <plugins>
92       <plugin>
93         <groupId>org.apache.felix</groupId>
94         <artifactId>maven-bundle-plugin</artifactId>
95         <extensions>true</extensions>
96         <configuration>
97           <instructions>
98             <Import-Package>*,com.sun.jersey.spi.container.servlet</Import-Package>
99             <Web-ContextPath>/oauth2</Web-ContextPath>
100             <Bundle-Activator>org.opendaylight.aaa.sts.Activator</Bundle-Activator>
101             <manifestLocation>${project.basedir}/META-INF</manifestLocation>
102           </instructions>
103         </configuration>
104       </plugin>
105     </plugins>
106   </build>
107
108 </project>