Bump versions by x.(y+1).z for next dev cycle
[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 Copyright © 2014, 2016 Cisco 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" 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.6.0-SNAPSHOT</version>
15     <relativePath>../../commons/it</relativePath>
16   </parent>
17   <modelVersion>4.0.0</modelVersion>
18   <groupId>org.opendaylight.ovsdb</groupId>
19   <artifactId>southbound-it</artifactId>
20   <version>1.6.0-SNAPSHOT</version>
21   <packaging>jar</packaging>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: ovsdb :: ${project.artifactId}</name>
25
26   <properties>
27     <controller.mdsal.version>1.7.0-SNAPSHOT</controller.mdsal.version>
28   </properties>
29
30   <dependencyManagement>
31     <dependencies>
32       <dependency>
33         <groupId>${project.groupId}</groupId>
34         <artifactId>southbound-artifacts</artifactId>
35         <version>${project.version}</version>
36         <type>pom</type>
37         <scope>import</scope>
38       </dependency>
39       <dependency>
40         <groupId>org.opendaylight.controller</groupId>
41         <artifactId>config-artifacts</artifactId>
42         <version>0.8.0-SNAPSHOT</version>
43         <type>pom</type>
44         <scope>import</scope>
45       </dependency>
46       <dependency>
47         <groupId>org.opendaylight.controller</groupId>
48         <artifactId>mdsal-artifacts</artifactId>
49         <version>${controller.mdsal.version}</version>
50         <type>pom</type>
51         <scope>import</scope>
52       </dependency>
53     </dependencies>
54   </dependencyManagement>
55   <dependencies>
56     <dependency>
57       <groupId>org.opendaylight.controller</groupId>
58       <artifactId>sal-binding-api</artifactId>
59     </dependency>
60     <dependency>
61       <groupId>org.opendaylight.controller</groupId>
62       <artifactId>sal-common-api</artifactId>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>southbound-features</artifactId>
67       <classifier>features</classifier>
68       <type>xml</type>
69     </dependency>
70     <dependency>
71       <groupId>org.opendaylight.controller</groupId>
72       <artifactId>config-util</artifactId>
73     </dependency>
74     <dependency>
75       <groupId>${project.groupId}</groupId>
76       <artifactId>utils.southbound-utils</artifactId>
77       <version>${project.version}</version>
78     </dependency>
79     <!-- Dependencies for pax exam karaf container -->
80     <dependency>
81       <groupId>org.ops4j.pax.exam</groupId>
82       <artifactId>pax-exam-container-karaf</artifactId>
83       <scope>compile</scope>
84     </dependency>
85     <dependency>
86       <groupId>org.ops4j.pax.exam</groupId>
87       <artifactId>pax-exam-junit4</artifactId>
88       <scope>compile</scope>
89     </dependency>
90     <dependency>
91       <groupId>org.ops4j.pax.exam</groupId>
92       <artifactId>pax-exam</artifactId>
93       <scope>compile</scope>
94     </dependency>
95     <dependency>
96       <groupId>org.ops4j.pax.url</groupId>
97       <artifactId>pax-url-aether</artifactId>
98       <scope>compile</scope>
99     </dependency>
100     <dependency>
101       <groupId>javax.inject</groupId>
102       <artifactId>javax.inject</artifactId>
103       <version>1</version>
104       <scope>compile</scope>
105     </dependency>
106     <dependency>
107       <groupId>org.apache.karaf.features</groupId>
108       <artifactId>org.apache.karaf.features.core</artifactId>
109       <version>${karaf.version}</version>
110       <scope>compile</scope>
111     </dependency>
112     <dependency>
113       <groupId>org.osgi</groupId>
114       <artifactId>org.osgi.core</artifactId>
115       <scope>compile</scope>
116     </dependency>
117     <dependency>
118       <groupId>junit</groupId>
119       <artifactId>junit</artifactId>
120       <scope>compile</scope>
121     </dependency>
122     <dependency>
123       <groupId>org.slf4j</groupId>
124       <artifactId>slf4j-simple</artifactId>
125       <scope>test</scope>
126     </dependency>
127     <dependency>
128       <groupId>org.codehaus.sonar-plugins.java</groupId>
129       <artifactId>sonar-jacoco-listeners</artifactId>
130       <scope>test</scope>
131     </dependency>
132     <!-- AbstractConfigTestBase::getKarafDistro() needs this to find its version -->
133     <dependency>
134       <groupId>org.opendaylight.ovsdb</groupId>
135       <artifactId>southbound-karaf</artifactId>
136       <version>${project.version}</version>
137       <type>tar.gz</type>
138       <scope>test</scope>
139     </dependency>
140   </dependencies>
141   <build>
142     <plugins>
143       <plugin>
144         <groupId>org.jacoco</groupId>
145         <artifactId>jacoco-maven-plugin</artifactId>
146       </plugin>
147       <plugin>
148         <groupId>org.apache.maven.plugins</groupId>
149         <artifactId>maven-failsafe-plugin</artifactId>
150       </plugin>
151       <!-- Needed if you use versionAsInProject() -->
152       <plugin>
153         <groupId>org.apache.servicemix.tooling</groupId>
154         <artifactId>depends-maven-plugin</artifactId>
155         <version>1.2</version>
156         <executions>
157           <execution>
158             <id>generate-depends-file</id>
159             <goals>
160               <goal>generate-depends-file</goal>
161             </goals>
162           </execution>
163         </executions>
164       </plugin>
165       <plugin>
166         <groupId>org.apache.maven.plugins</groupId>
167         <artifactId>maven-checkstyle-plugin</artifactId>
168         <configuration>
169           <failsOnError>true</failsOnError>
170           <includeTestSourceDirectory>true</includeTestSourceDirectory>
171         </configuration>
172       </plugin>
173     </plugins>
174   </build>
175
176   <!--
177       Maven Site Configuration
178
179       The following configuration is necessary for maven-site-plugin to
180       correctly identify the correct deployment path for OpenDaylight Maven
181       sites.
182   -->
183   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
184
185   <distributionManagement>
186     <site>
187       <id>opendaylight-site</id>
188       <url>${nexus.site.url}/${project.artifactId}/</url>
189     </site>
190   </distributionManagement>
191 </project>