Fix JSONRPC feature artifact
[integration/distribution.git] / features / singles / odl-integration-compatible-with-all / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2017 Cisco Systems, Inc. and others.  All rights reserved.
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     <parent>
12         <groupId>org.opendaylight.odlparent</groupId>
13         <artifactId>single-feature-parent</artifactId>
14         <version>6.0.1</version>
15         <relativePath/>
16     </parent>
17     <groupId>org.opendaylight.integration</groupId>
18     <artifactId>odl-integration-compatible-with-all</artifactId>
19     <!-- TODO: Shorter name? -->
20     <version>0.12.0-SNAPSHOT</version>
21     <packaging>feature</packaging>
22     <!-- <name> formatting is used by autorelease to parse and notify projects on
23          build failure. Please do not modify this unless you have a good reason. -->
24     <name>ODL :: integration :: ${project.artifactId}</name>
25     <description>Single feature containing all features compatible together.</description>
26     <url>https://wiki.opendaylight.org/view/Integration/Distribution</url>
27     <licenses>
28         <license>
29             <name>Eclipse Public License v1.0</name>
30             <url>http://www.eclipse.org/legal/epl-v10.html</url>
31         </license>
32     </licenses>
33     <!-- FIXME: Add developers section -->
34     <scm>
35         <connection>scm:git:https://git.opendaylight.org/gerrit/integration/distribution.git</connection>
36         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/integration/distribution.git</developerConnection>
37         <url>https://git.opendaylight.org/gerrit/gitweb?p=integration/distribution.git;a=tree;f=features/singles/odl-integration-compatible-with-all;hb=HEAD</url>
38         <tag>HEAD</tag>
39     </scm>
40     <dependencyManagement>
41         <dependencies>
42             <dependency>
43                 <groupId>${project.groupId}</groupId>
44                 <artifactId>all-artifacts</artifactId>
45                 <version>${project.version}</version>
46                 <scope>import</scope>
47                 <type>pom</type>
48             </dependency>
49         </dependencies>
50     </dependencyManagement>
51
52     <!-- User facing single features. Alphabetical order -->
53     <profiles>
54         <!-- AAA -->
55         <profile>
56             <id>aaa</id>
57             <activation>
58                 <activeByDefault>true</activeByDefault>
59             </activation>
60             <dependencies>
61                 <dependency>
62                     <groupId>org.opendaylight.aaa</groupId>
63                     <artifactId>odl-aaa-shiro</artifactId>
64                     <type>xml</type>
65                     <classifier>features</classifier>
66                 </dependency>
67             </dependencies>
68         </profile>
69         <!-- BGPCEP -->
70         <profile>
71             <id>bgpcep</id>
72             <activation>
73                 <activeByDefault>true</activeByDefault>
74             </activation>
75             <dependencies>
76                 <dependency>
77                     <groupId>org.opendaylight.bgpcep</groupId>
78                     <artifactId>odl-bgpcep-bgp</artifactId>
79                     <type>xml</type>
80                     <classifier>features</classifier>
81                 </dependency>
82                 <dependency>
83                     <groupId>org.opendaylight.bgpcep</groupId>
84                     <artifactId>odl-bgpcep-bmp</artifactId>
85                     <type>xml</type>
86                     <classifier>features</classifier>
87                 </dependency>
88                 <dependency>
89                     <groupId>org.opendaylight.bgpcep</groupId>
90                     <artifactId>odl-bgpcep-pcep</artifactId>
91                     <type>xml</type>
92                     <classifier>features</classifier>
93                 </dependency>
94                 <dependency>
95                     <groupId>org.opendaylight.bgpcep</groupId>
96                     <artifactId>odl-bgpcep-rsvp</artifactId>
97                     <type>xml</type>
98                     <classifier>features</classifier>
99                 </dependency>
100             </dependencies>
101         </profile>
102         <!-- Daexim -->
103         <profile>
104             <id>daexim</id>
105             <activation>
106                 <activeByDefault>true</activeByDefault>
107             </activation>
108             <dependencies>
109                 <dependency>
110                     <groupId>org.opendaylight.daexim</groupId>
111                     <artifactId>odl-daexim-all</artifactId>
112                     <type>xml</type>
113                     <classifier>features</classifier>
114                 </dependency>
115             </dependencies>
116         </profile>
117         <!-- InfraUtils -->
118         <profile>
119             <id>infrautils</id>
120             <activation>
121                 <activeByDefault>true</activeByDefault>
122             </activation>
123             <dependencies>
124                 <dependency>
125                     <groupId>org.opendaylight.infrautils</groupId>
126                     <artifactId>odl-infrautils-ready</artifactId>
127                     <type>xml</type>
128                     <classifier>features</classifier>
129                 </dependency>
130             </dependencies>
131         </profile>
132         <!-- jsonrpc -->
133         <profile>
134             <id>jsonrpc</id>
135             <activation>
136                 <activeByDefault>true</activeByDefault>
137             </activation>
138             <dependencies>
139                 <dependency>
140                     <groupId>org.opendaylight.jsonrpc</groupId>
141                     <artifactId>odl-jsonrpc-all</artifactId>
142                     <type>xml</type>
143                     <classifier>features</classifier>
144                 </dependency>
145             </dependencies>
146         </profile>
147         <!-- LISP Flow Mapping -->
148         <profile>
149             <id>lispflowmapping</id>
150             <activation>
151                 <activeByDefault>true</activeByDefault>
152             </activation>
153             <dependencies>
154                 <dependency>
155                     <groupId>org.opendaylight.lispflowmapping</groupId>
156                     <artifactId>odl-lispflowmapping-msmr</artifactId>
157                     <type>xml</type>
158                     <classifier>features</classifier>
159                 </dependency>
160             </dependencies>
161         </profile>
162         <!-- Netconf -->
163         <profile>
164             <id>netconf</id>
165             <activation>
166                 <activeByDefault>true</activeByDefault>
167             </activation>
168             <dependencies>
169                 <dependency>
170                     <groupId>org.opendaylight.netconf</groupId>
171                     <artifactId>odl-mdsal-apidocs</artifactId>
172                     <classifier>features</classifier>
173                     <type>xml</type>
174                 </dependency>
175                 <dependency>
176                     <groupId>org.opendaylight.netconf</groupId>
177                     <artifactId>odl-restconf</artifactId>
178                     <classifier>features</classifier>
179                     <type>xml</type>
180                 </dependency>
181                 <dependency>
182                     <groupId>org.opendaylight.netconf</groupId>
183                     <artifactId>odl-yanglib</artifactId>
184                     <classifier>features</classifier>
185                     <type>xml</type>
186                 </dependency>
187             </dependencies>
188         </profile>
189         <!-- Neutron Northbound -->
190         <profile>
191             <id>neutron</id>
192             <activation>
193                 <activeByDefault>true</activeByDefault>
194             </activation>
195             <dependencies>
196                 <dependency>
197                     <groupId>org.opendaylight.neutron</groupId>
198                     <artifactId>odl-neutron-service</artifactId>
199                     <type>xml</type>
200                     <classifier>features</classifier>
201                 </dependency>
202             </dependencies>
203         </profile>
204         <!-- OpenflowPlugin -->
205         <profile>
206             <id>openflowplugin</id>
207             <activation>
208                 <activeByDefault>true</activeByDefault>
209             </activation>
210             <dependencies>
211                 <dependency>
212                     <groupId>org.opendaylight.openflowplugin</groupId>
213                     <artifactId>odl-openflowplugin-flow-services-rest</artifactId>
214                     <type>xml</type>
215                     <classifier>features</classifier>
216                 </dependency>
217                 <dependency>
218                     <groupId>org.opendaylight.openflowplugin</groupId>
219                     <artifactId>odl-openflowplugin-nxm-extensions</artifactId>
220                     <type>xml</type>
221                     <classifier>features</classifier>
222                 </dependency>
223             </dependencies>
224         </profile>
225         <!-- OVSDB -->
226         <profile>
227             <id>ovsdb</id>
228             <activation>
229                 <activeByDefault>true</activeByDefault>
230             </activation>
231             <dependencies>
232                 <dependency>
233                     <groupId>org.opendaylight.ovsdb</groupId>
234                     <artifactId>odl-ovsdb-library</artifactId>
235                     <type>xml</type>
236                     <classifier>features</classifier>
237                 </dependency>
238                 <dependency>
239                     <groupId>org.opendaylight.ovsdb</groupId>
240                     <artifactId>odl-ovsdb-hwvtepsouthbound</artifactId>
241                     <type>xml</type>
242                     <classifier>features</classifier>
243                 </dependency>
244                 <dependency>
245                     <groupId>org.opendaylight.ovsdb</groupId>
246                     <artifactId>odl-ovsdb-southbound-impl</artifactId>
247                     <type>xml</type>
248                     <classifier>features</classifier>
249                 </dependency>
250             </dependencies>
251         </profile>
252         <!-- SFC -->
253         <profile>
254             <id>sfc</id>
255             <activation>
256                 <activeByDefault>true</activeByDefault>
257             </activation>
258             <dependencies>
259                 <dependency>
260                     <groupId>org.opendaylight.sfc</groupId>
261                     <artifactId>odl-sfc-ovs</artifactId>
262                     <type>xml</type>
263                     <classifier>features</classifier>
264                 </dependency>
265                 <dependency>
266                     <groupId>org.opendaylight.sfc</groupId>
267                     <artifactId>odl-sfc-sb-rest</artifactId>
268                     <type>xml</type>
269                     <classifier>features</classifier>
270                 </dependency>
271                 <dependency>
272                     <groupId>org.opendaylight.sfc</groupId>
273                     <artifactId>odl-sfclisp</artifactId>
274                     <type>xml</type>
275                     <classifier>features</classifier>
276                 </dependency>
277                 <dependency>
278                     <groupId>org.opendaylight.sfc</groupId>
279                     <artifactId>odl-sfc-shell</artifactId>
280                     <type>xml</type>
281                     <classifier>features</classifier>
282                 </dependency>
283             </dependencies>
284         </profile>
285     </profiles>
286 </project>