Bump versions by x.y.(z+1)
[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.8.1-SNAPSHOT</version>
16     <relativePath>../../commons/it</relativePath>
17   </parent>
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>southbound-it</artifactId>
21   <version>1.8.1-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     <controller.mdsal.version>1.9.1-SNAPSHOT</controller.mdsal.version>
29   </properties>
30
31   <dependencyManagement>
32     <dependencies>
33       <dependency>
34         <groupId>${project.groupId}</groupId>
35         <artifactId>southbound-artifacts</artifactId>
36         <version>${project.version}</version>
37         <type>pom</type>
38         <scope>import</scope>
39       </dependency>
40       <dependency>
41         <groupId>org.opendaylight.controller</groupId>
42         <artifactId>mdsal-artifacts</artifactId>
43         <version>${controller.mdsal.version}</version>
44         <type>pom</type>
45         <scope>import</scope>
46       </dependency>
47     </dependencies>
48   </dependencyManagement>
49   <dependencies>
50     <dependency>
51       <groupId>org.opendaylight.controller</groupId>
52       <artifactId>sal-binding-api</artifactId>
53     </dependency>
54     <dependency>
55       <groupId>org.opendaylight.controller</groupId>
56       <artifactId>sal-common-api</artifactId>
57     </dependency>
58     <dependency>
59       <groupId>${project.groupId}</groupId>
60       <artifactId>southbound-features</artifactId>
61       <classifier>features</classifier>
62       <type>xml</type>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>utils.southbound-utils</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <!-- Dependencies for pax exam karaf container -->
70     <dependency>
71       <groupId>org.ops4j.pax.exam</groupId>
72       <artifactId>pax-exam-container-karaf</artifactId>
73       <scope>compile</scope>
74     </dependency>
75     <dependency>
76       <groupId>org.ops4j.pax.exam</groupId>
77       <artifactId>pax-exam-junit4</artifactId>
78       <scope>compile</scope>
79     </dependency>
80     <dependency>
81       <groupId>org.ops4j.pax.exam</groupId>
82       <artifactId>pax-exam</artifactId>
83       <scope>compile</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.ops4j.pax.url</groupId>
87       <artifactId>pax-url-aether</artifactId>
88       <scope>compile</scope>
89     </dependency>
90     <dependency>
91       <groupId>javax.inject</groupId>
92       <artifactId>javax.inject</artifactId>
93       <version>1</version>
94       <scope>compile</scope>
95     </dependency>
96     <dependency>
97       <groupId>org.apache.karaf.features</groupId>
98       <artifactId>org.apache.karaf.features.core</artifactId>
99       <version>${karaf.version}</version>
100       <scope>compile</scope>
101     </dependency>
102     <dependency>
103       <groupId>org.osgi</groupId>
104       <artifactId>org.osgi.core</artifactId>
105       <scope>compile</scope>
106     </dependency>
107     <dependency>
108       <groupId>junit</groupId>
109       <artifactId>junit</artifactId>
110       <scope>compile</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.slf4j</groupId>
114       <artifactId>slf4j-simple</artifactId>
115       <scope>test</scope>
116     </dependency>
117     <dependency>
118       <groupId>org.sonarsource.java</groupId>
119       <artifactId>sonar-jacoco-listeners</artifactId>
120       <scope>test</scope>
121     </dependency>
122     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
123     <dependency>
124       <groupId>org.opendaylight.ovsdb</groupId>
125       <artifactId>southbound-karaf</artifactId>
126       <version>${project.version}</version>
127       <type>tar.gz</type>
128       <scope>test</scope>
129     </dependency>
130   </dependencies>
131   <build>
132     <plugins>
133       <plugin>
134         <groupId>org.jacoco</groupId>
135         <artifactId>jacoco-maven-plugin</artifactId>
136       </plugin>
137       <plugin>
138         <groupId>org.apache.maven.plugins</groupId>
139         <artifactId>maven-failsafe-plugin</artifactId>
140       </plugin>
141       <!-- Needed if you use versionAsInProject() -->
142       <plugin>
143         <groupId>org.apache.servicemix.tooling</groupId>
144         <artifactId>depends-maven-plugin</artifactId>
145         <version>1.2</version>
146         <executions>
147           <execution>
148             <id>generate-depends-file</id>
149             <goals>
150               <goal>generate-depends-file</goal>
151             </goals>
152           </execution>
153         </executions>
154       </plugin>
155     </plugins>
156   </build>
157
158   <!--
159       Maven Site Configuration
160
161       The following configuration is necessary for maven-site-plugin to
162       correctly identify the correct deployment path for OpenDaylight Maven
163       sites.
164   -->
165   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
166
167   <distributionManagement>
168     <site>
169       <id>opendaylight-site</id>
170       <url>${nexus.site.url}/${project.artifactId}/</url>
171     </site>
172   </distributionManagement>
173 </project>