Convert features/authn to use features-parent
[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.controller/features-netconf/${netconf.version}/xml/features</repository>
11     <repository>mvn:org.opendaylight.aaa/features-aaa-api/${project.version}/xml/features</repository>
12     <repository>mvn:org.opendaylight.yangtools/features-yangtools/${yangtools.version}/xml/features</repository>
13     <repository>mvn:org.opendaylight.controller/features-config/${config.version}/xml/features</repository>
14     <repository>mvn:org.opendaylight.controller/features-mdsal/${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-idmlight/{{VERSION}}</bundle>
51         <bundle>mvn:com.fasterxml.jackson.core/jackson-core/{{VERSION}}</bundle>
52         <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/{{VERSION}}</bundle>
53         <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/{{VERSION}}</bundle>
54         <bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-json-org/{{VERSION}}</bundle>
55         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/{{VERSION}}</bundle>
56         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/{{VERSION}}</bundle>
57         <bundle>mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/{{VERSION}}</bundle>
58
59         <!--    <bundle>wrap:mvn:org.xerial/sqlite-jdbc/{{VERSION}}</bundle> -->
60         <bundle>wrap:mvn:com.h2database/h2/{{VERSION}}</bundle>
61
62         <!-- Federation -->
63         <bundle>mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}</bundle>
64         <bundle>mvn:org.opendaylight.aaa/aaa-authn-idpmapping/{{VERSION}}</bundle>
65         <bundle>mvn:org.glassfish/javax.json/{{VERSION}}</bundle>
66
67         <configfile finalname="/etc/org.opendaylight.aaa.authn.cfg">mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}/cfg/config</configfile>
68         <configfile finalname="/etc/org.opendaylight.aaa.tokens.cfg">mvn:org.opendaylight.aaa/aaa-authn-store/{{VERSION}}/cfg/config</configfile>
69         <configfile finalname="/etc/org.opendaylight.aaa.federation.cfg">mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}/cfg/config</configfile>
70     </feature>
71
72     <feature name='odl-aaa-authn' description='OpenDaylight :: AAA :: Authentication :: MD-SAL'
73              version='${project.version}'>
74         <!-- REST -->
75         <feature>war</feature>
76         <bundle>mvn:com.sun.jersey/jersey-servlet/{{VERSION}}</bundle>
77         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
78         <bundle>mvn:com.sun.jersey/jersey-server/{{VERSION}}</bundle>
79
80         <!-- OSGi -->
81         <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager/{{VERSION}}</bundle>
82         <bundle>mvn:org.apache.felix/org.apache.felix.metatype/{{VERSION}}</bundle>
83
84         <!-- OAuth -->
85         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.common/{{VERSION}}</bundle>
86         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.authzserver/{{VERSION}}</bundle>
87         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.resourceserver/{{VERSION}}</bundle>
88         <bundle>mvn:commons-codec/commons-codec/1.8</bundle>
89         <bundle>wrap:mvn:org.json/json/{{VERSION}}</bundle>
90
91         <!-- AuthN -->
92         <bundle>mvn:org.opendaylight.aaa/aaa-authn-api/{{VERSION}}</bundle>
93         <bundle>mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}</bundle>
94         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sts/{{VERSION}}</bundle>
95         <bundle>mvn:org.opendaylight.aaa/aaa-authn-mdsal-api/{{VERSION}}</bundle>
96         <bundle>mvn:org.opendaylight.aaa/aaa-authn-mdsal-store-impl/{{VERSION}}</bundle>
97         <bundle>mvn:org.opendaylight.aaa/aaa-authn-basic/{{VERSION}}</bundle>
98         <bundle>mvn:com.google.guava/guava/{{VERSION}}</bundle>
99
100         <!-- IDMLight -->
101         <bundle>mvn:org.opendaylight.aaa/aaa-idmlight/{{VERSION}}</bundle>
102         <bundle>mvn:com.fasterxml.jackson.core/jackson-core/{{VERSION}}</bundle>
103         <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/{{VERSION}}</bundle>
104         <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/{{VERSION}}</bundle>
105         <bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-json-org/{{VERSION}}</bundle>
106         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/{{VERSION}}</bundle>
107         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/{{VERSION}}</bundle>
108         <bundle>mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/{{VERSION}}</bundle>
109         <bundle>wrap:mvn:com.h2database/h2/{{VERSION}}</bundle>
110
111         <!-- Federation -->
112         <bundle>mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}</bundle>
113         <bundle>mvn:org.opendaylight.aaa/aaa-authn-idpmapping/{{VERSION}}</bundle>
114         <bundle>mvn:org.glassfish/javax.json/1.0.4</bundle>
115
116         <!-- MD-SAL -->
117         <feature version='${yangtools.version}'>odl-yangtools-common</feature>
118         <feature version='${yangtools.version}'>odl-yangtools-binding</feature>
119         <feature version='${mdsal.version}'>odl-mdsal-broker</feature>
120         <feature version='${config.version}'>odl-config-core</feature>
121
122         <configfile finalname="${config.configfile.directory}/${config.authn.store.configfile}">mvn:org.opendaylight.aaa/aaa-authn-mdsal-config/{{VERSION}}/xml/config</configfile>
123         <configfile finalname="/etc/org.opendaylight.aaa.authn.cfg">mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}/cfg/config</configfile>
124         <configfile finalname="/etc/org.opendaylight.aaa.federation.cfg">mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}/cfg/config</configfile>
125
126     </feature>
127
128     <feature name='odl-aaa-keystone-plugin' description='OpenDaylight :: AAA :: Keystone Plugin - NO CLUSTER'
129              version='${project.version}'>
130         <feature version='${project.version}'>odl-aaa-authn</feature>
131         <bundle>mvn:org.apache.httpcomponents/httpclient-osgi/{{VERSION}}</bundle>
132         <bundle>mvn:org.apache.httpcomponents/httpcore-osgi/{{VERSION}}</bundle>
133         <bundle>mvn:org.opendaylight.aaa/aaa-authn-keystone/{{VERSION}}</bundle>
134     </feature>
135
136     <feature name='odl-aaa-sssd-plugin' description='OpenDaylight :: AAA :: SSSD Federation Plugin'
137              version='${project.version}'>
138         <feature version='${project.version}'>odl-aaa-authn</feature>
139         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sssd/{{VERSION}}</bundle>
140     </feature>
141
142     <feature name='odl-aaa-authn-sssd-no-cluster' description='OpenDaylight :: AAA :: SSSD Federation - NO CLUSTER'
143              version='${project.version}'>
144         <feature version='${project.version}'>odl-aaa-authn-no-cluster</feature>
145         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sssd/{{VERSION}}</bundle>
146     </feature>
147
148     <feature name='odl-aaa-netconf-plugin' description='OpenDaylight :: AAA :: ODL NETCONF Plugin'
149              version='${project.version}'>
150         <feature version='${netconf.version}'>odl-netconf-api</feature>
151         <feature version='${project.version}'>odl-aaa-authn</feature>
152         <bundle>mvn:org.opendaylight.aaa/aaa-authn-odl-plugin/{{VERSION}}</bundle>
153     </feature>
154
155     <feature name='odl-aaa-netconf-plugin-no-cluster'
156              description='OpenDaylight :: AAA :: ODL NETCONF Plugin - NO CLUSTER'
157              version='${project.version}'>
158         <feature version='${netconf.version}'>odl-netconf-api</feature>
159         <feature version='${project.version}'>odl-aaa-authn-no-cluster</feature>
160         <bundle>mvn:org.opendaylight.aaa/aaa-authn-odl-plugin/{{VERSION}}</bundle>
161     </feature>
162
163 </features>