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