Integrate controller-2.0.2
[aaa.git] / features / odl-aaa-shiro / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright © 2017 Red Hat, Inc. and others.
4
5  This program and the accompanying materials are made available under the
6  terms of the Eclipse Public License v1.0 which accompanies this distribution,
7  and is available at http://www.eclipse.org/legal/epl-v10.html
8  -->
9 <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">
10     <modelVersion>4.0.0</modelVersion>
11
12     <parent>
13         <groupId>org.opendaylight.odlparent</groupId>
14         <artifactId>single-feature-parent</artifactId>
15         <version>7.0.3</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.aaa</groupId>
20     <artifactId>odl-aaa-shiro</artifactId>
21     <version>0.12.0-SNAPSHOT</version>
22     <packaging>feature</packaging>
23
24     <!-- odl-aaa-shiro feature which combines all aspects of AAA into one feature -->
25     <name>ODL :: aaa :: ${project.artifactId}</name>
26
27     <dependencyManagement>
28         <dependencies>
29             <dependency>
30                 <groupId>${project.groupId}</groupId>
31                 <artifactId>aaa-parent</artifactId>
32                 <version>${project.version}</version>
33                 <type>pom</type>
34                 <scope>import</scope>
35             </dependency>
36         </dependencies>
37     </dependencyManagement>
38
39     <dependencies>
40         <dependency>
41             <groupId>org.opendaylight.aaa</groupId>
42             <artifactId>odl-aaa-password-service</artifactId>
43             <version>${project.version}</version>
44             <classifier>features</classifier>
45             <type>xml</type>
46         </dependency>
47
48         <!-- OSGI -->
49         <dependency>
50             <groupId>org.apache.felix</groupId>
51             <artifactId>org.apache.felix.dependencymanager</artifactId>
52         </dependency>
53         <dependency>
54             <groupId>org.apache.felix</groupId>
55             <artifactId>org.apache.felix.metatype</artifactId>
56         </dependency>
57
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>odl-jolokia</artifactId>
61             <classifier>features</classifier>
62             <type>xml</type>
63         </dependency>
64
65         <!-- Existing AAA infrastructure -->
66         <dependency>
67             <groupId>org.opendaylight.aaa</groupId>
68             <artifactId>odl-aaa-web</artifactId>
69             <version>${project.version}</version>
70             <classifier>features</classifier>
71             <type>xml</type>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.aaa.web</groupId>
75             <artifactId>web-osgi-impl</artifactId>
76             <version>${project.version}</version>
77         </dependency>
78         <dependency>
79             <groupId>org.opendaylight.aaa</groupId>
80             <artifactId>aaa-shiro</artifactId>
81         </dependency>
82         <dependency>
83           <groupId>org.opendaylight.aaa</groupId>
84           <artifactId>aaa-shiro-api</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.aaa</groupId>
88             <artifactId>odl-aaa-encryption-service</artifactId>
89             <version>${project.version}</version>
90             <type>xml</type>
91             <classifier>features</classifier>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.aaa</groupId>
95             <artifactId>aaa-filterchain</artifactId>
96         </dependency>
97         <dependency>
98             <groupId>${project.groupId}</groupId>
99             <artifactId>odl-aaa-api</artifactId>
100             <version>${project.version}</version>
101             <type>xml</type>
102             <classifier>features</classifier>
103         </dependency>
104         <dependency>
105             <groupId>${project.groupId}</groupId>
106             <artifactId>odl-aaa-cert</artifactId>
107             <version>${project.version}</version>
108             <type>xml</type>
109             <classifier>features</classifier>
110         </dependency>
111         <dependency>
112             <groupId>org.apache.shiro</groupId>
113             <artifactId>shiro-web</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.apache.shiro</groupId>
117             <artifactId>shiro-core</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>commons-codec</groupId>
121             <artifactId>commons-codec</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.aaa</groupId>
125             <artifactId>aaa-shiro</artifactId>
126             <version>${project.version}</version>
127             <type>xml</type>
128             <classifier>aaa-app-config</classifier>
129         </dependency>
130         <dependency>
131             <groupId>org.opendaylight.aaa</groupId>
132             <artifactId>aaa-shiro</artifactId>
133             <version>${project.version}</version>
134             <type>xml</type>
135             <classifier>aaa-datastore-config</classifier>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.odlparent</groupId>
139             <artifactId>odl-karaf-feat-jetty</artifactId>
140             <type>xml</type>
141             <classifier>features</classifier>
142         </dependency>
143         <dependency>
144             <groupId>org.opendaylight.odlparent</groupId>
145             <artifactId>odl-apache-commons-codec</artifactId>
146             <type>xml</type>
147             <classifier>features</classifier>
148         </dependency>
149
150         <!--H2 Store -->
151         <dependency>
152             <groupId>org.opendaylight.odlparent</groupId>
153             <artifactId>odl-karaf-feat-jdbc</artifactId>
154             <type>xml</type>
155             <classifier>features</classifier>
156         </dependency>
157
158         <dependency>
159             <!-- finalname="bin/idmtool" -->
160             <groupId>org.opendaylight.aaa</groupId>
161             <artifactId>aaa-shiro</artifactId>
162             <version>${project.version}</version>
163             <type>py</type>
164             <classifier>idmtool</classifier>
165         </dependency>
166
167         <dependency>
168             <!-- finalname="/etc/org.opendaylight.aaa.filterchain.cfg" -->
169             <groupId>org.opendaylight.aaa</groupId>
170             <artifactId>aaa-filterchain</artifactId>
171             <type>cfg</type>
172             <classifier>config</classifier>
173         </dependency>
174     </dependencies>
175
176     <build>
177         <pluginManagement>
178             <plugins>
179                 <plugin>
180                     <groupId>org.apache.karaf.tooling</groupId>
181                     <artifactId>karaf-maven-plugin</artifactId>
182                 </plugin>
183             </plugins>
184         </pluginManagement>
185     </build>
186 </project>