Add binding-parent pom
[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.ovsdb</groupId>
15     <artifactId>ovsdb-binding-parent</artifactId>
16     <version>1.7.0-SNAPSHOT</version>
17     <relativePath>../../commons/binding-parent</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.7.0-SNAPSHOT</version>
24   <packaging>bundle</packaging>
25   <!-- <name> formatting is used by autorelease to parse and notify projects on
26        build failure. Please do not modify this unless you have a good reason. -->
27   <name>ODL :: ovsdb :: ${project.artifactId}</name>
28
29   <dependencies>
30       <dependency>
31           <groupId>${project.groupId}</groupId>
32           <artifactId>southbound-api</artifactId>
33           <version>${project.version}</version>
34       </dependency>
35       <dependency>
36           <groupId>${project.groupId}</groupId>
37           <artifactId>utils.mdsal-utils</artifactId>
38           <version>${project.version}</version>
39       </dependency>
40       <dependency>
41           <groupId>${project.groupId}</groupId>
42           <artifactId>utils.southbound-utils</artifactId>
43           <version>${project.version}</version>
44       </dependency>
45       <dependency>
46           <groupId>org.opendaylight.mdsal.model</groupId>
47           <artifactId>ietf-inet-types-2013-07-15</artifactId>
48       </dependency>
49       <dependency>
50           <groupId>org.opendaylight.mdsal.model</groupId>
51           <artifactId>ietf-topology</artifactId>
52       </dependency>
53       <dependency>
54           <groupId>junit</groupId>
55           <artifactId>junit</artifactId>
56           <scope>compile</scope>
57       </dependency>
58       <dependency>
59           <groupId>com.esotericsoftware.yamlbeans</groupId>
60           <artifactId>yamlbeans</artifactId>
61           <version>1.09</version>
62       </dependency>
63
64
65     <dependency>
66         <groupId>org.ops4j.pax.exam</groupId>
67         <artifactId>pax-exam-container-karaf</artifactId>
68         <scope>compile</scope>
69     </dependency>
70     <dependency>
71         <groupId>org.ops4j.pax.exam</groupId>
72         <artifactId>pax-exam-junit4</artifactId>
73         <scope>compile</scope>
74     </dependency>
75     <dependency>
76         <groupId>org.ops4j.pax.exam</groupId>
77         <artifactId>pax-exam</artifactId>
78         <scope>compile</scope>
79     </dependency>
80     <dependency>
81         <groupId>org.ops4j.pax.url</groupId>
82         <artifactId>pax-url-aether</artifactId>
83         <scope>compile</scope>
84     </dependency>
85     <dependency>
86         <groupId>javax.inject</groupId>
87         <artifactId>javax.inject</artifactId>
88         <version>1</version>
89         <scope>compile</scope>
90     </dependency>
91     <dependency>
92         <groupId>org.apache.karaf.features</groupId>
93         <artifactId>org.apache.karaf.features.core</artifactId>
94         <version>${karaf.version}</version>
95         <scope>provided</scope>
96     </dependency>
97     <dependency>
98         <groupId>org.osgi</groupId>
99         <artifactId>org.osgi.core</artifactId>
100         <scope>compile</scope>
101     </dependency>
102
103   </dependencies>
104
105     <!--
106         Maven Site Configuration
107
108         The following configuration is necessary for maven-site-plugin to
109         correctly identify the correct deployment path for OpenDaylight Maven
110         sites.
111     -->
112     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
113
114     <distributionManagement>
115         <site>
116             <id>opendaylight-site</id>
117             <url>${nexus.site.url}/${project.artifactId}/</url>
118         </site>
119     </distributionManagement>
120   <build>
121       <resources>
122           <resource>
123               <directory>src/main/resources/docker-compose-files</directory>
124               <targetPath>META-INF/docker-compose-files</targetPath>
125               <includes>
126                   <include>*.yml</include>
127               </includes>
128           </resource>
129       </resources>
130     <plugins>
131       <plugin>
132         <groupId>org.apache.felix</groupId>
133         <artifactId>maven-bundle-plugin</artifactId>
134         <extensions>true</extensions>
135         <configuration>
136           <instructions>
137             <Embed-Dependency>
138               yamlbeans;groupId=com.esotericsoftware.yamlbeans;type=!pom;inline=false
139             </Embed-Dependency>
140             <Embed-Transitive>true</Embed-Transitive>
141           </instructions>
142         </configuration>
143       </plugin>
144     </plugins>
145   </build>
146 </project>