Bump versions by x.(y+1).z
[ovsdb.git] / southbound / southbound-it / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2014, 2016 Cisco Systems, 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" 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">
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>it</artifactId>
15     <version>1.19.0-SNAPSHOT</version>
16     <relativePath>../../commons/it</relativePath>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>southbound-it</artifactId>
20   <packaging>jar</packaging>
21   <!-- <name> formatting is used by autorelease to parse and notify projects on
22        build failure. Please do not modify this unless you have a good reason. -->
23   <name>ODL :: ovsdb :: ${project.artifactId}</name>
24
25   <dependencyManagement>
26     <dependencies>
27       <dependency>
28         <groupId>${project.groupId}</groupId>
29         <artifactId>southbound-artifacts</artifactId>
30         <version>${project.version}</version>
31         <type>pom</type>
32         <scope>import</scope>
33       </dependency>
34     </dependencies>
35   </dependencyManagement>
36   <dependencies>
37     <dependency>
38       <groupId>org.opendaylight.mdsal</groupId>
39       <artifactId>mdsal-binding-api</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>mdsal-common-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>${project.groupId}</groupId>
47       <artifactId>southbound-features</artifactId>
48       <classifier>features</classifier>
49       <type>xml</type>
50     </dependency>
51     <dependency>
52       <groupId>${project.groupId}</groupId>
53       <artifactId>utils.southbound-utils</artifactId>
54       <version>${project.version}</version>
55     </dependency>
56     <!-- Dependencies for pax exam karaf container -->
57     <dependency>
58       <groupId>org.ops4j.pax.exam</groupId>
59       <artifactId>pax-exam-container-karaf</artifactId>
60       <scope>compile</scope>
61     </dependency>
62     <dependency>
63       <groupId>org.ops4j.pax.exam</groupId>
64       <artifactId>pax-exam-junit4</artifactId>
65       <scope>compile</scope>
66     </dependency>
67     <dependency>
68       <groupId>org.ops4j.pax.exam</groupId>
69       <artifactId>pax-exam</artifactId>
70       <scope>compile</scope>
71     </dependency>
72     <dependency>
73       <groupId>org.ops4j.pax.url</groupId>
74       <artifactId>pax-url-aether</artifactId>
75       <scope>compile</scope>
76     </dependency>
77     <dependency>
78       <groupId>com.guicedee.services</groupId>
79       <artifactId>javax.inject</artifactId>
80       <scope>compile</scope>
81     </dependency>
82     <dependency>
83       <groupId>org.apache.karaf.features</groupId>
84       <artifactId>org.apache.karaf.features.core</artifactId>
85       <scope>compile</scope>
86     </dependency>
87     <dependency>
88       <groupId>org.osgi</groupId>
89       <artifactId>org.osgi.framework</artifactId>
90       <scope>compile</scope>
91     </dependency>
92     <dependency>
93       <groupId>junit</groupId>
94       <artifactId>junit</artifactId>
95       <scope>compile</scope>
96     </dependency>
97     <dependency>
98       <groupId>org.slf4j</groupId>
99       <artifactId>slf4j-simple</artifactId>
100       <scope>test</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.sonarsource.java</groupId>
104       <artifactId>sonar-jacoco-listeners</artifactId>
105       <scope>test</scope>
106     </dependency>
107     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
108     <dependency>
109       <groupId>org.opendaylight.ovsdb</groupId>
110       <artifactId>southbound-karaf</artifactId>
111       <version>${project.version}</version>
112       <type>tar.gz</type>
113       <scope>test</scope>
114     </dependency>
115   </dependencies>
116   <build>
117     <plugins>
118       <plugin>
119         <groupId>org.jacoco</groupId>
120         <artifactId>jacoco-maven-plugin</artifactId>
121       </plugin>
122       <plugin>
123         <groupId>org.apache.maven.plugins</groupId>
124         <artifactId>maven-failsafe-plugin</artifactId>
125       </plugin>
126       <!-- Needed if you use versionAsInProject() -->
127       <plugin>
128         <groupId>org.apache.servicemix.tooling</groupId>
129         <artifactId>depends-maven-plugin</artifactId>
130         <executions>
131           <execution>
132             <id>generate-depends-file</id>
133             <goals>
134               <goal>generate-depends-file</goal>
135             </goals>
136           </execution>
137         </executions>
138       </plugin>
139     </plugins>
140   </build>
141
142   <!--
143       Maven Site Configuration
144
145       The following configuration is necessary for maven-site-plugin to
146       correctly identify the correct deployment path for OpenDaylight Maven
147       sites.
148   -->
149   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
150
151   <distributionManagement>
152     <site>
153       <id>opendaylight-site</id>
154       <url>${nexus.site.url}/${project.artifactId}/</url>
155     </site>
156   </distributionManagement>
157 </project>