Remove CSS artifact remnants
[openflowplugin.git] / extension / openflowplugin-extension-api / 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"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4
5     <modelVersion>4.0.0</modelVersion>
6     <parent>
7         <groupId>org.opendaylight.openflowplugin</groupId>
8         <artifactId>openflowplugin-extension-parent</artifactId>
9         <version>0.6.0-SNAPSHOT</version>
10         <relativePath>../</relativePath>
11     </parent>
12
13     <artifactId>openflowplugin-extension-api</artifactId>
14     <packaging>bundle</packaging>
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.yangtools</groupId>
62             <artifactId>yang-model-api</artifactId>
63         </dependency>
64
65         <!-- OpenFlowJava-API models -->
66         <dependency>
67             <groupId>${project.groupId}.openflowjava</groupId>
68             <artifactId>openflow-protocol-api</artifactId>
69         </dependency>
70
71         <!-- MD-SAL models -->
72         <dependency>
73             <groupId>org.opendaylight.openflowplugin.model</groupId>
74             <artifactId>model-flow-base</artifactId>
75         </dependency>
76         <dependency>
77             <groupId>org.opendaylight.openflowplugin.model</groupId>
78             <artifactId>model-flow-service</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.opendaylight.openflowplugin.model</groupId>
82             <artifactId>model-flow-statistics</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>org.opendaylight.controller.model</groupId>
86             <artifactId>model-inventory</artifactId>
87         </dependency>
88
89         <!-- junit -->
90         <dependency>
91             <groupId>junit</groupId>
92             <artifactId>junit</artifactId>
93             <scope>test</scope>
94         </dependency>
95
96     </dependencies>
97
98 </project>