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