Release aaa
[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>13.0.10</version>
16         <relativePath/>
17     </parent>
18
19     <groupId>org.opendaylight.aaa</groupId>
20     <artifactId>odl-aaa-shiro</artifactId>
21     <version>0.18.4</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         <dependency>
49             <groupId>org.opendaylight.controller</groupId>
50             <artifactId>odl-jolokia</artifactId>
51             <classifier>features</classifier>
52             <type>xml</type>
53         </dependency>
54
55         <!-- Existing AAA infrastructure -->
56         <dependency>
57             <groupId>org.opendaylight.aaa</groupId>
58             <artifactId>odl-aaa-web</artifactId>
59             <classifier>features</classifier>
60             <type>xml</type>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.aaa</groupId>
64             <artifactId>aaa-shiro</artifactId>
65         </dependency>
66         <dependency>
67           <groupId>org.opendaylight.aaa</groupId>
68           <artifactId>aaa-shiro-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.opendaylight.aaa</groupId>
72             <artifactId>odl-aaa-encryption-service</artifactId>
73             <version>${project.version}</version>
74             <type>xml</type>
75             <classifier>features</classifier>
76         </dependency>
77         <dependency>
78             <groupId>org.opendaylight.aaa</groupId>
79             <artifactId>aaa-filterchain</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}</groupId>
83             <artifactId>odl-aaa-api</artifactId>
84             <version>${project.version}</version>
85             <type>xml</type>
86             <classifier>features</classifier>
87         </dependency>
88         <dependency>
89             <groupId>${project.groupId}</groupId>
90             <artifactId>odl-aaa-cert</artifactId>
91             <version>${project.version}</version>
92             <type>xml</type>
93             <classifier>features</classifier>
94         </dependency>
95         <dependency>
96             <groupId>org.opendaylight.aaa</groupId>
97             <artifactId>aaa-shiro</artifactId>
98             <version>${project.version}</version>
99             <type>xml</type>
100             <classifier>aaa-app-config</classifier>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.aaa</groupId>
104             <artifactId>aaa-shiro</artifactId>
105             <version>${project.version}</version>
106             <type>xml</type>
107             <classifier>aaa-datastore-config</classifier>
108         </dependency>
109         <dependency>
110             <groupId>org.opendaylight.odlparent</groupId>
111             <artifactId>odl-karaf-feat-jetty</artifactId>
112             <type>xml</type>
113             <classifier>features</classifier>
114         </dependency>
115
116         <!--H2 Store -->
117         <dependency>
118             <groupId>org.opendaylight.odlparent</groupId>
119             <artifactId>odl-karaf-feat-jdbc</artifactId>
120             <type>xml</type>
121             <classifier>features</classifier>
122         </dependency>
123
124         <dependency>
125             <!-- finalname="bin/idmtool" -->
126             <groupId>org.opendaylight.aaa</groupId>
127             <artifactId>aaa-shiro</artifactId>
128             <version>${project.version}</version>
129             <type>py</type>
130             <classifier>idmtool</classifier>
131         </dependency>
132
133         <dependency>
134             <!-- finalname="/etc/org.opendaylight.aaa.filterchain.cfg" -->
135             <groupId>org.opendaylight.aaa</groupId>
136             <artifactId>aaa-filterchain</artifactId>
137             <type>cfg</type>
138             <classifier>config</classifier>
139         </dependency>
140
141         <dependency>
142             <!-- This is necessary for a full javax.transaction.xa for ehcache -->
143             <groupId>org.apache.geronimo.specs</groupId>
144             <artifactId>geronimo-jta_1.1_spec</artifactId>
145             <version>1.1.1</version>
146         </dependency>
147     </dependencies>
148
149     <build>
150         <pluginManagement>
151             <plugins>
152                 <plugin>
153                     <groupId>org.apache.karaf.tooling</groupId>
154                     <artifactId>karaf-maven-plugin</artifactId>
155                 </plugin>
156             </plugins>
157         </pluginManagement>
158     </build>
159 </project>