Bug 1947 - fixed IndexOutOfBounds exception on MultipartReplyMessage deserialization
[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.0.3-SNAPSHOT</version>
8         <relativePath>../</relativePath>
9     </parent>
10
11     <artifactId>openflowplugin</artifactId>
12     <packaging>bundle</packaging>
13
14     <properties>
15         <yangtools.version>0.6.2-SNAPSHOT</yangtools.version>
16         <yangtools.generator.version>0.6.2-SNAPSHOT</yangtools.generator.version>
17         <yangtools.binding.version>0.6.2-SNAPSHOT</yangtools.binding.version>
18         <jmxGeneratorPath>${project.build.directory}/generated-sources/config</jmxGeneratorPath>
19         <sal-binding-api.version>1.1-SNAPSHOT</sal-binding-api.version>
20         <sonar.jacoco.excludes>org.opendaylight.yang.gen.v1.urn.opendaylight.params.xml.ns.yang.openflow*/*java</sonar.jacoco.excludes>
21     </properties>
22
23     <build>
24         <plugins>
25             <plugin>
26                 <groupId>org.apache.felix</groupId>
27                 <artifactId>maven-bundle-plugin</artifactId>
28             </plugin>
29             <plugin>
30                 <groupId>org.opendaylight.yangtools</groupId>
31                 <artifactId>yang-maven-plugin</artifactId>
32                 <executions>
33                     <execution>
34                         <goals>
35                             <goal>generate-sources</goal>
36                         </goals>
37                         <configuration>
38                             <codeGenerators>
39                                 <generator>
40                                     <codeGeneratorClass>
41                                         org.opendaylight.controller.config.yangjmxgenerator.plugin.JMXGenerator
42                                     </codeGeneratorClass>
43                                     <outputBaseDir>${project.build.directory}/generated-sources/config</outputBaseDir>
44                                     <additionalConfiguration>
45                                         <namespaceToPackage1>
46                                             urn:opendaylight:params:xml:ns:yang:controller==org.opendaylight.controller.config.yang
47                                         </namespaceToPackage1>
48                                     </additionalConfiguration>
49                                 </generator>
50                                 <generator>
51                                     <codeGeneratorClass>
52                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
53                                     </codeGeneratorClass>
54                                     <outputBaseDir>${project.build.directory}/generated-sources/sal</outputBaseDir>
55                                 </generator>
56                                 <generator>
57                                     <codeGeneratorClass>org.opendaylight.yangtools.yang.unified.doc.generator.maven.DocumentationGeneratorImpl</codeGeneratorClass>
58                                     <outputBaseDir>${project.build.directory}/site/models</outputBaseDir>
59                                 </generator>
60                             </codeGenerators>
61                             <inspectDependencies>true</inspectDependencies>
62                         </configuration>
63                     </execution>
64                 </executions>
65                 <dependencies>
66                     <dependency>
67                         <groupId>org.opendaylight.controller</groupId>
68                         <artifactId>yang-jmx-generator-plugin</artifactId>
69                         <version>${config.parent.version}</version>
70                     </dependency>
71                     <dependency>
72                         <groupId>org.opendaylight.yangtools</groupId>
73                         <artifactId>maven-sal-api-gen-plugin</artifactId>
74                         <version>${yangtools.version}</version>
75                         <type>jar</type>
76                     </dependency>
77                 </dependencies>
78             </plugin>
79         </plugins>
80     </build>
81     <dependencies>
82         <dependency>
83             <groupId>org.opendaylight.openflowplugin</groupId>
84             <artifactId>openflowplugin-api</artifactId>
85             <version>${project.version}</version>
86         </dependency>
87         <dependency>
88             <groupId>org.opendaylight.openflowplugin</groupId>
89             <artifactId>openflowplugin-extension-api</artifactId>
90             <version>${project.version}</version>
91         </dependency>
92         <dependency>
93             <groupId>org.opendaylight.openflowplugin</groupId>
94             <artifactId>openflowjava-extension-nicira</artifactId>
95             <version>0.0.3-SNAPSHOT</version>
96             <scope>test</scope>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.controller</groupId>
100             <artifactId>liblldp</artifactId>
101         </dependency>
102         <dependency>
103             <groupId>org.opendaylight.controller.model</groupId>
104             <artifactId>model-flow-base</artifactId>
105         </dependency>
106         <dependency>
107             <groupId>org.opendaylight.controller.model</groupId>
108             <artifactId>model-flow-service</artifactId>
109         </dependency>
110         <dependency>
111             <groupId>org.opendaylight.controller.model</groupId>
112             <artifactId>model-flow-statistics</artifactId>
113         </dependency>
114         <dependency>
115             <groupId>org.opendaylight.controller.model</groupId>
116             <artifactId>model-inventory</artifactId>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.controller</groupId>
120             <artifactId>sal-binding-api</artifactId>
121         </dependency>
122         <dependency>
123             <groupId>org.opendaylight.controller</groupId>
124             <artifactId>sal-binding-broker-impl</artifactId>
125             <version>${sal-binding-api.version}</version>
126         </dependency>
127
128         <dependency>
129             <groupId>org.opendaylight.openflowjava</groupId>
130             <artifactId>openflow-protocol-api</artifactId>
131         </dependency>
132         <dependency>
133             <groupId>org.opendaylight.openflowjava</groupId>
134             <artifactId>openflow-protocol-spi</artifactId>
135         </dependency>
136         <dependency>
137             <groupId>org.opendaylight.openflowjava</groupId>
138             <artifactId>openflow-protocol-impl</artifactId>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.controller</groupId>
142             <artifactId>config-api</artifactId>
143         </dependency>
144
145         <dependency>
146             <groupId>com.google.guava</groupId>
147             <artifactId>guava</artifactId>
148         </dependency>
149         <dependency>
150             <groupId>org.apache.commons</groupId>
151             <artifactId>commons-lang3</artifactId>
152         </dependency>
153
154         <dependency>
155             <groupId>junit</groupId>
156             <artifactId>junit</artifactId>
157             <scope>test</scope>
158         </dependency>
159         <dependency>
160             <groupId>org.mockito</groupId>
161             <artifactId>mockito-all</artifactId>
162             <scope>test</scope>
163         </dependency>
164
165         <dependency>
166             <groupId>org.slf4j</groupId>
167             <artifactId>slf4j-log4j12</artifactId>
168         </dependency>
169         <dependency>
170             <groupId>org.opendaylight.controller</groupId>
171             <artifactId>sal-common-util</artifactId>
172         </dependency>
173         <dependency>
174             <groupId>org.opendaylight.openflowjava</groupId>
175             <artifactId>util</artifactId>
176         </dependency>
177
178     </dependencies>
179 </project>
180