0a8b10b93291ad7fe6e28254932463d253c36b16
[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.15.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.15.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.framework</artifactId>
31     </dependency>
32   </dependencies>
33
34   <build>
35     <plugins>
36       <plugin>
37         <groupId>org.jacoco</groupId>
38         <artifactId>jacoco-maven-plugin</artifactId>
39         <executions>
40           <execution>
41             <id>default-instrument</id>
42             <goals>
43               <goal>instrument</goal>
44             </goals>
45           </execution>
46           <execution>
47             <id>default-restore-instrumented-classes</id>
48             <goals>
49               <goal>restore-instrumented-classes</goal>
50             </goals>
51           </execution>
52         </executions>
53       </plugin>
54     </plugins>
55   </build>
56
57   <!--
58       Maven Site Configuration
59
60       The following configuration is necessary for maven-site-plugin to
61       correctly identify the correct deployment path for OpenDaylight Maven
62       sites.
63   -->
64   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
65
66   <distributionManagement>
67     <site>
68       <id>opendaylight-site</id>
69       <url>${nexus.site.url}/${project.artifactId}/</url>
70     </site>
71   </distributionManagement>
72 </project>