Bump odlparent/yangtools/mdsal/controller
[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.13.0-SNAPSHOT</version>
18         <relativePath/>
19     </parent>
20     <groupId>org.opendaylight.integration</groupId>
21     <artifactId>opendaylight</artifactId>
22     <version>0.13.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             <!-- Detnet -->
42         <profile>
43             <id>detnet</id>
44             <activation>
45                 <activeByDefault>false</activeByDefault>
46             </activation>
47             <dependencies>
48                 <dependency>
49                     <groupId>org.opendaylight.detnet</groupId>
50                     <artifactId>features-detnet</artifactId>
51                     <version>0.2.0-SNAPSHOT</version>
52                     <classifier>features</classifier>
53                     <type>xml</type>
54                     <scope>test</scope>
55                 </dependency>
56             </dependencies>
57         </profile>
58         <!-- TransportPCE -->
59         <profile>
60             <id>transportpce</id>
61             <activation>
62                 <activeByDefault>false</activeByDefault>
63             </activation>
64             <dependencies>
65                 <dependency>
66                     <groupId>org.opendaylight.transportpce</groupId>
67                     <artifactId>odl-transportpce</artifactId>
68                     <version>2.0.3-SNAPSHOT</version>
69                     <classifier>features</classifier>
70                     <type>xml</type>
71                     <scope>test</scope>
72                 </dependency>
73                 <dependency>
74                     <groupId>org.opendaylight.transportpce</groupId>
75                     <artifactId>odl-transportpce-tapi</artifactId>
76                     <version>2.0.3-SNAPSHOT</version>
77                     <classifier>features</classifier>
78                     <type>xml</type>
79                     <scope>test</scope>
80                 </dependency>
81                 <dependency>
82                     <groupId>org.opendaylight.transportpce</groupId>
83                     <artifactId>odl-transportpce-inventory</artifactId>
84                     <version>2.0.3-SNAPSHOT</version>
85                     <classifier>features</classifier>
86                     <type>xml</type>
87                     <scope>test</scope>
88                 </dependency>
89             </dependencies>
90         </profile>
91         <profile>
92             <id>dependency-convergence</id>
93             <build>
94                 <plugins>
95                     <plugin>
96                         <artifactId>maven-enforcer-plugin</artifactId>
97                         <executions>
98                             <execution>
99                                 <id>enforce-dependency-convergence</id>
100                                 <goals>
101                                     <goal>enforce</goal>
102                                 </goals>
103                                 <configuration>
104                                     <rules>
105                                         <dependencyConvergence/>
106                                     </rules>
107                                 </configuration>
108                             </execution>
109                         </executions>
110                     </plugin>
111                 </plugins>
112             </build>
113         </profile>
114     </profiles>
115 </project>