Bump versions by x.(y+1).z for next dev cycle
[openflowplugin.git] / extension / openflowplugin-extension-nicira / 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-extension-parent</artifactId>
8         <version>0.6.0-SNAPSHOT</version>
9         <relativePath>../</relativePath>
10     </parent>
11
12     <artifactId>openflowplugin-extension-nicira</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             </plugin>
21
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                             <codeGenerators>
32                                 <generator>
33                                     <codeGeneratorClass>
34                                         org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl
35                                     </codeGeneratorClass>
36                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
37                                 </generator>
38                                 <generator>
39                                     <codeGeneratorClass>org.opendaylight.mdsal.binding.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
40                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
41                                 </generator>
42                             </codeGenerators>
43                             <inspectDependencies>true</inspectDependencies>
44                         </configuration>
45                     </execution>
46                 </executions>
47                 <dependencies>
48                     <dependency>
49                         <groupId>org.opendaylight.controller</groupId>
50                         <artifactId>yang-jmx-generator-plugin</artifactId>
51                         <version>${config.version}</version>
52                     </dependency>
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}</groupId>
67             <artifactId>openflowplugin-extension-api</artifactId>
68         </dependency>
69         <dependency>
70             <groupId>${project.groupId}</groupId>
71             <artifactId>openflowjava-extension-nicira</artifactId>
72         </dependency>
73         <dependency>
74             <groupId>${project.groupId}</groupId>
75             <artifactId>openflowjava-extension-nicira-api</artifactId>
76         </dependency>
77         <!-- MD-SAL models -->
78         <dependency>
79             <groupId>${project.groupId}.model</groupId>
80             <artifactId>model-flow-base</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>${project.groupId}.model</groupId>
84             <artifactId>model-flow-service</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>${project.groupId}.model</groupId>
88             <artifactId>model-flow-statistics</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.controller.model</groupId>
92             <artifactId>model-inventory</artifactId>
93         </dependency>
94         <!-- OpenFlowJava-API models -->
95         <dependency>
96             <groupId>${project.groupId}.openflowjava</groupId>
97             <artifactId>openflow-protocol-api</artifactId>
98         </dependency>
99         <!-- Test dependencies -->
100         <dependency>
101             <groupId>junit</groupId>
102             <artifactId>junit</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.mockito</groupId>
107             <artifactId>mockito-core</artifactId>
108             <scope>test</scope>
109         </dependency>
110         <dependency>
111             <groupId>org.slf4j</groupId>
112             <artifactId>slf4j-log4j12</artifactId>
113             <scope>test</scope>
114         </dependency>
115     </dependencies>
116
117 </project>