Enable checkstyle enforcement in openflowplugin-parent
[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.7.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.codehaus.mojo</groupId>
22               <artifactId>findbugs-maven-plugin</artifactId>
23               <configuration>
24                 <failOnError>true</failOnError>
25               </configuration>
26             </plugin>
27         </plugins>
28     </build>
29
30     <dependencies>
31         <dependency>
32             <groupId>${project.groupId}.model</groupId>
33             <artifactId>model-flow-service</artifactId>
34         </dependency>
35         <dependency>
36             <groupId>${project.groupId}.model</groupId>
37             <artifactId>model-flow-statistics</artifactId>
38         </dependency>
39         <dependency>
40             <groupId>org.opendaylight.controller</groupId>
41             <artifactId>sal-binding-api</artifactId>
42         </dependency>
43         <dependency>
44             <groupId>${project.groupId}.openflowjava</groupId>
45             <artifactId>openflow-protocol-api</artifactId>
46         </dependency>
47         <dependency>
48             <groupId>${project.groupId}.openflowjava</groupId>
49             <artifactId>openflow-protocol-spi</artifactId>
50         </dependency>
51         <dependency>
52             <groupId>org.opendaylight.controller</groupId>
53             <artifactId>sal-common-api</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.opendaylight.mdsal</groupId>
57             <artifactId>mdsal-singleton-common-api</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.opendaylight.infrautils</groupId>
61             <artifactId>diagstatus-api</artifactId>
62             <version>${infrautils.version}</version>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.mdsal</groupId>
66             <artifactId>mdsal-eos-binding-api</artifactId>
67         </dependency>
68     </dependencies>
69
70 </project>