Fix codestyle
[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.opendaylight.yangtools</groupId>
29                 <artifactId>yang-maven-plugin</artifactId>
30                 <executions>
31                     <execution>
32                         <goals>
33                             <goal>generate-sources</goal>
34                         </goals>
35                         <configuration>
36                             <codeGenerators>
37                                 <generator>
38                                     <codeGeneratorClass>
39                                         org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl
40                                     </codeGeneratorClass>
41                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
42                                 </generator>
43                                 <generator>
44                                     <codeGeneratorClass>org.opendaylight.mdsal.binding.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
45                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
46                                 </generator>
47                             </codeGenerators>
48                             <inspectDependencies>true</inspectDependencies>
49                         </configuration>
50                     </execution>
51                 </executions>
52                 <dependencies>
53                     <dependency>
54                         <groupId>org.opendaylight.mdsal</groupId>
55                         <artifactId>maven-sal-api-gen-plugin</artifactId>
56                         <version>${mdsal.model.version}</version>
57                         <type>jar</type>
58                     </dependency>
59                 </dependencies>
60             </plugin>
61         </plugins>
62     </build>
63
64     <dependencies>
65         <dependency>
66             <groupId>${project.groupId}.model</groupId>
67             <artifactId>model-flow-service</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}.model</groupId>
71             <artifactId>model-flow-statistics</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>org.opendaylight.controller</groupId>
75             <artifactId>sal-binding-api</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}.openflowjava</groupId>
79             <artifactId>openflow-protocol-api</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}.openflowjava</groupId>
83             <artifactId>openflow-protocol-spi</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller</groupId>
87             <artifactId>sal-common-api</artifactId>
88         </dependency>
89         <dependency>
90             <groupId>org.opendaylight.mdsal</groupId>
91             <artifactId>mdsal-singleton-common-api</artifactId>
92         </dependency>
93     </dependencies>
94
95 </project>