Bump versions by x.(y+1).z
[ovsdb.git] / library / it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2015, 2016 Red Hat, 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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
10
11   <parent>
12     <groupId>org.opendaylight.ovsdb</groupId>
13     <artifactId>it</artifactId>
14     <version>1.14.0-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>library-it</artifactId>
21   <version>1.14.0-SNAPSHOT</version>
22   <packaging>jar</packaging>
23   <!-- <name> formatting is used by autorelease to parse and notify projects on
24        build failure. Please do not modify this unless you have a good reason. -->
25   <name>ODL :: ovsdb :: ${project.artifactId}</name>
26
27   <properties>
28     <karaf.distro.groupId>org.opendaylight.ovsdb</karaf.distro.groupId>
29     <karaf.distro.artifactId>library-karaf</karaf.distro.artifactId>
30     <karaf.distro.version>1.14.0-SNAPSHOT</karaf.distro.version>
31     <karaf.distro.type>zip</karaf.distro.type>
32   </properties>
33
34   <dependencies>
35     <dependency>
36       <groupId>${project.groupId}</groupId>
37       <artifactId>library-karaf</artifactId>
38       <version>${project.version}</version>
39       <type>zip</type>
40     </dependency>
41     <dependency>
42       <groupId>${project.groupId}</groupId>
43       <artifactId>library-features</artifactId>
44       <version>${project.version}</version>
45       <classifier>features</classifier>
46       <type>xml</type>
47     </dependency>
48     <dependency>
49       <groupId>org.opendaylight.ovsdb</groupId>
50       <artifactId>schema.openvswitch</artifactId>
51       <version>${project.version}</version>
52       <scope>test</scope>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.ovsdb</groupId>
56       <artifactId>schema.hardwarevtep</artifactId>
57       <version>${project.version}</version>
58       <scope>test</scope>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.ovsdb</groupId>
62       <artifactId>library</artifactId>
63       <version>${project.version}</version>
64       <scope>test</scope>
65     </dependency>
66     <dependency>
67       <groupId>org.opendaylight.ovsdb</groupId>
68       <artifactId>utils.servicehelper</artifactId>
69       <version>${project.version}</version>
70       <scope>test</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.sonarsource.java</groupId>
74       <artifactId>sonar-jacoco-listeners</artifactId>
75       <scope>test</scope>
76     </dependency>
77   </dependencies>
78
79   <build>
80     <plugins>
81       <plugin>
82         <groupId>org.jacoco</groupId>
83         <artifactId>jacoco-maven-plugin</artifactId>
84       </plugin>
85       <plugin>
86         <groupId>org.apache.maven.plugins</groupId>
87         <artifactId>maven-failsafe-plugin</artifactId>
88         <configuration>
89           <excludes>
90             <!--<exclude>**/HardwareVTEPIT.java</exclude>-->
91           </excludes>
92         </configuration>
93       </plugin>
94     </plugins>
95   </build>
96
97   <!--
98       Maven Site Configuration
99
100       The following configuration is necessary for maven-site-plugin to
101       correctly identify the correct deployment path for OpenDaylight Maven
102       sites.
103   -->
104   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
105
106   <distributionManagement>
107     <site>
108       <id>opendaylight-site</id>
109       <url>${nexus.site.url}/${project.artifactId}/</url>
110     </site>
111   </distributionManagement>
112 </project>