OpenFlow port values are uint32, correcting the size in the model for that
[ovsdb.git] / schemas / openvswitch / 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.openvswitch</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         <extensions>true</extensions>
43         <configuration>
44           <instructions>
45             <Embed-Transitive>true</Embed-Transitive>
46             <Export-Package>org.opendaylight.ovsdb.schema.openvswitch</Export-Package>
47           </instructions>
48           <manifestLocation>${project.basedir}/META-INF</manifestLocation>
49         </configuration>
50       </plugin>
51       <plugin>
52         <groupId>org.apache.maven.plugins</groupId>
53         <artifactId>maven-checkstyle-plugin</artifactId>
54       </plugin>
55       <plugin>
56         <groupId>org.apache.maven.plugins</groupId>
57         <artifactId>maven-surefire-plugin</artifactId>
58       </plugin>
59       <plugin>
60         <groupId>org.jacoco</groupId>
61         <artifactId>jacoco-maven-plugin</artifactId>
62       </plugin>
63     </plugins>
64   </build>
65 </project>