Hardwire Services in sts ServiceLocator
[aaa.git] / features / authn / src / main / features / features.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!-- Copyright (c) 2014-2015 Hewlett-Packard Development Company, L.P. and others.
4         All rights reserved. This program and the accompanying materials are made
5         available under the terms of the Eclipse Public License v1.0 which accompanies
6         this distribution, and is available at http://www.eclipse.org/legal/epl-v10.html -->
7 <features name="odl-aaa-${project.version}" xmlns="http://karaf.apache.org/xmlns/features/v1.2.0"
8           xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9           xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.2.0 http://karaf.apache.org/xmlns/features/v1.2.0">
10     <repository>mvn:org.opendaylight.aaa/features-aaa-api/{{VERSION}}/xml/features</repository>
11     <repository>mvn:org.opendaylight.yangtools/features-yangtools/{{VERSION}}/xml/features</repository>
12     <repository>mvn:org.opendaylight.controller/features-config/{{VERSION}}/xml/features</repository>
13     <repository>mvn:org.opendaylight.mdsal/features-mdsal/{{VERSION}}/xml/features</repository>
14     <repository>mvn:org.opendaylight.controller/features-mdsal/{{VERSION}}/xml/features</repository>
15
16     <feature name='odl-aaa-authn-no-cluster' description='OpenDaylight :: AAA :: Authentication - NO CLUSTER'
17              version='${project.version}'>
18         <feature version='${project.version}'>odl-aaa-api</feature>
19
20         <!-- REST -->
21         <feature>war</feature>
22         <bundle>mvn:com.sun.jersey/jersey-servlet/{{VERSION}}</bundle>
23         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
24         <bundle>mvn:com.sun.jersey/jersey-server/{{VERSION}}</bundle>
25
26         <!-- OSGi -->
27         <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager/{{VERSION}}</bundle>
28         <bundle>mvn:org.apache.felix/org.apache.felix.metatype/{{VERSION}}</bundle>
29
30         <!-- EhCache -->
31         <bundle>mvn:net.sf.ehcache/ehcache/{{VERSION}}</bundle>
32         <bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/{{VERSION}}</bundle>
33
34         <!-- OAuth -->
35         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.common/{{VERSION}}</bundle>
36         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.authzserver/{{VERSION}}</bundle>
37         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.resourceserver/{{VERSION}}</bundle>
38         <bundle>mvn:commons-codec/commons-codec/{{VERSION}}</bundle>
39         <bundle>wrap:mvn:org.json/json/{{VERSION}}</bundle>
40
41         <!-- AuthN -->
42         <bundle>mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}</bundle>
43         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sts/{{VERSION}}</bundle>
44         <bundle>mvn:org.opendaylight.aaa/aaa-authn-store/{{VERSION}}</bundle>
45         <bundle>mvn:org.opendaylight.aaa/aaa-authn-basic/{{VERSION}}</bundle>
46         <bundle>mvn:com.google.guava/guava/{{VERSION}}</bundle>
47
48
49         <!-- IDMLight -->
50         <bundle>mvn:org.opendaylight.aaa/aaa-h2-store/{{VERSION}}</bundle>
51         <bundle>mvn:org.opendaylight.aaa/aaa-idmlight/{{VERSION}}</bundle>
52         <bundle>mvn:com.fasterxml.jackson.core/jackson-core/{{VERSION}}</bundle>
53         <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/{{VERSION}}</bundle>
54         <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/{{VERSION}}</bundle>
55         <bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-json-org/{{VERSION}}</bundle>
56         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/{{VERSION}}</bundle>
57         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/{{VERSION}}</bundle>
58         <bundle>mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/{{VERSION}}</bundle>
59
60         <!--    <bundle>wrap:mvn:org.xerial/sqlite-jdbc/{{VERSION}}</bundle> -->
61         <bundle>wrap:mvn:com.h2database/h2/{{VERSION}}</bundle>
62
63         <!-- Federation -->
64         <bundle>mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}</bundle>
65         <bundle>mvn:org.opendaylight.aaa/aaa-authn-idpmapping/{{VERSION}}</bundle>
66         <bundle>mvn:org.glassfish/javax.json/{{VERSION}}</bundle>
67
68         <configfile finalname="/etc/org.opendaylight.aaa.authn.cfg">mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}/cfg/config</configfile>
69         <configfile finalname="/etc/org.opendaylight.aaa.tokens.cfg">mvn:org.opendaylight.aaa/aaa-authn-store/{{VERSION}}/cfg/config</configfile>
70         <configfile finalname="/etc/org.opendaylight.aaa.federation.cfg">mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}/cfg/config</configfile>
71     </feature>
72
73     <feature name='odl-aaa-authn' description='OpenDaylight :: AAA :: Authentication - NO CLUSTER Temp'
74              version='${project.version}'>
75         <feature version='${project.version}'>odl-aaa-api</feature>
76
77         <!-- REST -->
78         <feature>war</feature>
79         <bundle>mvn:com.sun.jersey/jersey-servlet/{{VERSION}}</bundle>
80         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
81         <bundle>mvn:com.sun.jersey/jersey-server/{{VERSION}}</bundle>
82
83         <!-- OSGi -->
84         <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager/{{VERSION}}</bundle>
85         <bundle>mvn:org.apache.felix/org.apache.felix.metatype/{{VERSION}}</bundle>
86
87         <!-- EhCache -->
88         <bundle>mvn:net.sf.ehcache/ehcache/{{VERSION}}</bundle>
89         <bundle>mvn:org.apache.geronimo.specs/geronimo-jta_1.1_spec/{{VERSION}}</bundle>
90
91         <!-- OAuth -->
92         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.common/{{VERSION}}</bundle>
93         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.authzserver/{{VERSION}}</bundle>
94         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.resourceserver/{{VERSION}}</bundle>
95         <bundle>mvn:commons-codec/commons-codec/{{VERSION}}</bundle>
96         <bundle>wrap:mvn:org.json/json/{{VERSION}}</bundle>
97
98         <!-- AuthN -->
99         <bundle>mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}</bundle>
100         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sts/{{VERSION}}</bundle>
101         <bundle>mvn:org.opendaylight.aaa/aaa-authn-store/{{VERSION}}</bundle>
102         <bundle>mvn:org.opendaylight.aaa/aaa-authn-basic/{{VERSION}}</bundle>
103         <bundle>mvn:com.google.guava/guava/{{VERSION}}</bundle>
104
105
106         <!-- IDMLight -->
107         <bundle>mvn:org.opendaylight.aaa/aaa-h2-store/{{VERSION}}</bundle>
108         <bundle>mvn:org.opendaylight.aaa/aaa-idmlight/{{VERSION}}</bundle>
109         <bundle>mvn:com.fasterxml.jackson.core/jackson-core/{{VERSION}}</bundle>
110         <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/{{VERSION}}</bundle>
111         <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/{{VERSION}}</bundle>
112         <bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-json-org/{{VERSION}}</bundle>
113         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/{{VERSION}}</bundle>
114         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/{{VERSION}}</bundle>
115         <bundle>mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/{{VERSION}}</bundle>
116
117         <!--    <bundle>wrap:mvn:org.xerial/sqlite-jdbc/{{VERSION}}</bundle> -->
118         <bundle>wrap:mvn:com.h2database/h2/{{VERSION}}</bundle>
119
120         <!-- Federation -->
121         <bundle>mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}</bundle>
122         <bundle>mvn:org.opendaylight.aaa/aaa-authn-idpmapping/{{VERSION}}</bundle>
123         <bundle>mvn:org.glassfish/javax.json/{{VERSION}}</bundle>
124
125         <configfile finalname="/etc/org.opendaylight.aaa.authn.cfg">mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}/cfg/config</configfile>
126         <configfile finalname="/etc/org.opendaylight.aaa.tokens.cfg">mvn:org.opendaylight.aaa/aaa-authn-store/{{VERSION}}/cfg/config</configfile>
127         <configfile finalname="/etc/org.opendaylight.aaa.federation.cfg">mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}/cfg/config</configfile>
128     </feature>
129
130     <feature name='odl-aaa-authn-mdsal-cluster' description='OpenDaylight :: AAA :: Authentication :: MD-SAL'
131              version='${project.version}'>
132
133         <!-- MD-SAL -->
134         <feature version='${yangtools.version}'>odl-yangtools-common</feature>
135         <feature version='${mdsal.version}'>odl-mdsal-binding-base</feature>
136         <feature version='${controller.mdsal.version}'>odl-mdsal-broker</feature>
137         <feature version='${config.version}'>odl-config-core</feature>
138
139
140         <!-- OSGi -->
141         <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager/{{VERSION}}</bundle>
142         <bundle>mvn:org.apache.felix/org.apache.felix.metatype/{{VERSION}}</bundle>
143
144         <!-- OAuth -->
145         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.common/{{VERSION}}</bundle>
146         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.authzserver/{{VERSION}}</bundle>
147         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.resourceserver/{{VERSION}}</bundle>
148         <bundle>mvn:commons-codec/commons-codec/1.8</bundle>
149         <bundle>wrap:mvn:org.json/json/{{VERSION}}</bundle>
150
151         <!-- AuthN -->
152         <bundle>mvn:org.opendaylight.aaa/aaa-authn-api/{{VERSION}}</bundle>
153         <bundle>mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}</bundle>
154         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sts/{{VERSION}}</bundle>
155         <bundle>mvn:org.opendaylight.aaa/aaa-authn-mdsal-api/{{VERSION}}</bundle>
156         <bundle>mvn:org.opendaylight.aaa/aaa-authn-mdsal-store-impl/{{VERSION}}</bundle>
157         <bundle>mvn:org.opendaylight.aaa/aaa-authn-basic/{{VERSION}}</bundle>
158         <bundle>mvn:com.google.guava/guava/{{VERSION}}</bundle>
159
160         <!-- IDMLight -->
161         <bundle>mvn:org.opendaylight.aaa/aaa-idmlight/{{VERSION}}</bundle>
162         <bundle>mvn:com.fasterxml.jackson.core/jackson-core/{{VERSION}}</bundle>
163         <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/{{VERSION}}</bundle>
164         <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/{{VERSION}}</bundle>
165         <bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-json-org/{{VERSION}}</bundle>
166         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/{{VERSION}}</bundle>
167         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/{{VERSION}}</bundle>
168         <bundle>mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/{{VERSION}}</bundle>
169         <bundle>wrap:mvn:com.h2database/h2/{{VERSION}}</bundle>
170
171         <!-- Federation -->
172         <bundle>mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}</bundle>
173         <bundle>mvn:org.opendaylight.aaa/aaa-authn-idpmapping/{{VERSION}}</bundle>
174         <bundle>mvn:org.glassfish/javax.json/1.0.4</bundle>
175
176         <!-- REST -->
177         <feature>war</feature>
178         <bundle>mvn:com.sun.jersey/jersey-servlet/{{VERSION}}</bundle>
179         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
180         <bundle>mvn:com.sun.jersey/jersey-server/{{VERSION}}</bundle>
181
182         <configfile finalname="etc/opendaylight/karaf/08-authn-config.xml">mvn:org.opendaylight.aaa/aaa-authn-mdsal-config/{{VERSION}}/xml/config</configfile>
183         <configfile finalname="/etc/org.opendaylight.aaa.authn.cfg">mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}/cfg/config</configfile>
184         <configfile finalname="/etc/org.opendaylight.aaa.federation.cfg">mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}/cfg/config</configfile>
185
186     </feature>
187
188     <feature name='odl-aaa-keystone-plugin' description='OpenDaylight :: AAA :: Keystone Plugin - NO CLUSTER'
189              version='${project.version}'>
190         <feature version='${project.version}'>odl-aaa-authn</feature>
191         <bundle>mvn:org.apache.httpcomponents/httpclient-osgi/{{VERSION}}</bundle>
192         <bundle>mvn:org.apache.httpcomponents/httpcore-osgi/{{VERSION}}</bundle>
193         <bundle>mvn:org.opendaylight.aaa/aaa-authn-keystone/{{VERSION}}</bundle>
194     </feature>
195
196     <feature name='odl-aaa-sssd-plugin' description='OpenDaylight :: AAA :: SSSD Federation Plugin'
197              version='${project.version}'>
198         <feature version='${project.version}'>odl-aaa-authn</feature>
199         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sssd/{{VERSION}}</bundle>
200     </feature>
201
202     <feature name='odl-aaa-authn-sssd-no-cluster' description='OpenDaylight :: AAA :: SSSD Federation - NO CLUSTER'
203              version='${project.version}'>
204         <feature version='${project.version}'>odl-aaa-authn-no-cluster</feature>
205         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sssd/{{VERSION}}</bundle>
206     </feature>
207
208 </features>