Remove trailing whitespace
[openflowjava.git] / openflow-protocol-impl / 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-impl</artifactId>
9     <packaging>bundle</packaging>
10     <name>Openflow Protocol Library - IMPL</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.version>0.7.0-SNAPSHOT</yangtools.version>
18         <yangtools.generator.version>0.7.0-SNAPSHOT</yangtools.generator.version>
19         <yangtools.binding.version>0.7.0-SNAPSHOT</yangtools.binding.version>
20     </properties>
21
22     <build>
23         <plugins>
24             <plugin>
25               <groupId>org.apache.felix</groupId>
26               <artifactId>maven-bundle-plugin</artifactId>
27               <extensions>true</extensions>
28               <configuration>
29                 <instructions>
30                     <Export-Package>
31                       org.opendaylight.openflowjava.protocol.impl.*,
32                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow._switch.connection.provider.impl.*
33                     </Export-Package>
34                 </instructions>
35               </configuration>
36             </plugin>
37             <plugin>
38                 <groupId>org.opendaylight.yangtools</groupId>
39                 <artifactId>yang-maven-plugin</artifactId>
40                 <executions>
41                     <execution>
42                         <goals>
43                             <goal>generate-sources</goal>
44                         </goals>
45                         <configuration>
46                             <codeGenerators>
47                                 <generator>
48                                     <codeGeneratorClass>
49                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
50                                     </codeGeneratorClass>
51                                     <outputBaseDir>${jmxGeneratorPath}</outputBaseDir>
52                                     <additionalConfiguration>
53                                         <namespaceToPackage1>
54                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
55                                         </namespaceToPackage1>
56                                     </additionalConfiguration>
57                                 </generator>
58                                 <generator>
59                                     <codeGeneratorClass>
60                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
61                                     </codeGeneratorClass>
62                                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
63                                 </generator>
64                                 <generator>
65                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
66                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
67                                 </generator>
68                             </codeGenerators>
69                             <inspectDependencies>true</inspectDependencies>
70                         </configuration>
71                     </execution>
72                 </executions>
73                 <dependencies>
74                     <dependency>
75                         <groupId>org.opendaylight.controller</groupId>
76                         <artifactId>yang-jmx-generator-plugin</artifactId>
77                         <version>${config.version}</version>
78                     </dependency>
79                     <dependency>
80                         <groupId>org.opendaylight.yangtools</groupId>
81                         <artifactId>maven-sal-api-gen-plugin</artifactId>
82                         <version>${yangtools.generator.version}</version>
83                         <type>jar</type>
84                     </dependency>
85                 </dependencies>
86             </plugin>
87             <plugin>
88                 <groupId>org.apache.maven.plugins</groupId>
89                 <artifactId>maven-jar-plugin</artifactId>
90                 <version>2.5</version>
91                 <executions>
92                     <execution>
93                         <goals>
94                             <goal>test-jar</goal>
95                         </goals>
96                     </execution>
97                 </executions>
98             </plugin>
99         </plugins>
100     </build>
101
102     <dependencies>
103         <dependency>
104             <groupId>${project.groupId}</groupId>
105             <artifactId>openflow-protocol-api</artifactId>
106             <version>${project.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>${project.groupId}</groupId>
110             <artifactId>openflow-protocol-spi</artifactId>
111             <version>${project.version}</version>
112         </dependency>
113         <dependency>
114             <groupId>org.opendaylight.openflowjava</groupId>
115             <artifactId>util</artifactId>
116             <version>${project.version}</version>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.controller</groupId>
120             <artifactId>sal-common-util</artifactId>
121             <version>${yang.prototype.version}</version>
122             <exclusions>
123                 <exclusion>
124                     <groupId>org.opendaylight.controller</groupId>
125                     <artifactId>sal-common-api</artifactId>
126                 </exclusion>
127                 <exclusion>
128                     <groupId>org.opendaylight.yangtools</groupId>
129                     <artifactId>concepts</artifactId>
130                 </exclusion>
131             </exclusions>
132         </dependency>
133         <dependency>
134             <groupId>io.netty</groupId>
135             <artifactId>netty-handler</artifactId>
136         </dependency>
137         <dependency>
138             <groupId>org.osgi</groupId>
139             <artifactId>org.osgi.core</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>org.slf4j</groupId>
143             <artifactId>slf4j-log4j12</artifactId>
144             <scope>test</scope>
145         </dependency>
146         <dependency>
147             <groupId>com.google.guava</groupId>
148             <artifactId>guava</artifactId>
149         </dependency>
150         <dependency>
151             <groupId>junit</groupId>
152             <artifactId>junit</artifactId>
153             <scope>test</scope>
154         </dependency>
155         <dependency>
156             <groupId>org.mockito</groupId>
157             <artifactId>mockito-all</artifactId>
158         </dependency>
159         <dependency>
160             <groupId>org.opendaylight.controller</groupId>
161             <artifactId>config-api</artifactId>
162         </dependency>
163     </dependencies>
164 </project>