Update version after Neon SR3
[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.4-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20     <groupId>org.opendaylight.integration</groupId>
21     <artifactId>opendaylight</artifactId>
22     <version>0.10.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        <!-- DLUX -->
42         <profile>
43             <id>dlux</id>
44             <activation>
45                 <activeByDefault>false</activeByDefault>
46             </activation>
47             <dependencies>
48                 <dependency>
49                     <groupId>org.opendaylight.dlux</groupId>
50                     <artifactId>features-dlux</artifactId>
51                     <version>0.8.4-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>false</activeByDefault>
63             </activation>
64             <dependencies>
65                 <dependency>
66                     <groupId>org.opendaylight.jsonrpc</groupId>
67                     <artifactId>jsonrpc-features</artifactId>
68                     <version>1.6.4-SNAPSHOT</version>
69                     <classifier>features</classifier>
70                     <type>xml</type>
71                     <scope>test</scope>
72                 </dependency>
73             </dependencies>
74         </profile>
75         <!-- Telemetry -->
76         <profile>
77             <id>telemetry</id>
78             <activation>
79                 <activeByDefault>false</activeByDefault>
80             </activation>
81             <dependencies>
82                 <dependency>
83                     <groupId>org.opendaylight.telemetry</groupId>
84                     <artifactId>features-telemetry</artifactId>
85                     <version>0.1.1-SNAPSHOT</version>
86                     <classifier>features</classifier>
87                     <type>xml</type>
88                     <scope>test</scope>
89                 </dependency>
90             </dependencies>
91         </profile>
92         <!-- TransportPCE -->
93         <profile>
94             <id>transportpce</id>
95             <activation>
96                 <activeByDefault>false</activeByDefault>
97             </activation>
98             <dependencies>
99                 <dependency>
100                     <groupId>org.opendaylight.transportpce</groupId>
101                     <artifactId>features-transportpce</artifactId>
102                     <version>0.3.4-SNAPSHOT</version>
103                     <classifier>features</classifier>
104                     <type>xml</type>
105                     <scope>test</scope>
106                 </dependency>
107             </dependencies>
108         </profile>
109         <profile>
110             <id>dependency-convergence</id>
111             <build>
112                 <plugins>
113                     <plugin>
114                         <artifactId>maven-enforcer-plugin</artifactId>
115                         <executions>
116                             <execution>
117                                 <id>enforce-dependency-convergence</id>
118                                 <goals>
119                                     <goal>enforce</goal>
120                                 </goals>
121                                 <configuration>
122                                     <rules>
123                                         <dependencyConvergence/>
124                                     </rules>
125                                 </configuration>
126                             </execution>
127                         </executions>
128                     </plugin>
129                 </plugins>
130             </build>
131         </profile>
132     </profiles>
133 </project>