Integrate OpenFlowJava into OpenFlowPlugin build
[openflowplugin.git] / openflowplugin / 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     <modelVersion>4.0.0</modelVersion>
4     <parent>
5         <groupId>org.opendaylight.openflowplugin</groupId>
6         <artifactId>openflowplugin-parent</artifactId>
7         <version>0.5.0-SNAPSHOT</version>
8         <relativePath>../parent</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin</artifactId>
12     <packaging>bundle</packaging>
13
14     <build>
15         <plugins>
16             <plugin>
17                 <groupId>org.apache.felix</groupId>
18                 <artifactId>maven-bundle-plugin</artifactId>
19             </plugin>
20             <plugin>
21                 <groupId>org.opendaylight.yangtools</groupId>
22                 <artifactId>yang-maven-plugin</artifactId>
23                 <executions>
24                     <execution>
25                         <goals>
26                             <goal>generate-sources</goal>
27                         </goals>
28                         <configuration>
29                             <codeGenerators>
30                                 <generator>
31                                     <codeGeneratorClass>
32                                         org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl
33                                     </codeGeneratorClass>
34                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
35                                 </generator>
36                                 <generator>
37                                     <codeGeneratorClass>org.opendaylight.mdsal.binding.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
38                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
39                                 </generator>
40                             </codeGenerators>
41                             <inspectDependencies>true</inspectDependencies>
42                         </configuration>
43                     </execution>
44                 </executions>
45                 <dependencies>
46                     <dependency>
47                         <groupId>org.opendaylight.controller</groupId>
48                         <artifactId>yang-jmx-generator-plugin</artifactId>
49                         <version>${config.version}</version>
50                     </dependency>
51                     <dependency>
52                         <groupId>org.opendaylight.mdsal</groupId>
53                         <artifactId>maven-sal-api-gen-plugin</artifactId>
54                         <version>${mdsal.model.version}</version>
55                         <type>jar</type>
56                     </dependency>
57                 </dependencies>
58             </plugin>
59         </plugins>
60     </build>
61     <dependencies>
62         <dependency>
63             <groupId>${project.groupId}</groupId>
64             <artifactId>openflowplugin-api</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>${project.groupId}</groupId>
68             <artifactId>openflowplugin-extension-api</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>${project.groupId}.model</groupId>
72             <artifactId>model-flow-base</artifactId>
73         </dependency>
74         <dependency>
75             <groupId>${project.groupId}.model</groupId>
76             <artifactId>model-flow-service</artifactId>
77         </dependency>
78         <dependency>
79             <groupId>${project.groupId}.model</groupId>
80             <artifactId>model-flow-statistics</artifactId>
81         </dependency>
82         <dependency>
83             <groupId>org.opendaylight.controller.model</groupId>
84             <artifactId>model-inventory</artifactId>
85         </dependency>
86         <dependency>
87             <groupId>org.opendaylight.controller</groupId>
88             <artifactId>sal-binding-api</artifactId>
89         </dependency>
90         <dependency>
91             <groupId>org.opendaylight.controller</groupId>
92             <artifactId>sal-binding-config</artifactId>
93         </dependency>
94         <dependency>
95             <groupId>org.opendaylight.controller</groupId>
96             <artifactId>sal-binding-broker-impl</artifactId>
97         </dependency>
98
99         <dependency>
100             <groupId>${project.groupId}.openflowjava</groupId>
101             <artifactId>openflow-protocol-api</artifactId>
102         </dependency>
103         <dependency>
104             <groupId>${project.groupId}.openflowjava</groupId>
105             <artifactId>openflow-protocol-spi</artifactId>
106         </dependency>
107         <dependency>
108             <groupId>org.opendaylight.controller</groupId>
109             <artifactId>config-api</artifactId>
110         </dependency>
111
112         <dependency>
113             <groupId>com.google.guava</groupId>
114             <artifactId>guava</artifactId>
115         </dependency>
116         <dependency>
117             <groupId>org.apache.commons</groupId>
118             <artifactId>commons-lang3</artifactId>
119         </dependency>
120
121         <dependency>
122             <groupId>junit</groupId>
123             <artifactId>junit</artifactId>
124             <scope>test</scope>
125         </dependency>
126         <dependency>
127             <groupId>org.mockito</groupId>
128             <artifactId>mockito-core</artifactId>
129             <scope>test</scope>
130         </dependency>
131
132         <dependency>
133             <groupId>org.slf4j</groupId>
134             <artifactId>slf4j-log4j12</artifactId>
135             <scope>test</scope>
136         </dependency>
137         <dependency>
138             <groupId>org.opendaylight.controller</groupId>
139             <artifactId>sal-common-util</artifactId>
140         </dependency>
141         <dependency>
142             <groupId>org.opendaylight.controller</groupId>
143             <artifactId>sal-common-api</artifactId>
144         </dependency>
145         <dependency>
146             <groupId>${project.groupId}.openflowjava</groupId>
147             <artifactId>openflowjava-util</artifactId>
148         </dependency>
149
150     </dependencies>
151 </project>
152