BUG 956 - thread problem
[openflowplugin.git] / 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.odlparent</groupId>
6         <artifactId>odlparent</artifactId>
7         <version>1.4.2-SNAPSHOT</version>
8         <relativePath></relativePath>
9     </parent>
10     <prerequisites>
11         <maven>3.0</maven>
12     </prerequisites>
13     <groupId>org.opendaylight.openflowplugin</groupId>
14     <artifactId>openflowplugin-parent</artifactId>
15     <version>0.0.3-SNAPSHOT</version>
16     <packaging>pom</packaging>
17
18     <scm>
19       <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
20       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
21       <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
22       <tag>HEAD</tag>
23     </scm>
24
25     <distributionManagement>
26       <!-- OpenDayLight Released artifact -->
27       <repository>
28         <id>opendaylight-release</id>
29         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release</url>
30       </repository>
31       <!-- OpenDayLight Snapshot artifact -->
32       <snapshotRepository>
33         <id>opendaylight-snapshot</id>
34         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot</url>
35       </snapshotRepository>
36       <!-- Site deployment -->
37       <!-- site>
38            <id>website</id>
39            <url>${sitedeploy}</url>
40            </site -->
41     </distributionManagement>
42
43     <properties>
44       <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
45       <mdsal.version>1.1-SNAPSHOT</mdsal.version>
46       <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
47       <openflowjava.version>0.5-SNAPSHOT</openflowjava.version>
48       <controller.model.version>1.1-SNAPSHOT</controller.model.version>
49       <sal.api.version>0.8.1-SNAPSHOT</sal.api.version>
50       <sal.connection.api.version>0.1.2-SNAPSHOT</sal.connection.api.version>
51       <netconf.parent.version>0.2.5-SNAPSHOT</netconf.parent.version>
52       <config.parent.version>0.2.5-SNAPSHOT</config.parent.version>
53       <build.helper.version>1.8</build.helper.version>
54       <xtend.dstdir>src/main/xtend-gen</xtend.dstdir>
55       <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
56       <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
57       <exi.nagasena.version>0000.0002.0038.0</exi.nagasena.version>
58         <controller.distribution.version>0.1.2-SNAPSHOT</controller.distribution.version>
59     </properties>
60
61     <dependencyManagement>
62       <dependencies>
63         <dependency>
64           <groupId>org.opendaylight.openflowjava</groupId>
65           <artifactId>openflow-protocol-impl</artifactId>
66           <version>${openflowjava.version}</version>
67         </dependency>
68         <dependency>
69           <groupId>org.opendaylight.openflowjava</groupId>
70           <artifactId>openflow-protocol-api</artifactId>
71           <version>${openflowjava.version}</version>
72         </dependency>
73         <dependency>
74           <groupId>org.opendaylight.openflowjava</groupId>
75           <artifactId>openflow-protocol-spi</artifactId>
76           <version>${openflowjava.version}</version>
77         </dependency>
78         <dependency>
79           <groupId>org.opendaylight.openflowjava</groupId>
80           <artifactId>util</artifactId>
81           <version>${openflowjava.version}</version>
82         </dependency>
83         <dependency>
84           <groupId>org.opendaylight.openflowjava</groupId>
85           <artifactId>simple-client</artifactId>
86           <version>${openflowjava.version}</version>
87         </dependency>
88         <dependency>
89           <groupId>org.opendaylight.controller.model</groupId>
90           <artifactId>model-flow-base</artifactId>
91           <version>${controller.model.version}</version>
92         </dependency>
93         <dependency>
94           <groupId>org.opendaylight.controller.model</groupId>
95           <artifactId>model-flow-management</artifactId>
96           <version>${controller.model.version}</version>
97         </dependency>
98         <dependency>
99           <groupId>org.opendaylight.controller.model</groupId>
100           <artifactId>model-flow-service</artifactId>
101           <version>${controller.model.version}</version>
102         </dependency>
103         <dependency>
104           <groupId>org.opendaylight.controller.model</groupId>
105           <artifactId>model-flow-statistics</artifactId>
106           <version>${controller.model.version}</version>
107         </dependency>
108         <dependency>
109           <groupId>org.opendaylight.controller.model</groupId>
110           <artifactId>model-inventory</artifactId>
111           <version>${controller.model.version}</version>
112         </dependency>
113         <dependency>
114           <groupId>org.opendaylight.controller</groupId>
115           <artifactId>sal-binding-api</artifactId>
116           <version>${controller.model.version}</version>
117         </dependency>
118         <dependency>
119             <groupId>org.opendaylight.controller</groupId>
120             <artifactId>sal</artifactId>
121             <version>${sal.api.version}</version>
122         </dependency>
123         <dependency>
124             <groupId>org.opendaylight.controller</groupId>
125             <artifactId>sal.connection</artifactId>
126             <version>${sal.connection.api.version}</version>
127         </dependency>
128         <dependency>
129             <groupId>org.opendaylight.controller</groupId>
130             <artifactId>sal-common-util</artifactId>
131             <version>${controller.model.version}</version>
132         </dependency>
133
134         <!-- IT -->
135         <dependency>
136             <groupId>org.opendaylight.controller</groupId>
137             <artifactId>config-netconf-connector</artifactId>
138             <version>${netconf.parent.version}</version>
139         </dependency>
140         <dependency>
141             <groupId>org.opendaylight.controller</groupId>
142             <artifactId>sal-binding-it</artifactId>
143             <version>${controller.model.version}</version>
144         </dependency>
145         <dependency>
146             <groupId>org.opendaylight.controller</groupId>
147             <artifactId>sal-binding-broker-impl</artifactId>
148             <version>${controller.model.version}</version>
149         </dependency>
150         <dependency>
151             <groupId>org.opendaylight.controller</groupId>
152             <artifactId>config-manager</artifactId>
153             <version>${config.parent.version}</version>
154         </dependency>
155           <dependency>
156               <groupId>org.opendaylight.controller</groupId>
157               <artifactId>config-api</artifactId>
158               <version>${config.parent.version}</version>
159           </dependency>
160         <dependency>
161             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
162             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
163             <version>4.0</version>
164         </dependency>
165         <dependency>
166           <groupId>org.opendaylight.controller</groupId>
167           <artifactId>logback-config</artifactId>
168           <version>${config.parent.version}</version>
169         </dependency>
170         <dependency>
171           <groupId>org.opendaylight.controller</groupId>
172           <artifactId>config-persister-api</artifactId>
173           <version>${config.parent.version}</version>
174         </dependency>
175         <dependency>
176           <groupId>org.opendaylight.controller</groupId>
177           <artifactId>config-persister-impl</artifactId>
178           <version>${config.parent.version}</version>
179         </dependency>
180         <dependency>
181           <groupId>org.opendaylight.controller</groupId>
182           <artifactId>config-persister-file-xml-adapter</artifactId>
183           <version>${config.parent.version}</version>
184         </dependency>
185         <dependency>
186           <groupId>org.opendaylight.controller</groupId>
187           <artifactId>netconf-monitoring</artifactId>
188           <version>${netconf.parent.version}</version>
189         </dependency>
190         <dependency>
191           <groupId>org.opendaylight.controller</groupId>
192           <artifactId>netconf-client</artifactId>
193           <version>${netconf.parent.version}</version>
194         </dependency>
195         <dependency>
196           <groupId>org.opendaylight.controller</groupId>
197           <artifactId>netconf-impl</artifactId>
198           <version>${netconf.parent.version}</version>
199         </dependency>
200
201         <!-- thirdparty -->
202         <dependency>
203           <groupId>org.openexi</groupId>
204           <artifactId>nagasena</artifactId>
205           <version>${exi.nagasena.version}</version>
206         </dependency>
207         <dependency>
208           <groupId>org.openexi</groupId>
209           <artifactId>nagasena-rta</artifactId>
210           <version>${exi.nagasena.version}</version>
211         </dependency>
212         <dependency>
213           <groupId>org.opendaylight.controller.thirdparty</groupId>
214           <artifactId>ganymed</artifactId>
215           <version>1.1-SNAPSHOT</version>
216         </dependency>
217         <dependency>
218             <groupId>xml-apis</groupId>
219             <artifactId>xml-apis</artifactId>
220             <version>1.4.01</version>
221         </dependency>
222         <dependency>
223             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
224             <artifactId>xtend-lib-osgi</artifactId>
225             <version>2.4.3</version>
226             <scope>test</scope>
227         </dependency>
228       </dependencies>
229     </dependencyManagement>
230
231     <build>
232         <plugins>
233           <plugin>
234              <groupId>org.codehaus.mojo</groupId>
235              <artifactId>build-helper-maven-plugin</artifactId>
236           </plugin>
237         </plugins>
238         <pluginManagement>
239           <plugins>
240             <plugin>
241               <groupId>org.apache.maven.plugins</groupId>
242               <artifactId>maven-compiler-plugin</artifactId>
243               <configuration>
244                 <source>1.7</source>
245                 <target>1.7</target>
246               </configuration>
247             </plugin>
248             <plugin>
249               <groupId>org.ops4j.pax.exam</groupId>
250               <artifactId>maven-paxexam-plugin</artifactId>
251               <version>1.2.4</version>
252             </plugin>
253             <plugin>
254               <groupId>org.eclipse.xtend</groupId>
255               <artifactId>xtend-maven-plugin</artifactId>
256               <version>${xtend.version}</version>
257               <executions>
258                   <execution>
259                       <goals>
260                           <goal>compile</goal>
261                       </goals>
262                       <configuration>
263                           <outputDirectory>${xtend.dstdir}</outputDirectory>
264                       </configuration>
265                   </execution>
266               </executions>
267           </plugin>
268           <plugin>
269               <artifactId>maven-clean-plugin</artifactId>
270               <configuration>
271                   <filesets>
272                       <fileset>
273                           <directory>${xtend.dstdir}</directory>
274                           <includes>
275                               <include>**</include>
276                           </includes>
277                       </fileset>
278                       <fileset>
279                           <directory>${jmxGeneratorPath}</directory>
280                           <includes>
281                               <include>**</include>
282                           </includes>
283                       </fileset>
284                       <fileset>
285                           <directory>${salGeneratorPath}</directory>
286                           <includes>
287                               <include>**</include>
288                           </includes>
289                       </fileset>
290                   </filesets>
291               </configuration>
292             </plugin>
293           <plugin>
294              <groupId>org.codehaus.mojo</groupId>
295              <artifactId>build-helper-maven-plugin</artifactId>
296              <version>${build.helper.version}</version>
297              <executions>
298                 <execution>
299                    <id>add-source</id>
300                    <phase>generate-sources</phase>
301                    <goals>
302                       <goal>add-source</goal>
303                    </goals>
304                    <configuration>
305                       <sources>
306                          <source>${jmxGeneratorPath}</source>
307                          <source>${salGeneratorPath}</source>
308                          <source>${xtend.dstdir}</source>
309                       </sources>
310                    </configuration>
311                 </execution>
312              </executions>
313             </plugin>
314             <plugin>
315               <groupId>org.opendaylight.yangtools</groupId>
316               <artifactId>yang-maven-plugin</artifactId>
317               <version>0.6.2-SNAPSHOT</version>
318             </plugin>
319             <plugin>
320               <groupId>org.apache.felix</groupId>
321               <artifactId>maven-bundle-plugin</artifactId>
322               <version>${maven.bundle.version}</version>
323               <extensions>true</extensions>
324               <configuration>
325                 <instructions>
326                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
327                 </instructions>
328                 <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
329               </configuration>
330             </plugin>
331             <!-- Ignore/Execute plugin execution -->
332             <plugin>
333               <groupId>org.eclipse.m2e</groupId>
334               <artifactId>lifecycle-mapping</artifactId>
335               <version>1.0.0</version>
336               <configuration>
337                 <lifecycleMappingMetadata>
338                   <pluginExecutions>
339                     <pluginExecution>
340                       <pluginExecutionFilter>
341                         <groupId>org.codehaus.mojo</groupId>
342                         <artifactId>properties-maven-plugin</artifactId>
343                         <versionRange>[0.0,)</versionRange>
344                         <goals>
345                           <goal>set-system-properties</goal>
346                         </goals>
347                       </pluginExecutionFilter>
348                       <action>
349                         <ignore></ignore>
350                       </action>
351                     </pluginExecution>
352                     <pluginExecution>
353                       <pluginExecutionFilter>
354                         <groupId>org.codehaus.enunciate</groupId>
355                         <artifactId>maven-enunciate-plugin</artifactId>
356                         <versionRange>[0.0,)</versionRange>
357                         <goals>
358                           <goal>docs</goal>
359                         </goals>
360                       </pluginExecutionFilter>
361                       <action>
362                         <ignore></ignore>
363                       </action>
364                     </pluginExecution>
365                     <pluginExecution>
366                       <pluginExecutionFilter>
367                         <groupId>org.jacoco</groupId>
368                         <artifactId>jacoco-maven-plugin</artifactId>
369                         <versionRange>[0.0,)</versionRange>
370                         <goals>
371                           <goal>prepare-agent</goal>
372                           <goal>pre-test</goal>
373                           <goal>post-test</goal>
374                         </goals>
375                       </pluginExecutionFilter>
376                       <action>
377                         <ignore></ignore>
378                       </action>
379                     </pluginExecution>
380                     <pluginExecution>
381                       <pluginExecutionFilter>
382                         <groupId>org.ops4j.pax.exam</groupId>
383                         <artifactId>maven-paxexam-plugin</artifactId>
384                         <versionRange>[1.2.4,)</versionRange>
385                         <goals>
386                           <goal>generate-depends-file</goal>
387                         </goals>
388                       </pluginExecutionFilter>
389                       <action>
390                         <execute>
391                           <runOnIncremental>false</runOnIncremental>
392                         </execute>
393                       </action>
394                     </pluginExecution>
395                     <pluginExecution>
396                       <pluginExecutionFilter>
397                         <groupId>org.apache.maven.plugins</groupId>
398                         <artifactId>maven-checkstyle-plugin</artifactId>
399                         <versionRange>[2.0,)</versionRange>
400                         <goals>
401                           <goal>check</goal>
402                         </goals>
403                       </pluginExecutionFilter>
404                       <action>
405                         <ignore></ignore>
406                       </action>
407                     </pluginExecution>
408                     <pluginExecution>
409                       <pluginExecutionFilter>
410                         <groupId>org.opendaylight.yangtools</groupId>
411                         <artifactId>yang-maven-plugin</artifactId>
412                         <versionRange>[0.5,)</versionRange>
413                         <goals>
414                           <goal>generate-sources</goal>
415                         </goals>
416                       </pluginExecutionFilter>
417                       <action>
418                         <execute></execute>
419                       </action>
420                     </pluginExecution>
421                     <pluginExecution>
422                       <pluginExecutionFilter>
423                         <groupId>org.codehaus.groovy.maven</groupId>
424                         <artifactId>gmaven-plugin</artifactId>
425                         <versionRange>1.0</versionRange>
426                         <goals>
427                           <goal>execute</goal>
428                         </goals>
429                       </pluginExecutionFilter>
430                       <action>
431                         <ignore></ignore>
432                       </action>
433                     </pluginExecution>
434                     <pluginExecution>
435                       <pluginExecutionFilter>
436                         <groupId>org.apache.maven.plugins</groupId>
437                         <artifactId>maven-enforcer-plugin</artifactId>
438                         <versionRange>${enforcer.version}</versionRange>
439                         <goals>
440                           <goal>enforce</goal>
441                         </goals>
442                       </pluginExecutionFilter>
443                       <action>
444                         <ignore></ignore>
445                       </action>
446                     </pluginExecution>
447                   </pluginExecutions>
448                 </lifecycleMappingMetadata>
449               </configuration>
450             </plugin>
451           </plugins>
452         </pluginManagement>
453     </build>
454
455     <profiles>
456       <profile>
457         <id>findbugsReport</id>
458         <reporting>
459           <plugins>
460             <plugin>
461               <groupId>org.apache.maven.plugins</groupId>
462               <artifactId>maven-project-info-reports-plugin</artifactId>
463               <version>2.7</version>
464               <configuration>
465                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
466                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
467               </configuration>
468               <reportSets>
469                 <reportSet>
470                   <reports>
471                     <report>index</report>
472                     <report>project-team</report>
473                     <report>license</report>
474                     <report>mailing-list</report>
475                     <report>plugin-management</report>
476                     <report>cim</report>
477                     <report>issue-tracking</report>
478                     <report>scm</report>
479                     <report>summary</report>
480                   </reports>
481                 </reportSet>
482               </reportSets>
483             </plugin>
484             <plugin>
485               <groupId>org.codehaus.mojo</groupId>
486               <artifactId>findbugs-maven-plugin</artifactId>
487               <version>2.5.2</version>
488             </plugin>
489             <plugin>
490               <groupId>org.apache.maven.plugins</groupId>
491               <artifactId>maven-pmd-plugin</artifactId>
492               <version>3.0.1</version>
493             </plugin>
494             <plugin>
495               <groupId>org.apache.maven.plugins</groupId>
496               <artifactId>maven-jxr-plugin</artifactId>
497               <version>2.3</version>
498             </plugin>
499           </plugins>
500         </reporting>
501       </profile>
502     </profiles>
503
504     <repositories>
505       <repository>
506         <id>opendaylight-snapshot</id>
507         <name>opendaylight-snapshot</name>
508         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot</url>
509         <releases>
510           <enabled>false</enabled>
511         </releases>
512       </repository>
513       <repository>
514         <id>public</id>
515         <name>public</name>
516         <url>http://nexus.opendaylight.org/content/groups/public</url>
517         <snapshots>
518           <enabled>false</enabled>
519         </snapshots>
520       </repository>
521
522     </repositories>
523
524     <pluginRepositories>
525       <pluginRepository>
526         <id>opendaylight-central</id>
527         <name>opendaylight-central</name>
528         <url>http://nexus.opendaylight.org/content/repositories/public</url>
529         <snapshots>
530           <enabled>false</enabled>
531         </snapshots>
532       </pluginRepository>
533       <pluginRepository>
534         <id>opendaylight-snapshot</id>
535         <name>central2</name>
536         <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot</url>
537         <releases>
538           <enabled>false</enabled>
539         </releases>
540       </pluginRepository>
541     </pluginRepositories>
542
543     <modules>
544       <module>openflowplugin-api</module>
545       <module>openflowplugin</module>
546       <module>distribution/base</module>
547       <module>distribution/cbench</module>            
548       <module>openflowplugin-controller-config</module>
549       <module>openflowplugin-it</module>
550       <module>test-provider</module>
551       <module>drop-test</module>
552       <module>features</module>
553       <module>samples/sample-consumer</module>
554       <module>samples/learning-switch</module>
555     </modules>
556 </project>