Merge "Remove CSS artifact remnants"
[openflowplugin.git] / extension / test-extension / pom.xml
1 <?xml version="1.0"?>
2 <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
3     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
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   <artifactId>test-extension</artifactId>
12
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>org.opendaylight.openflowplugin</groupId>
62             <artifactId>openflowplugin-extension-nicira</artifactId>
63         </dependency>
64         <dependency>
65             <groupId>org.opendaylight.openflowplugin</groupId>
66             <artifactId>openflowplugin-extension-api</artifactId>
67         </dependency>
68         <dependency>
69             <groupId>org.opendaylight.openflowplugin</groupId>
70             <artifactId>openflowjava-extension-nicira</artifactId>
71         </dependency>
72         <dependency>
73             <!-- configSubsystem yang should be moved to API and this would be doomed for removal -->
74             <groupId>org.opendaylight.openflowplugin</groupId>
75             <artifactId>openflowplugin</artifactId>
76         </dependency>
77
78         <!-- MD-SAL models -->
79         <dependency>
80             <groupId>org.opendaylight.openflowplugin.model</groupId>
81             <artifactId>model-flow-base</artifactId>
82         </dependency>
83         <dependency>
84             <groupId>org.opendaylight.openflowplugin.model</groupId>
85             <artifactId>model-flow-service</artifactId>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.openflowplugin.model</groupId>
89             <artifactId>model-flow-statistics</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.opendaylight.controller.model</groupId>
93             <artifactId>model-inventory</artifactId>
94         </dependency>
95
96         <!-- OpenFlowJava-API models -->
97         <dependency>
98             <groupId>${project.groupId}.openflowjava</groupId>
99             <artifactId>openflow-protocol-api</artifactId>
100         </dependency>
101     </dependencies>
102
103
104 </project>