Incrementing versions by 0.1.0 for post-helium master branch
[openflowplugin.git] / extension / openflowjava-extension-nicira-api / pom.xml
1 <?xml version="1.0"?>
2 <project
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
4     xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.openflowplugin</groupId>
8         <artifactId>openflowplugin-extension-parent</artifactId>
9         <version>0.1.0-SNAPSHOT</version>
10         <relativePath>../</relativePath>
11     </parent>
12     <artifactId>openflowjava-extension-nicira-api</artifactId>
13     <packaging>bundle</packaging>
14
15     <build>
16         <plugins>
17             <plugin>
18                 <groupId>org.apache.felix</groupId>
19                 <artifactId>maven-bundle-plugin</artifactId>
20                 <configuration>
21                   <instructions>
22                     <Export-Package>
23                       org.opendaylight.openflowjava.nx.api, org.opendaylight.openflowjava.nx.api.impl,
24                       org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflowplugin.ofjava.nx.api.config.rev140711
25                     </Export-Package>
26                     <Embed-Transitive>true</Embed-Transitive>
27                    </instructions>
28                 </configuration>
29             </plugin>
30             <plugin>
31                 <groupId>org.opendaylight.yangtools</groupId>
32                 <artifactId>yang-maven-plugin</artifactId>
33                 <executions>
34                     <execution>
35                         <goals>
36                             <goal>generate-sources</goal>
37                         </goals>
38                         <configuration>
39                             <codeGenerators>
40                                 <generator>
41                                     <codeGeneratorClass>
42                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
43                                     </codeGeneratorClass>
44                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
45                                     <additionalConfiguration>
46                                         <namespaceToPackage1>
47                                             urn:opendaylight:params:xml:ns:yang:controller:config==org.opendaylight.controller.config.yang
48                                         </namespaceToPackage1>
49                                     </additionalConfiguration>
50                                 </generator>
51                                 <generator>
52                                     <codeGeneratorClass>
53                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
54                                     </codeGeneratorClass>
55                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
56                                 </generator>
57                             </codeGenerators>
58                             <inspectDependencies>true</inspectDependencies>
59                         </configuration>
60                     </execution>
61                 </executions>
62                 <dependencies>
63                     <dependency>
64                         <groupId>org.opendaylight.controller</groupId>
65                         <artifactId>yang-jmx-generator-plugin</artifactId>
66                         <version>${config.parent.version}</version>
67                     </dependency>
68                     <dependency>
69                         <groupId>org.opendaylight.yangtools</groupId>
70                         <artifactId>maven-sal-api-gen-plugin</artifactId>
71                         <version>${yangtools.version}</version>
72                         <type>jar</type>
73                     </dependency>
74                 </dependencies>
75             </plugin>
76         </plugins>
77     </build>
78
79     <dependencies>
80         <dependency>
81             <groupId>org.opendaylight.openflowjava</groupId>
82             <artifactId>openflow-protocol-api</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.openflowjava</groupId>
86             <artifactId>openflow-protocol-spi</artifactId>
87         </dependency>
88     </dependencies>
89 </project>