Merge "Infra for running ovs dockers"
[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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12
13   <parent>
14     <groupId>org.opendaylight.controller</groupId>
15     <artifactId>config-parent</artifactId>
16     <version>0.5.0-SNAPSHOT</version>
17     <relativePath/>
18   </parent>
19
20   <modelVersion>4.0.0</modelVersion>
21   <groupId>org.opendaylight.ovsdb</groupId>
22   <artifactId>utils.ovsdb-it-utils</artifactId>
23   <version>1.3.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25
26   <scm>
27     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
28     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
29     <tag>HEAD</tag>
30     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
31   </scm>
32
33   <dependencies>
34       <dependency>
35           <groupId>org.opendaylight.controller</groupId>
36           <artifactId>sal-binding-api</artifactId>
37       </dependency>
38       <dependency>
39           <groupId>${project.groupId}</groupId>
40           <artifactId>southbound-api</artifactId>
41           <version>${project.version}</version>
42       </dependency>
43       <dependency>
44           <groupId>${project.groupId}</groupId>
45           <artifactId>utils.mdsal-utils</artifactId>
46           <version>${project.version}</version>
47       </dependency>
48       <dependency>
49           <groupId>${project.groupId}</groupId>
50           <artifactId>utils.southbound-utils</artifactId>
51           <version>${project.version}</version>
52       </dependency>
53       <dependency>
54           <groupId>org.opendaylight.mdsal.model</groupId>
55           <artifactId>ietf-inet-types</artifactId>
56       </dependency>
57       <dependency>
58           <groupId>org.opendaylight.mdsal.model</groupId>
59           <artifactId>ietf-topology</artifactId>
60       </dependency>
61       <dependency>
62           <groupId>junit</groupId>
63           <artifactId>junit</artifactId>
64           <scope>compile</scope>
65       </dependency>
66       <dependency>
67           <groupId>com.esotericsoftware.yamlbeans</groupId>
68           <artifactId>yamlbeans</artifactId>
69           <version>1.09</version>
70       </dependency>
71   </dependencies>
72
73     <!--
74         Maven Site Configuration
75
76         The following configuration is necessary for maven-site-plugin to
77         correctly identify the correct deployment path for OpenDaylight Maven
78         sites.
79     -->
80     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
81
82     <distributionManagement>
83         <site>
84             <id>opendaylight-site</id>
85             <url>${nexus.site.url}/${project.artifactId}/</url>
86         </site>
87     </distributionManagement>
88   <build>
89       <resources>
90           <resource>
91               <directory>src/main/resources/docker-compose-files</directory>
92               <targetPath>META-INF/docker-compose-files</targetPath>
93               <includes>
94                   <include>*.yml</include>
95               </includes>
96           </resource>
97       </resources>
98     <plugins>
99       <plugin>
100         <groupId>org.apache.felix</groupId>
101         <artifactId>maven-bundle-plugin</artifactId>
102         <extensions>true</extensions>
103         <configuration>
104           <instructions>
105             <Embed-Dependency>
106               yamlbeans;groupId=com.esotericsoftware.yamlbeans;type=!pom;inline=false
107             </Embed-Dependency>
108             <Embed-Transitive>true</Embed-Transitive>
109           </instructions>
110         </configuration>
111       </plugin>
112     </plugins>
113   </build>
114 </project>