Merge "Fix checkstyle violations in openflowjava-util"
[openflowplugin.git] / openflowplugin-api / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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">
3
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.opendaylight.openflowplugin</groupId>
7         <artifactId>openflowplugin-parent</artifactId>
8         <version>0.6.0-SNAPSHOT</version>
9         <relativePath>../parent</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin-api</artifactId>
13     <packaging>bundle</packaging>
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19             </plugin>
20             <plugin>
21                 <groupId>org.apache.maven.plugins</groupId>
22                 <artifactId>maven-checkstyle-plugin</artifactId>
23                 <configuration>
24                     <propertyExpansion>checkstyle.violationSeverity=error</propertyExpansion>
25                 </configuration>
26             </plugin>
27             <plugin>
28               <groupId>org.codehaus.mojo</groupId>
29               <artifactId>findbugs-maven-plugin</artifactId>
30               <configuration>
31                 <failOnError>true</failOnError>
32               </configuration>
33             </plugin>
34         </plugins>
35     </build>
36
37     <dependencies>
38         <dependency>
39             <groupId>${project.groupId}.model</groupId>
40             <artifactId>model-flow-service</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>${project.groupId}.model</groupId>
44             <artifactId>model-flow-statistics</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.opendaylight.controller</groupId>
48             <artifactId>sal-binding-api</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>${project.groupId}.openflowjava</groupId>
52             <artifactId>openflow-protocol-api</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>${project.groupId}.openflowjava</groupId>
56             <artifactId>openflow-protocol-spi</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.opendaylight.controller</groupId>
60             <artifactId>sal-common-api</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>org.opendaylight.mdsal</groupId>
64             <artifactId>mdsal-singleton-common-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>org.opendaylight.infrautils</groupId>
68             <artifactId>diagstatus-api</artifactId>
69             <version>${infrautils.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>org.opendaylight.mdsal</groupId>
73             <artifactId>mdsal-eos-binding-api</artifactId>
74         </dependency>
75     </dependencies>
76
77 </project>