Merge "AAA Model Changes"
[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-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
75         <!-- MD-SAL -->
76         <feature version='${yangtools.version}'>odl-yangtools-common</feature>
77         <feature version='${mdsal.version}'>odl-mdsal-binding-base</feature>
78         <feature version='${controller.mdsal.version}'>odl-mdsal-broker</feature>
79         <feature version='${config.version}'>odl-config-core</feature>
80
81
82         <!-- OSGi -->
83         <bundle>mvn:org.apache.felix/org.apache.felix.dependencymanager/{{VERSION}}</bundle>
84         <bundle>mvn:org.apache.felix/org.apache.felix.metatype/{{VERSION}}</bundle>
85
86         <!-- OAuth -->
87         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.common/{{VERSION}}</bundle>
88         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.authzserver/{{VERSION}}</bundle>
89         <bundle>mvn:org.apache.oltu.oauth2/org.apache.oltu.oauth2.resourceserver/{{VERSION}}</bundle>
90         <bundle>mvn:commons-codec/commons-codec/1.8</bundle>
91         <bundle>wrap:mvn:org.json/json/{{VERSION}}</bundle>
92
93         <!-- AuthN -->
94         <bundle>mvn:org.opendaylight.aaa/aaa-authn-api/{{VERSION}}</bundle>
95         <bundle>mvn:org.opendaylight.aaa/aaa-authn/{{VERSION}}</bundle>
96         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sts/{{VERSION}}</bundle>
97         <bundle>mvn:org.opendaylight.aaa/aaa-authn-mdsal-api/{{VERSION}}</bundle>
98         <bundle>mvn:org.opendaylight.aaa/aaa-authn-mdsal-store-impl/{{VERSION}}</bundle>
99         <bundle>mvn:org.opendaylight.aaa/aaa-authn-basic/{{VERSION}}</bundle>
100         <bundle>mvn:com.google.guava/guava/{{VERSION}}</bundle>
101
102         <!-- IDMLight -->
103         <bundle>mvn:org.opendaylight.aaa/aaa-idmlight/{{VERSION}}</bundle>
104         <bundle>mvn:com.fasterxml.jackson.core/jackson-core/{{VERSION}}</bundle>
105         <bundle>mvn:com.fasterxml.jackson.core/jackson-annotations/{{VERSION}}</bundle>
106         <bundle>mvn:com.fasterxml.jackson.core/jackson-databind/{{VERSION}}</bundle>
107         <bundle>mvn:com.fasterxml.jackson.datatype/jackson-datatype-json-org/{{VERSION}}</bundle>
108         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-base/{{VERSION}}</bundle>
109         <bundle>mvn:com.fasterxml.jackson.jaxrs/jackson-jaxrs-json-provider/{{VERSION}}</bundle>
110         <bundle>mvn:com.fasterxml.jackson.module/jackson-module-jaxb-annotations/{{VERSION}}</bundle>
111         <bundle>wrap:mvn:com.h2database/h2/{{VERSION}}</bundle>
112
113         <!-- Federation -->
114         <bundle>mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}</bundle>
115         <bundle>mvn:org.opendaylight.aaa/aaa-authn-idpmapping/{{VERSION}}</bundle>
116         <bundle>mvn:org.glassfish/javax.json/1.0.4</bundle>
117
118         <!-- REST -->
119         <feature>war</feature>
120         <bundle>mvn:com.sun.jersey/jersey-servlet/{{VERSION}}</bundle>
121         <bundle>mvn:com.sun.jersey/jersey-core/{{VERSION}}</bundle>
122         <bundle>mvn:com.sun.jersey/jersey-server/{{VERSION}}</bundle>
123
124         <configfile finalname="etc/opendaylight/karaf/08-authn-config.xml">mvn:org.opendaylight.aaa/aaa-authn-mdsal-config/{{VERSION}}/xml/config</configfile>
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.federation.cfg">mvn:org.opendaylight.aaa/aaa-authn-federation/{{VERSION}}/cfg/config</configfile>
127
128     </feature>
129
130     <feature name='odl-aaa-keystone-plugin' description='OpenDaylight :: AAA :: Keystone Plugin - NO CLUSTER'
131              version='${project.version}'>
132         <feature version='${project.version}'>odl-aaa-authn</feature>
133         <bundle>mvn:org.apache.httpcomponents/httpclient-osgi/{{VERSION}}</bundle>
134         <bundle>mvn:org.apache.httpcomponents/httpcore-osgi/{{VERSION}}</bundle>
135         <bundle>mvn:org.opendaylight.aaa/aaa-authn-keystone/{{VERSION}}</bundle>
136     </feature>
137
138     <feature name='odl-aaa-sssd-plugin' description='OpenDaylight :: AAA :: SSSD Federation Plugin'
139              version='${project.version}'>
140         <feature version='${project.version}'>odl-aaa-authn</feature>
141         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sssd/{{VERSION}}</bundle>
142     </feature>
143
144     <feature name='odl-aaa-authn-sssd-no-cluster' description='OpenDaylight :: AAA :: SSSD Federation - NO CLUSTER'
145              version='${project.version}'>
146         <feature version='${project.version}'>odl-aaa-authn-no-cluster</feature>
147         <bundle>mvn:org.opendaylight.aaa/aaa-authn-sssd/{{VERSION}}</bundle>
148     </feature>
149
150 </features>