554654a178300b5a28ef1379faa5104489572e21
[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.mdsal</groupId>
50                         <artifactId>maven-sal-api-gen-plugin</artifactId>
51                         <version>${mdsal.model.version}</version>
52                         <type>jar</type>
53                     </dependency>
54                 </dependencies>
55             </plugin>
56         </plugins>
57     </build>
58
59     <dependencies>
60         <dependency>
61             <groupId>${project.groupId}</groupId>
62             <artifactId>openflowplugin-extension-api</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>${project.groupId}</groupId>
66             <artifactId>openflowjava-extension-nicira</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>${project.groupId}</groupId>
70             <artifactId>openflowjava-extension-nicira-api</artifactId>
71         </dependency>
72         <!-- MD-SAL models -->
73         <dependency>
74             <groupId>${project.groupId}.model</groupId>
75             <artifactId>model-flow-base</artifactId>
76         </dependency>
77         <dependency>
78             <groupId>${project.groupId}.model</groupId>
79             <artifactId>model-flow-service</artifactId>
80         </dependency>
81         <dependency>
82             <groupId>${project.groupId}.model</groupId>
83             <artifactId>model-flow-statistics</artifactId>
84         </dependency>
85         <dependency>
86             <groupId>org.opendaylight.controller.model</groupId>
87             <artifactId>model-inventory</artifactId>
88         </dependency>
89         <!-- OpenFlowJava-API models -->
90         <dependency>
91             <groupId>${project.groupId}.openflowjava</groupId>
92             <artifactId>openflow-protocol-api</artifactId>
93         </dependency>
94         <!-- Test dependencies -->
95         <dependency>
96             <groupId>junit</groupId>
97             <artifactId>junit</artifactId>
98             <scope>test</scope>
99         </dependency>
100         <dependency>
101             <groupId>org.mockito</groupId>
102             <artifactId>mockito-core</artifactId>
103             <scope>test</scope>
104         </dependency>
105         <dependency>
106             <groupId>org.slf4j</groupId>
107             <artifactId>slf4j-log4j12</artifactId>
108             <scope>test</scope>
109         </dependency>
110     </dependencies>
111
112 </project>