Remove trailing whitespace
[openflowjava.git] / openflow-protocol-api / pom.xml
1 <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">
2     <modelVersion>4.0.0</modelVersion>
3     <parent>
4         <groupId>org.opendaylight.openflowjava</groupId>
5         <artifactId>openflow-protocol-parent</artifactId>
6         <version>0.6.0-SNAPSHOT</version>
7     </parent>
8     <artifactId>openflow-protocol-api</artifactId>
9     <packaging>bundle</packaging>
10     <name>Openflow Protocol Library - API</name>
11     <scm>
12         <url>https://wiki.opendaylight.org/view/Openflow_Protocol_Library:Main</url>
13       <tag>HEAD</tag>
14   </scm>
15
16     <properties>
17         <yangtools.binding.version>0.7.0-SNAPSHOT</yangtools.binding.version>
18     </properties>
19
20     <build>
21         <plugins>
22             <plugin>
23                 <groupId>org.opendaylight.yangtools</groupId>
24                 <artifactId>yang-maven-plugin</artifactId>
25                 <executions>
26                     <execution>
27                         <goals>
28                             <goal>generate-sources</goal>
29                         </goals>
30                         <configuration>
31                             <yangFilesRootDir>src/main/yang</yangFilesRootDir>
32                             <codeGenerators>
33                                 <generator>
34                                     <codeGeneratorClass>
35                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
36                                     </codeGeneratorClass>
37                                     <outputBaseDir>
38                                         ${salGeneratorPath}
39                                     </outputBaseDir>
40                                 </generator>
41                                 <generator>
42                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
43                                     <outputBaseDir>target/site/restconf</outputBaseDir>
44                                 </generator>
45                             </codeGenerators>
46                             <inspectDependencies>true</inspectDependencies>
47                         </configuration>
48                     </execution>
49                 </executions>
50
51                 <dependencies>
52                     <dependency>
53                         <groupId>org.opendaylight.yangtools</groupId>
54                         <artifactId>maven-sal-api-gen-plugin</artifactId>
55                         <version>${yangtools.generator.version}</version>
56                         <type>jar</type>
57                     </dependency>
58                 </dependencies>
59             </plugin>
60         </plugins>
61         <pluginManagement>
62             <plugins>
63                 <!--This plugin's configuration is used to store Eclipse
64                     m2e settings only. It has no influence on the Maven build itself. -->
65                 <plugin>
66                     <groupId>org.eclipse.m2e</groupId>
67                     <artifactId>lifecycle-mapping</artifactId>
68                     <version>1.0.0</version>
69                     <configuration>
70                         <lifecycleMappingMetadata>
71                             <pluginExecutions>
72                                 <pluginExecution>
73                                     <pluginExecutionFilter>
74                                         <groupId>
75                                             org.opendaylight.yangtools
76                                         </groupId>
77                                         <artifactId>
78                                             yang-maven-plugin
79                                         </artifactId>
80                                         <versionRange>
81                                             (0.5.6,)
82                                         </versionRange>
83                                         <goals>
84                                             <goal>
85                                                 generate-sources
86                                             </goal>
87                                         </goals>
88                                     </pluginExecutionFilter>
89                                     <action>
90                                         <ignore />
91                                     </action>
92                                 </pluginExecution>
93                             </pluginExecutions>
94                         </lifecycleMappingMetadata>
95                     </configuration>
96                 </plugin>
97             </plugins>
98         </pluginManagement>
99     </build>
100     <dependencies>
101         <dependency>
102             <groupId>org.opendaylight.yangtools</groupId>
103             <artifactId>yang-binding</artifactId>
104             <version>${yangtools.binding.version}</version>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.yangtools</groupId>
108             <artifactId>yang-common</artifactId>
109             <version>${yangtools.version}</version>
110         </dependency>
111         <dependency>
112             <groupId>org.opendaylight.yangtools.model</groupId>
113             <artifactId>ietf-inet-types</artifactId>
114         </dependency>
115         <dependency>
116             <groupId>org.opendaylight.yangtools.model</groupId>
117             <artifactId>ietf-yang-types</artifactId>
118         </dependency>
119         <dependency>
120             <groupId>org.opendaylight.yangtools.model</groupId>
121             <artifactId>yang-ext</artifactId>
122         </dependency>
123         <dependency>
124             <groupId>io.netty</groupId>
125             <artifactId>netty-buffer</artifactId>
126         </dependency>
127         <dependency>
128             <groupId>junit</groupId>
129             <artifactId>junit</artifactId>
130             <scope>test</scope>
131         </dependency>
132         <dependency>
133             <groupId>org.mockito</groupId>
134             <artifactId>mockito-all</artifactId>
135         </dependency>
136     </dependencies>
137 </project>