9e9f443f73b0f1938946c4475765d8ae262bba2f
[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 Copyright © 2014, 2016 Cisco Systems, 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.mdsal</groupId>
13     <artifactId>binding-parent</artifactId>
14     <version>0.12.0-SNAPSHOT</version>
15     <relativePath/>
16   </parent>
17
18   <modelVersion>4.0.0</modelVersion>
19   <groupId>org.opendaylight.ovsdb</groupId>
20   <artifactId>hwvtepsouthbound-impl</artifactId>
21   <version>1.6.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   <dependencyManagement>
28     <dependencies>
29       <dependency>
30         <groupId>org.opendaylight.controller</groupId>
31         <artifactId>mdsal-artifacts</artifactId>
32         <version>1.7.0-SNAPSHOT</version>
33         <type>pom</type>
34         <scope>import</scope>
35       </dependency>
36     </dependencies>
37   </dependencyManagement>
38
39   <dependencies>
40     <dependency>
41       <groupId>org.opendaylight.controller</groupId>
42       <artifactId>sal-core-api</artifactId>
43     </dependency>
44     <dependency>
45       <groupId>org.opendaylight.mdsal</groupId>
46       <artifactId>mdsal-binding-dom-codec</artifactId>
47     </dependency>
48     <!-- project specific dependencies -->
49     <dependency>
50       <groupId>${project.groupId}</groupId>
51       <artifactId>hwvtepsouthbound-api</artifactId>
52       <version>${project.version}</version>
53     </dependency>
54     <dependency>
55       <groupId>${project.groupId}</groupId>
56       <artifactId>library</artifactId>
57       <version>${project.version}</version>
58     </dependency>
59     <dependency>
60       <groupId>${project.groupId}</groupId>
61       <artifactId>schema.hardwarevtep</artifactId>
62       <version>${project.version}</version>
63     </dependency>
64     <dependency>
65       <groupId>${project.groupId}</groupId>
66       <artifactId>utils.mdsal-utils</artifactId>
67       <version>${project.version}</version>
68     </dependency>
69     <!-- Testing Dependencies -->
70       <dependency>
71           <groupId>org.opendaylight.controller</groupId>
72           <artifactId>sal-binding-broker-impl</artifactId>
73           <scope>test</scope>
74       </dependency>
75       <dependency>
76           <groupId>org.opendaylight.controller</groupId>
77           <artifactId>sal-binding-broker-impl</artifactId>
78           <scope>test</scope>
79           <type>test-jar</type>
80       </dependency>
81       <dependency>
82           <groupId>org.slf4j</groupId>
83           <artifactId>slf4j-simple</artifactId>
84           <scope>test</scope>
85       </dependency>
86
87       <dependency>
88       <groupId>junit</groupId>
89       <artifactId>junit</artifactId>
90       <scope>test</scope>
91     </dependency>
92     <dependency>
93       <groupId>org.mockito</groupId>
94       <artifactId>mockito-core</artifactId>
95       <scope>test</scope>
96     </dependency>
97       <dependency>
98           <groupId>org.powermock</groupId>
99           <artifactId>powermock-api-mockito</artifactId>
100           <scope>test</scope>
101       </dependency>
102       <dependency>
103           <groupId>org.powermock</groupId>
104           <artifactId>powermock-module-junit4</artifactId>
105           <scope>test</scope>
106       </dependency>
107   </dependencies>
108
109   <build>
110     <plugins>
111       <plugin>
112         <groupId>org.apache.felix</groupId>
113         <artifactId>maven-bundle-plugin</artifactId>
114         <configuration>
115           <instructions>
116             <Private-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Private-Package>
117             <Export-Package>org.opendaylight.ovsdb.hwvtepsouthbound.*,org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.hwvtepsouthbound.impl.rev150901.*</Export-Package>
118           </instructions>
119         </configuration>
120       </plugin>
121       <plugin>
122         <groupId>org.apache.maven.plugins</groupId>
123         <artifactId>maven-checkstyle-plugin</artifactId>
124         <configuration>
125           <failsOnError>true</failsOnError>
126         </configuration>
127       </plugin>
128       <plugin>
129         <groupId>org.apache.maven.plugins</groupId>
130         <artifactId>maven-surefire-plugin</artifactId>
131         <configuration>
132           <forkCount>1</forkCount>
133           <reuseForks>false</reuseForks>
134         </configuration>
135       </plugin>
136     </plugins>
137   </build>
138
139   <!--
140       Maven Site Configuration
141
142       The following configuration is necessary for maven-site-plugin to
143       correctly identify the correct deployment path for OpenDaylight Maven
144       sites.
145   -->
146   <url>${odl.site.url}/${project.groupId}/${stream}/${project.artifactId}/</url>
147
148   <distributionManagement>
149     <site>
150       <id>opendaylight-site</id>
151       <url>${nexus.site.url}/${project.artifactId}/</url>
152     </site>
153   </distributionManagement>
154 </project>