Bump odlparent/yangtools/mdsal to 6.0.3/4.0.3/5.0.6
[ovsdb.git] / utils / config / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright © 2014, 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   <modelVersion>4.0.0</modelVersion>
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.10.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>utils.config</artifactId>
21   <version>1.10.0-SNAPSHOT</version>
22   <!-- <name> formatting is used by autorelease to parse and notify projects on
23        build failure. Please do not modify this unless you have a good reason. -->
24   <name>ODL :: ovsdb :: ${project.artifactId}</name>
25   <packaging>bundle</packaging>
26
27   <dependencies>
28     <dependency>
29       <groupId>org.osgi</groupId>
30       <artifactId>org.osgi.core</artifactId>
31     </dependency>
32
33     <!-- testing dependencies -->
34     <dependency>
35       <groupId>org.mockito</groupId>
36       <artifactId>mockito-core</artifactId>
37       <scope>test</scope>
38     </dependency>
39     <dependency>
40       <groupId>org.powermock</groupId>
41       <artifactId>powermock-api-mockito2</artifactId>
42       <scope>test</scope>
43     </dependency>
44     <dependency>
45       <groupId>org.powermock</groupId>
46       <artifactId>powermock-core</artifactId>
47       <scope>test</scope>
48     </dependency>
49     <dependency>
50       <groupId>org.powermock</groupId>
51       <artifactId>powermock-module-junit4</artifactId>
52       <scope>test</scope>
53     </dependency>
54
55     <!-- FIXME: remove this with odlparent-6.0.3 -->
56     <dependency>
57       <groupId>org.javassist</groupId>
58       <artifactId>javassist</artifactId>
59       <version>3.26.0-GA</version>
60       <scope>test</scope>
61     </dependency>
62   </dependencies>
63
64   <build>
65     <plugins>
66       <plugin>
67         <groupId>org.jacoco</groupId>
68         <artifactId>jacoco-maven-plugin</artifactId>
69         <executions>
70           <execution>
71             <id>default-instrument</id>
72             <goals>
73               <goal>instrument</goal>
74             </goals>
75           </execution>
76           <execution>
77             <id>default-restore-instrumented-classes</id>
78             <goals>
79               <goal>restore-instrumented-classes</goal>
80             </goals>
81           </execution>
82         </executions>
83       </plugin>
84     </plugins>
85   </build>
86
87   <!--
88       Maven Site Configuration
89
90       The following configuration is necessary for maven-site-plugin to
91       correctly identify the correct deployment path for OpenDaylight Maven
92       sites.
93   -->
94   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
95
96   <distributionManagement>
97     <site>
98       <id>opendaylight-site</id>
99       <url>${nexus.site.url}/${project.artifactId}/</url>
100     </site>
101   </distributionManagement>
102 </project>