Release odlparent
[odlparent.git] / karaf / test-distribution / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3  Copyright (c) 2015 Brocade Communications 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"
10     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
11     <modelVersion>4.0.0</modelVersion>
12
13     <parent>
14         <groupId>org.opendaylight.odlparent</groupId>
15         <artifactId>karaf4-parent</artifactId>
16         <version>13.0.4</version>
17         <relativePath>../karaf4-parent</relativePath>
18     </parent>
19
20     <groupId>org.opendaylight.odlparent</groupId>
21     <artifactId>test-distribution</artifactId>
22     <version>13.0.4</version>
23     <packaging>pom</packaging>
24
25     <dependencies>
26         <!-- Project local features -->
27         <dependency>
28             <groupId>org.opendaylight.odlparent</groupId>
29             <artifactId>features-odlparent</artifactId>
30             <version>${project.version}</version>
31             <classifier>features</classifier>
32             <type>xml</type>
33             <scope>runtime</scope>
34         </dependency>
35
36         <!-- TrieMap provides a feature, this checks that BOM works -->
37         <dependency>
38             <groupId>tech.pantheon.triemap</groupId>
39             <artifactId>pt-triemap</artifactId>
40             <classifier>features</classifier>
41             <type>xml</type>
42             <scope>runtime</scope>
43         </dependency>
44     </dependencies>
45
46     <build>
47         <plugins>
48             <!-- DO NOT install or deploy the karaf artifact -->
49             <plugin>
50                 <groupId>org.apache.maven.plugins</groupId>
51                 <artifactId>maven-install-plugin</artifactId>
52                 <configuration>
53                     <skip>true</skip>
54                 </configuration>
55             </plugin>
56             <plugin>
57                 <groupId>org.apache.maven.plugins</groupId>
58                 <artifactId>maven-deploy-plugin</artifactId>
59                 <configuration>
60                     <skip>true</skip>
61                 </configuration>
62             </plugin>
63         </plugins>
64     </build>
65
66     <scm>
67         <connection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</connection>
68         <developerConnection>scm:git:ssh://git.opendaylight.org:29418/odlparent.git</developerConnection>
69         <tag>HEAD</tag>
70         <url>https://git.opendaylight.org/gerrit/gitweb?p=odlparent.git;a=summary</url>
71     </scm>
72 </project>