Bump versions by x.y.(z+1)
[integration/distribution.git] / opendaylight / pom.xml
1 <?xml version="1.0"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4  Copyright (c) 2018 Lumina Networks, Inc. and others.  All rights reserved.
5
6  This program and the accompanying materials are made available under the
7  terms of the Eclipse Public License v1.0 which accompanies this distribution,
8  and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <project xmlns="http://maven.apache.org/POM/4.0.0"
11          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
12          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
13     <modelVersion>4.0.0</modelVersion>
14     <parent>
15         <groupId>org.opendaylight.integration</groupId>
16         <artifactId>karaf</artifactId>
17         <version>0.10.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20     <groupId>org.opendaylight.integration</groupId>
21     <artifactId>opendaylight</artifactId>
22     <version>0.10.0-SNAPSHOT</version>
23     <packaging>pom</packaging>
24     <name>ODL :: integration :: ${project.artifactId}</name>
25     <description>The actual Karaf archive building sub-project.</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=karaf;hb=HEAD</url>
38         <tag>HEAD</tag>
39     </scm>
40     <profiles>
41         <!-- Honeycomb/VBD -->
42         <profile>
43             <id>vbd</id>
44             <activation>
45                 <activeByDefault>false</activeByDefault>
46             </activation>
47             <dependencies>
48                 <dependency>
49                     <groupId>org.opendaylight.honeycomb.vbd</groupId>
50                     <artifactId>vbd-features</artifactId>
51                     <version>1.5.0-SNAPSHOT</version>
52                     <classifier>features</classifier>
53                     <type>xml</type>
54                     <scope>test</scope>
55                 </dependency>
56             </dependencies>
57         </profile>
58         <profile>
59             <id>snmp4sdn</id>
60             <activation>
61                 <activeByDefault>true</activeByDefault>
62             </activation>
63             <dependencies>
64                 <dependency>
65                     <groupId>org.opendaylight.snmp4sdn</groupId>
66                     <artifactId>features-snmp4sdn</artifactId>
67                     <version>0.9.0-SNAPSHOT</version>
68                     <classifier>features</classifier>
69                     <type>xml</type>
70                     <scope>test</scope>
71                 </dependency>
72             </dependencies>
73         </profile>
74         <!-- SXP -->
75         <profile>
76             <id>sxp</id>
77             <activation>
78                 <activeByDefault>true</activeByDefault>
79             </activation>
80             <dependencies>
81                 <dependency>
82                     <groupId>org.opendaylight.sxp</groupId>
83                     <artifactId>features-sxp</artifactId>
84                     <version>1.8.0-SNAPSHOT</version>
85                     <classifier>features</classifier>
86                     <type>xml</type>
87                     <scope>test</scope>
88                 </dependency>
89             </dependencies>
90         </profile>
91         <!-- Telemetry -->
92         <profile>
93             <id>telemetry</id>
94             <activation>
95                 <activeByDefault>true</activeByDefault>
96             </activation>
97             <dependencies>
98                 <dependency>
99                     <groupId>org.opendaylight.telemetry</groupId>
100                     <artifactId>features-telemetry</artifactId>
101                     <version>0.1.0-SNAPSHOT</version>
102                     <classifier>features</classifier>
103                     <type>xml</type>
104                     <scope>test</scope>
105                 </dependency>
106             </dependencies>
107         </profile>
108         <!-- TSDR -->
109         <profile>
110             <id>tsdr</id>
111             <activation>
112                 <activeByDefault>false</activeByDefault>
113             </activation>
114             <dependencies>
115                 <dependency>
116                     <groupId>org.opendaylight.tsdr</groupId>
117                     <artifactId>features-tsdr</artifactId>
118                     <version>1.7.0-SNAPSHOT</version>
119                     <classifier>features</classifier>
120                     <type>xml</type>
121                     <scope>test</scope>
122                 </dependency>
123             </dependencies>
124         </profile>
125         <!-- Unimgr -->
126         <profile>
127             <id>unimgr</id>
128             <activation>
129                 <activeByDefault>false</activeByDefault>
130             </activation>
131             <dependencies>
132                 <dependency>
133                     <groupId>org.opendaylight.unimgr</groupId>
134                     <artifactId>features4-unimgr</artifactId>
135                     <version>0.5.0-SNAPSHOT</version>
136                     <classifier>features</classifier>
137                     <type>xml</type>
138                     <scope>test</scope>
139                 </dependency>
140             </dependencies>
141         </profile>
142         <!-- JSONRPC -->
143         <profile>
144             <id>jsonrpc</id>
145             <activation>
146                 <activeByDefault>true</activeByDefault>
147             </activation>
148             <dependencies>
149                 <dependency>
150                     <groupId>org.opendaylight.jsonrpc</groupId>
151                     <artifactId>jsonrpc-features</artifactId>
152                     <version>1.6.0-SNAPSHOT</version>
153                     <classifier>features</classifier>
154                     <type>xml</type>
155                     <scope>test</scope>
156                 </dependency>
157             </dependencies>
158         </profile>
159     </profiles>
160 </project>