Added integration tests back (and cleaned up poms). Integration tests can be trigger...
[aaa.git] / aaa-idmlight / 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-idmlight</artifactId>
13     <version>0.1.0-SNAPSHOT</version>
14     <packaging>bundle</packaging>
15
16     <dependencies>
17         <dependency>
18             <groupId>org.opendaylight.aaa</groupId>
19             <artifactId>aaa-authn-api</artifactId>
20             <version>${project.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.aaa</groupId>
24             <artifactId>aaa-authn</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>javax.servlet</groupId>
38             <artifactId>servlet-api</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
47         <!-- JSON JAXB Stuff -->
48         <dependency>
49             <groupId>com.sun.jersey</groupId>
50             <artifactId>jersey-json</artifactId>
51             <scope>provided</scope>
52         </dependency>
53         <dependency>
54             <groupId>org.codehaus.jackson</groupId>
55             <artifactId>jackson-core-asl</artifactId>
56             <scope>provided</scope>
57         </dependency>
58         <dependency>
59             <groupId>org.codehaus.jackson</groupId>
60             <artifactId>jackson-mapper-asl</artifactId>
61             <scope>provided</scope>
62         </dependency>
63         <dependency>
64             <groupId>org.codehaus.jackson</groupId>
65             <artifactId>jackson-jaxrs</artifactId>
66             <scope>provided</scope>
67         </dependency>
68         <dependency>
69             <groupId>org.codehaus.jackson</groupId>
70             <artifactId>jackson-xc</artifactId>
71             <scope>provided</scope>
72         </dependency>
73         <dependency>
74             <groupId>org.codehaus.jettison</groupId>
75             <artifactId>jettison</artifactId>
76             <scope>provided</scope>
77         </dependency>
78
79         <!-- JDBC -->
80         <dependency>
81             <groupId>org.xerial</groupId>
82             <artifactId>sqlite-jdbc</artifactId>
83         </dependency>
84
85         <!-- Testing Dependencies -->
86         <dependency>
87             <groupId>com.sun.jersey.jersey-test-framework</groupId>
88             <artifactId>jersey-test-framework-grizzly2</artifactId>
89             <scope>test</scope>
90         </dependency>
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <scope>test</scope>
95         </dependency>
96         <dependency>
97             <groupId>org.slf4j</groupId>
98             <artifactId>slf4j-simple</artifactId>
99             <scope>test</scope>
100         </dependency>
101     </dependencies>
102
103     <build>
104         <plugins>
105             <plugin>
106                 <groupId>org.apache.felix</groupId>
107                 <artifactId>maven-bundle-plugin</artifactId>
108                 <extensions>true</extensions>
109                 <configuration>
110                     <instructions>
111                         <Import-Package>*,com.sun.jersey.spi.container.servlet</Import-Package>
112                         <Web-ContextPath>/auth</Web-ContextPath>
113                         <Bundle-Activator>org.opendaylight.aaa.idm.Activator</Bundle-Activator>
114                     </instructions>
115                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
116                 </configuration>
117             </plugin>
118         </plugins>
119     </build>
120
121 </project>