Update version after SR release
[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.9.4-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20     <groupId>org.opendaylight.integration</groupId>
21     <artifactId>opendaylight</artifactId>
22     <version>0.9.4-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.4.1-SNAPSHOT</version>
52                     <classifier>features</classifier>
53                     <type>xml</type>
54                     <scope>test</scope>
55                 </dependency>
56             </dependencies>
57         </profile>
58         <!-- JSONRPC -->
59         <profile>
60             <id>jsonrpc</id>
61             <activation>
62                 <activeByDefault>true</activeByDefault>
63             </activation>
64             <dependencies>
65                 <dependency>
66                     <groupId>org.opendaylight.jsonrpc</groupId>
67                     <artifactId>jsonrpc-features</artifactId>
68                     <version>1.5.5-SNAPSHOT</version>
69                     <classifier>features</classifier>
70                     <type>xml</type>
71                     <scope>test</scope>
72                 </dependency>
73             </dependencies>
74         </profile>
75         <!-- SNMP4SDN -->
76         <profile>
77             <id>snmp4sdn</id>
78             <activation>
79                 <activeByDefault>false</activeByDefault>
80             </activation>
81             <dependencies>
82                 <dependency>
83                     <groupId>org.opendaylight.snmp4sdn</groupId>
84                     <artifactId>features-snmp4sdn</artifactId>
85                     <version>0.8.1-SNAPSHOT</version>
86                     <classifier>features</classifier>
87                     <type>xml</type>
88                     <scope>test</scope>
89                 </dependency>
90             </dependencies>
91         </profile>
92         <!-- SXP -->
93         <profile>
94             <id>sxp</id>
95             <activation>
96                 <activeByDefault>false</activeByDefault>
97             </activation>
98             <dependencies>
99                 <dependency>
100                     <groupId>org.opendaylight.sxp</groupId>
101                     <artifactId>features-sxp</artifactId>
102                     <version>1.7.2-SNAPSHOT</version>
103                     <classifier>features</classifier>
104                     <type>xml</type>
105                     <scope>test</scope>
106                 </dependency>
107             </dependencies>
108         </profile>
109         <!-- TransportPCE -->
110         <profile>
111             <id>transportpce</id>
112             <activation>
113                 <activeByDefault>false</activeByDefault>
114             </activation>
115             <dependencies>
116                 <dependency>
117                     <groupId>org.opendaylight.transportpce</groupId>
118                     <artifactId>features-transportpce</artifactId>
119                     <version>0.2.4-SNAPSHOT</version>
120                     <classifier>features</classifier>
121                     <type>xml</type>
122                     <scope>test</scope>
123                 </dependency>
124             </dependencies>
125         </profile>
126         <!-- TSDR -->
127         <profile>
128             <id>tsdr</id>
129             <activation>
130                 <activeByDefault>false</activeByDefault>
131             </activation>
132             <dependencies>
133                 <dependency>
134                     <groupId>org.opendaylight.tsdr</groupId>
135                     <artifactId>features-tsdr</artifactId>
136                     <version>1.6.1-SNAPSHOT</version>
137                     <classifier>features</classifier>
138                     <type>xml</type>
139                     <scope>test</scope>
140                 </dependency>
141             </dependencies>
142         </profile>
143         <!-- Unimgr -->
144         <profile>
145             <id>unimgr</id>
146             <activation>
147                 <activeByDefault>false</activeByDefault>
148             </activation>
149             <dependencies>
150                 <dependency>
151                     <groupId>org.opendaylight.unimgr</groupId>
152                     <artifactId>features4-unimgr</artifactId>
153                     <version>0.4.1-SNAPSHOT</version>
154                     <classifier>features</classifier>
155                     <type>xml</type>
156                     <scope>test</scope>
157                 </dependency>
158             </dependencies>
159         </profile>
160     </profiles>
161 </project>