Bump upstreams
[ovsdb.git] / utils / ovsdb-it-utils / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 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>ovsdb-binding-parent</artifactId>
14     <version>1.18.0-SNAPSHOT</version>
15     <relativePath>../../commons/binding-parent</relativePath>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <artifactId>utils.ovsdb-it-utils</artifactId>
20   <packaging>bundle</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   <dependencies>
26       <dependency>
27           <groupId>${project.groupId}</groupId>
28           <artifactId>southbound-api</artifactId>
29           <version>${project.version}</version>
30       </dependency>
31       <dependency>
32           <groupId>${project.groupId}</groupId>
33           <artifactId>utils.mdsal-utils</artifactId>
34           <version>${project.version}</version>
35       </dependency>
36       <dependency>
37           <groupId>${project.groupId}</groupId>
38           <artifactId>utils.southbound-utils</artifactId>
39           <version>${project.version}</version>
40       </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal.binding.model.ietf</groupId>
43       <artifactId>rfc6991-ietf-inet-types</artifactId>
44     </dependency>
45       <dependency>
46           <groupId>org.opendaylight.mdsal.model</groupId>
47           <artifactId>ietf-topology</artifactId>
48       </dependency>
49       <dependency>
50           <groupId>junit</groupId>
51           <artifactId>junit</artifactId>
52           <scope>compile</scope>
53       </dependency>
54       <dependency>
55           <groupId>com.esotericsoftware.yamlbeans</groupId>
56           <artifactId>yamlbeans</artifactId>
57           <version>1.09</version>
58       </dependency>
59
60
61     <dependency>
62         <groupId>org.ops4j.pax.exam</groupId>
63         <artifactId>pax-exam-container-karaf</artifactId>
64         <scope>compile</scope>
65     </dependency>
66     <dependency>
67         <groupId>org.ops4j.pax.exam</groupId>
68         <artifactId>pax-exam-junit4</artifactId>
69         <scope>compile</scope>
70     </dependency>
71     <dependency>
72         <groupId>org.ops4j.pax.exam</groupId>
73         <artifactId>pax-exam</artifactId>
74         <scope>compile</scope>
75     </dependency>
76     <dependency>
77         <groupId>org.ops4j.pax.url</groupId>
78         <artifactId>pax-url-aether</artifactId>
79         <scope>compile</scope>
80     </dependency>
81     <dependency>
82         <groupId>com.guicedee.services</groupId>
83         <artifactId>javax.inject</artifactId>
84         <scope>compile</scope>
85     </dependency>
86     <dependency>
87         <groupId>org.apache.karaf.features</groupId>
88         <artifactId>org.apache.karaf.features.core</artifactId>
89         <scope>provided</scope>
90     </dependency>
91     <dependency>
92         <groupId>org.osgi</groupId>
93         <artifactId>org.osgi.framework</artifactId>
94         <scope>compile</scope>
95     </dependency>
96
97   </dependencies>
98
99     <!--
100         Maven Site Configuration
101
102         The following configuration is necessary for maven-site-plugin to
103         correctly identify the correct deployment path for OpenDaylight Maven
104         sites.
105     -->
106     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
107
108     <distributionManagement>
109         <site>
110             <id>opendaylight-site</id>
111             <url>${nexus.site.url}/${project.artifactId}/</url>
112         </site>
113     </distributionManagement>
114   <build>
115       <resources>
116           <resource>
117               <directory>src/main/resources/docker-compose-files</directory>
118               <targetPath>META-INF/docker-compose-files</targetPath>
119               <includes>
120                   <include>*.yml</include>
121               </includes>
122           </resource>
123       </resources>
124     <plugins>
125       <plugin>
126         <groupId>org.apache.felix</groupId>
127         <artifactId>maven-bundle-plugin</artifactId>
128         <extensions>true</extensions>
129         <configuration>
130           <instructions>
131             <Embed-Dependency>
132               yamlbeans;groupId=com.esotericsoftware.yamlbeans;type=!pom;inline=false
133             </Embed-Dependency>
134             <Embed-Transitive>true</Embed-Transitive>
135           </instructions>
136         </configuration>
137       </plugin>
138     </plugins>
139   </build>
140 </project>