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