Clean up pom files.
[ovsdb.git] / schemas / hardwarevtep / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 Copyright (C) 2014 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"
10          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
11          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
12   <modelVersion>4.0.0</modelVersion>
13
14   <parent>
15     <groupId>org.opendaylight.ovsdb</groupId>
16     <artifactId>commons</artifactId>
17     <version>1.3.0-SNAPSHOT</version>
18     <relativePath>../../commons/parent</relativePath>
19   </parent>
20
21   <artifactId>schema.hardwarevtep</artifactId>
22   <version>1.1.0-SNAPSHOT</version>
23   <packaging>bundle</packaging>
24
25   <dependencies>
26     <dependency>
27       <groupId>org.opendaylight.ovsdb</groupId>
28       <artifactId>library</artifactId>
29     </dependency>
30     <dependency>
31       <groupId>junit</groupId>
32       <artifactId>junit</artifactId>
33       <scope>test</scope>
34     </dependency>
35   </dependencies>
36
37   <build>
38     <plugins>
39       <plugin>
40         <groupId>org.apache.felix</groupId>
41         <artifactId>maven-bundle-plugin</artifactId>
42         <version>2.4.0</version>
43         <extensions>true</extensions>
44         <configuration>
45           <instructions>
46             <Embed-Transitive>true</Embed-Transitive>
47             <Export-Package>org.opendaylight.ovsdb.schema.hardwarevtep</Export-Package>
48           </instructions>
49           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
50         </configuration>
51       </plugin>
52       <plugin>
53         <groupId>org.apache.maven.plugins</groupId>
54         <artifactId>maven-checkstyle-plugin</artifactId>
55       </plugin>
56       <plugin>
57         <groupId>org.apache.maven.plugins</groupId>
58         <artifactId>maven-surefire-plugin</artifactId>
59       </plugin>
60       <plugin>
61         <groupId>org.jacoco</groupId>
62         <artifactId>jacoco-maven-plugin</artifactId>
63       </plugin>
64     </plugins>
65   </build>
66 </project>