Bug 8130: downgrade Karaf 3 dep to provided
[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.6.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.4.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-2013-07-15</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
72
73     <dependency>
74         <groupId>org.ops4j.pax.exam</groupId>
75         <artifactId>pax-exam-container-karaf</artifactId>
76         <scope>compile</scope>
77     </dependency>
78     <dependency>
79         <groupId>org.ops4j.pax.exam</groupId>
80         <artifactId>pax-exam-junit4</artifactId>
81         <scope>compile</scope>
82     </dependency>
83     <dependency>
84         <groupId>org.ops4j.pax.exam</groupId>
85         <artifactId>pax-exam</artifactId>
86         <scope>compile</scope>
87     </dependency>
88     <dependency>
89         <groupId>org.ops4j.pax.url</groupId>
90         <artifactId>pax-url-aether</artifactId>
91         <scope>compile</scope>
92     </dependency>
93     <dependency>
94         <groupId>javax.inject</groupId>
95         <artifactId>javax.inject</artifactId>
96         <version>1</version>
97         <scope>compile</scope>
98     </dependency>
99     <dependency>
100         <groupId>org.apache.karaf.features</groupId>
101         <artifactId>org.apache.karaf.features.core</artifactId>
102         <version>${karaf.version}</version>
103         <scope>provided</scope>
104     </dependency>
105     <dependency>
106         <groupId>org.osgi</groupId>
107         <artifactId>org.osgi.core</artifactId>
108         <scope>compile</scope>
109     </dependency>
110
111   </dependencies>
112
113     <!--
114         Maven Site Configuration
115
116         The following configuration is necessary for maven-site-plugin to
117         correctly identify the correct deployment path for OpenDaylight Maven
118         sites.
119     -->
120     <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
121
122     <distributionManagement>
123         <site>
124             <id>opendaylight-site</id>
125             <url>${nexus.site.url}/${project.artifactId}/</url>
126         </site>
127     </distributionManagement>
128   <build>
129       <resources>
130           <resource>
131               <directory>src/main/resources/docker-compose-files</directory>
132               <targetPath>META-INF/docker-compose-files</targetPath>
133               <includes>
134                   <include>*.yml</include>
135               </includes>
136           </resource>
137       </resources>
138     <plugins>
139       <plugin>
140         <groupId>org.apache.felix</groupId>
141         <artifactId>maven-bundle-plugin</artifactId>
142         <extensions>true</extensions>
143         <configuration>
144           <instructions>
145             <Embed-Dependency>
146               yamlbeans;groupId=com.esotericsoftware.yamlbeans;type=!pom;inline=false
147             </Embed-Dependency>
148             <Embed-Transitive>true</Embed-Transitive>
149           </instructions>
150         </configuration>
151       </plugin>
152     </plugins>
153   </build>
154 </project>