Ditch blueplrint-maven-plugin from southbound-impl
[ovsdb.git] / hwvtepsouthbound / hwvtepsouthbound-impl / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!-- vi: set et smarttab sw=4 tabstop=4: -->
3 <!--
4 Copyright © 2014, 2016 Cisco Systems, Inc. and others.  All rights reserved.
5
6 This program and the accompanying materials are made available under the
7 terms of the Eclipse Public License v1.0 which accompanies this distribution,
8 and is available at http://www.eclipse.org/legal/epl-v10.html
9 -->
10 <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">
11
12   <parent>
13     <groupId>org.opendaylight.ovsdb</groupId>
14     <artifactId>ovsdb-binding-parent</artifactId>
15     <version>1.12.0-SNAPSHOT</version>
16     <relativePath>../../commons/binding-parent</relativePath>
17   </parent>
18
19   <modelVersion>4.0.0</modelVersion>
20   <groupId>org.opendaylight.ovsdb</groupId>
21   <artifactId>hwvtepsouthbound-impl</artifactId>
22   <version>1.12.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24   <!-- <name> formatting is used by autorelease to parse and notify projects on
25        build failure. Please do not modify this unless you have a good reason. -->
26   <name>ODL :: ovsdb :: ${project.artifactId}</name>
27
28   <dependencies>
29     <dependency>
30       <groupId>org.osgi</groupId>
31       <artifactId>org.osgi.core</artifactId>
32     </dependency>
33     <dependency>
34       <groupId>org.opendaylight.mdsal</groupId>
35       <artifactId>mdsal-dom-api</artifactId>
36     </dependency>
37     <dependency>
38       <groupId>org.opendaylight.mdsal</groupId>
39       <artifactId>mdsal-binding-dom-codec</artifactId>
40     </dependency>
41     <dependency>
42       <groupId>org.opendaylight.mdsal</groupId>
43       <artifactId>mdsal-eos-binding-api</artifactId>
44     </dependency>
45     <dependency>
46       <groupId>javax.inject</groupId>
47       <artifactId>javax.inject</artifactId>
48       <scope>provided</scope>
49       <optional>true</optional>
50     </dependency>
51     <!-- project specific dependencies -->
52     <dependency>
53       <groupId>${project.groupId}</groupId>
54       <artifactId>hwvtepsouthbound-api</artifactId>
55       <version>${project.version}</version>
56     </dependency>
57     <dependency>
58       <groupId>${project.groupId}</groupId>
59       <artifactId>library</artifactId>
60       <version>${project.version}</version>
61     </dependency>
62       <dependency>
63           <groupId>org.apache.karaf.shell</groupId>
64           <artifactId>org.apache.karaf.shell.console</artifactId>
65           <scope>provided</scope>
66       </dependency>
67     <dependency>
68       <groupId>${project.groupId}</groupId>
69       <artifactId>schema.hardwarevtep</artifactId>
70       <version>${project.version}</version>
71     </dependency>
72     <dependency>
73       <groupId>${project.groupId}</groupId>
74       <artifactId>utils.mdsal-utils</artifactId>
75       <version>${project.version}</version>
76     </dependency>
77     <dependency>
78       <groupId>javax.annotation</groupId>
79       <artifactId>javax.annotation-api</artifactId>
80       <optional>true</optional>
81     </dependency>
82     <dependency>
83       <groupId>org.opendaylight.serviceutils</groupId>
84       <artifactId>upgrade</artifactId>
85     </dependency>
86     <dependency>
87       <groupId>org.opendaylight.mdsal</groupId>
88       <artifactId>mdsal-binding-spi</artifactId>
89     </dependency>
90     <dependency>
91       <groupId>org.apache.karaf.shell</groupId>
92       <artifactId>org.apache.karaf.shell.core</artifactId>
93     </dependency>
94
95     <!-- Testing Dependencies -->
96     <dependency>
97       <groupId>org.opendaylight.mdsal</groupId>
98       <artifactId>mdsal-binding-test-utils</artifactId>
99     </dependency>
100   </dependencies>
101
102   <build>
103     <plugins>
104       <plugin>
105         <groupId>org.apache.felix</groupId>
106         <artifactId>maven-bundle-plugin</artifactId>
107         <configuration>
108           <instructions>
109             <Karaf-Commands>org.opendaylight.ovsdb.hwvtepsouthbound.cli*</Karaf-Commands>
110             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
111             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
112           </instructions>
113         </configuration>
114       </plugin>
115       <plugin>
116         <groupId>org.apache.maven.plugins</groupId>
117         <artifactId>maven-surefire-plugin</artifactId>
118         <configuration>
119           <forkCount>1</forkCount>
120           <reuseForks>false</reuseForks>
121         </configuration>
122       </plugin>
123     </plugins>
124   </build>
125
126   <!--
127       Maven Site Configuration
128
129       The following configuration is necessary for maven-site-plugin to
130       correctly identify the correct deployment path for OpenDaylight Maven
131       sites.
132   -->
133   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
134
135   <distributionManagement>
136     <site>
137       <id>opendaylight-site</id>
138       <url>${nexus.site.url}/${project.artifactId}/</url>
139     </site>
140   </distributionManagement>
141 </project>