Re-organize the features module
[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-parent</artifactId>
8         <version>0.5.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>aaa-idmlight</artifactId>
13     <packaging>bundle</packaging>
14
15     <dependencies>
16         <!--Yang Binding -->
17         <dependency>
18             <groupId>org.opendaylight.controller</groupId>
19             <artifactId>config-api</artifactId>
20             <version>${config.version}</version>
21         </dependency>
22         <dependency>
23             <groupId>org.opendaylight.controller</groupId>
24             <artifactId>sal-binding-config</artifactId>
25         </dependency>
26         <dependency>
27             <groupId>org.opendaylight.controller</groupId>
28             <artifactId>sal-binding-api</artifactId>
29         </dependency>
30         <dependency>
31             <groupId>org.opendaylight.controller</groupId>
32             <artifactId>sal-common-util</artifactId>
33         </dependency>
34
35         <dependency>
36             <groupId>org.opendaylight.aaa</groupId>
37             <artifactId>aaa-authn-api</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.aaa</groupId>
41             <artifactId>aaa-shiro</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>org.opendaylight.aaa</groupId>
45             <artifactId>aaa-authn</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>org.opendaylight.aaa</groupId>
49             <artifactId>aaa-filterchain</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.slf4j</groupId>
53             <artifactId>slf4j-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>com.sun.jersey</groupId>
57             <artifactId>jersey-server</artifactId>
58             <scope>provided</scope>
59         </dependency>
60         <dependency>
61             <groupId>javax.servlet</groupId>
62             <artifactId>javax.servlet-api</artifactId>
63             <scope>provided</scope>
64         </dependency>
65         <dependency>
66             <groupId>org.apache.felix</groupId>
67             <artifactId>org.apache.felix.dependencymanager</artifactId>
68             <scope>provided</scope>
69         </dependency>
70         <dependency>
71             <groupId>org.mockito</groupId>
72             <artifactId>mockito-all</artifactId>
73             <scope>test</scope>
74         </dependency>
75         <dependency>
76             <groupId>org.osgi</groupId>
77             <artifactId>org.osgi.core</artifactId>
78         </dependency>
79
80         <!-- JSON JAXB Stuff -->
81         <dependency>
82             <groupId>com.fasterxml.jackson.core</groupId>
83             <artifactId>jackson-core</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>com.fasterxml.jackson.core</groupId>
87             <artifactId>jackson-annotations</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>com.fasterxml.jackson.core</groupId>
91             <artifactId>jackson-databind</artifactId>
92         </dependency>
93         <dependency>
94             <groupId>com.fasterxml.jackson.datatype</groupId>
95             <artifactId>jackson-datatype-json-org</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>com.fasterxml.jackson.jaxrs</groupId>
99             <artifactId>jackson-jaxrs-base</artifactId>
100         </dependency>
101         <dependency>
102             <groupId>com.fasterxml.jackson.jaxrs</groupId>
103             <artifactId>jackson-jaxrs-json-provider</artifactId>
104         </dependency>
105         <dependency>
106             <groupId>com.fasterxml.jackson.module</groupId>
107             <artifactId>jackson-module-jaxb-annotations</artifactId>
108         </dependency>
109
110         <dependency>
111             <groupId>org.eclipse.jetty</groupId>
112             <artifactId>jetty-servlets</artifactId>
113             <scope>provided</scope>
114         </dependency>
115
116         <!-- Testing Dependencies -->
117         <dependency>
118             <groupId>com.sun.jersey.jersey-test-framework</groupId>
119             <artifactId>jersey-test-framework-grizzly2</artifactId>
120             <scope>test</scope>
121         </dependency>
122         <dependency>
123             <groupId>junit</groupId>
124             <artifactId>junit</artifactId>
125             <scope>test</scope>
126         </dependency>
127         <dependency>
128             <groupId>org.slf4j</groupId>
129             <artifactId>slf4j-simple</artifactId>
130             <scope>test</scope>
131         </dependency>
132
133     </dependencies>
134
135     <build>
136         <plugins>
137             <plugin>
138                 <groupId>org.codehaus.mojo</groupId>
139                 <artifactId>build-helper-maven-plugin</artifactId>
140                 <executions>
141                     <execution>
142                         <id>attach-artifacts-idmtool</id>
143                         <goals>
144                             <goal>attach-artifact</goal>
145                         </goals>
146                         <phase>package</phase>
147                         <configuration>
148                             <artifacts>
149                                 <artifact>
150                                     <file>${project.build.directory}/classes/idmtool.py</file>
151                                     <type>py</type>
152                                     <classifier>config</classifier>
153                                 </artifact>
154                             </artifacts>
155                         </configuration>
156                     </execution>
157                 </executions>
158             </plugin>
159             <plugin>
160                 <groupId>org.apache.felix</groupId>
161                 <artifactId>maven-bundle-plugin</artifactId>
162                 <!-- override default version so we don't use bnd 2.3.0 when embedding sqlite -->
163
164                 <extensions>true</extensions>
165                 <configuration>
166                     <instructions>
167                         <Import-Package>org.opendaylight.aaa.shiro.realm,org.apache.shiro.web.env,org.apache.shiro.authc,org.opendaylight.aaa.shiro.web.env,org.opendaylight.aaa.shiro.filters,org.opendaylight.aaa.filterchain.filters,javax.servlet.http,javax.ws.rs,javax.ws.rs.core,javax.xml.bind.annotation,org.apache.felix.dm,org.opendaylight.aaa,org.opendaylight.aaa.api.*,org.osgi.framework,org.slf4j,org.eclipse.jetty.servlets,com.sun.jersey.spi.container.servlet,com.google.*,org.opendaylight.*,org.osgi.util.tracker</Import-Package>
168                         <Web-ContextPath>/auth</Web-ContextPath>
169                         <!--<Web-Connectors>adminConn</Web-Connectors> -->
170                         <!--Bundle-Activator>org.opendaylight.aaa.idm.Activator</Bundle-Activator-->
171                     </instructions>
172                     <manifestLocation>${project.basedir}/META-INF</manifestLocation>
173                 </configuration>
174             </plugin>
175         </plugins>
176     </build>
177
178 </project>