Re-enable running of SingleFeaturesTest
[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.5.0-SNAPSHOT</version>
8         <relativePath/>
9     </parent>
10     <prerequisites>
11         <maven>3.0</maven>
12     </prerequisites>
13
14     <groupId>org.opendaylight.openflowplugin</groupId>
15     <artifactId>openflowplugin-parent</artifactId>
16     <version>0.1.0-SNAPSHOT</version>
17     <name>openflowplugin</name> <!-- Used by Sonar to set project name -->
18     <packaging>pom</packaging>
19
20     <scm>
21       <connection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</connection>
22       <developerConnection>scm:git:ssh://git.opendaylight.org:29418/openflowplugin.git</developerConnection>
23       <url>https://wiki.opendaylight.org/view/OpenDaylight_OpenFlow_Plugin:Main</url>
24       <tag>HEAD</tag>
25     </scm>
26
27     <distributionManagement>
28       <!-- OpenDayLight Released artifact -->
29       <repository>
30         <id>opendaylight-release</id>
31         <url>${nexusproxy}/repositories/opendaylight.release</url>
32       </repository>
33       <!-- OpenDayLight Snapshot artifact -->
34       <snapshotRepository>
35         <id>opendaylight-snapshot</id>
36         <url>${nexusproxy}/repositories/opendaylight.snapshot</url>
37       </snapshotRepository>
38       <!-- Site deployment -->
39       <!-- site>
40            <id>website</id>
41            <url>${sitedeploy}</url>
42            </site -->
43     </distributionManagement>
44
45     <properties>
46       <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
47       <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
48       <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
49       <openflowjava.version>0.6.0-SNAPSHOT</openflowjava.version>
50       <controller.model.version>1.2.0-SNAPSHOT</controller.model.version>
51       <sal.api.version>0.9.0-SNAPSHOT</sal.api.version>
52       <sal.connection.api.version>0.2.0-SNAPSHOT</sal.connection.api.version>
53       <sal.common.util.version>1.2.0-SNAPSHOT</sal.common.util.version>
54       <netconf.parent.version>0.3.0-SNAPSHOT</netconf.parent.version>
55       <config.parent.version>0.3.0-SNAPSHOT</config.parent.version>
56       <build.helper.version>1.8</build.helper.version>
57       <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
58       <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
59       <exi.nagasena.version>0000.0002.0038.0</exi.nagasena.version>
60       <controller.distribution.version>0.2.0-SNAPSHOT</controller.distribution.version>
61       <features.test.version>1.5.0-SNAPSHOT</features.test.version>
62
63       <!-- Sonar config -->
64       <sonar-jacoco-listeners.version>2.4</sonar-jacoco-listeners.version>
65       <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
66       <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
67       <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
68       <sonar.profile>Sonar way with Findbugs</sonar.profile>
69
70       <karaf.distro.empty.version>1.5.0-SNAPSHOT</karaf.distro.empty.version>
71       <yang.binding.version>0.7.0-SNAPSHOT</yang.binding.version>
72       <dlux.version>0.2.0-SNAPSHOT</dlux.version>
73       <config.version>0.3.0-SNAPSHOT</config.version>
74       <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
75       <opendaylight-l2-types.version>2013.08.27.7-SNAPSHOT</opendaylight-l2-types.version>
76       <ietf-yang-types.version>2010.09.24.7-SNAPSHOT</ietf-yang-types.version>
77       <ietf-inet-types.version>2010.09.24.7-SNAPSHOT</ietf-inet-types.version>
78       <yang-ext.version>2013.09.07.7-SNAPSHOT</yang-ext.version>
79     </properties>
80
81     <dependencyManagement>
82       <dependencies>
83          <dependency>
84             <groupId>org.opendaylight.yangtools</groupId>
85             <artifactId>yang-binding</artifactId>
86             <version>${yang.binding.version}</version>
87         </dependency>
88         <dependency>
89             <groupId>org.opendaylight.yangtools</groupId>
90             <artifactId>yang-common</artifactId>
91             <version>${yang.binding.version}</version>
92         </dependency>
93         <dependency>
94             <groupId>org.opendaylight.yangtools.model</groupId>
95             <artifactId>ietf-inet-types</artifactId>
96             <version>${ietf-inet-types.version}</version>
97         </dependency>
98         <dependency>
99             <groupId>org.opendaylight.yangtools.model</groupId>
100             <artifactId>ietf-yang-types</artifactId>
101             <version>${ietf-yang-types.version}</version>
102         </dependency>
103         <dependency>
104             <groupId>org.opendaylight.yangtools.model</groupId>
105             <artifactId>yang-ext</artifactId>
106             <version>${yang-ext.version}</version>
107         </dependency>
108         <dependency>
109             <groupId>org.opendaylight.yangtools.model</groupId>
110             <artifactId>opendaylight-l2-types</artifactId>
111             <version>${opendaylight-l2-types.version}</version>
112         </dependency>
113
114           <dependency>
115               <groupId>org.opendaylight.openflowplugin</groupId>
116               <artifactId>openflowplugin-api</artifactId>
117               <version>${project.version}</version>
118           </dependency>
119         <dependency>
120           <groupId>org.opendaylight.openflowjava</groupId>
121           <artifactId>openflow-protocol-impl</artifactId>
122           <version>${openflowjava.version}</version>
123         </dependency>
124         <dependency>
125           <groupId>org.opendaylight.openflowjava</groupId>
126           <artifactId>openflow-protocol-api</artifactId>
127           <version>${openflowjava.version}</version>
128         </dependency>
129         <dependency>
130           <groupId>org.opendaylight.openflowjava</groupId>
131           <artifactId>openflow-protocol-spi</artifactId>
132           <version>${openflowjava.version}</version>
133         </dependency>
134         <dependency>
135           <groupId>org.opendaylight.openflowjava</groupId>
136           <artifactId>util</artifactId>
137           <version>${openflowjava.version}</version>
138         </dependency>
139         <dependency>
140           <groupId>org.opendaylight.openflowjava</groupId>
141           <artifactId>simple-client</artifactId>
142           <version>${openflowjava.version}</version>
143         </dependency>
144         <dependency>
145           <groupId>org.opendaylight.controller.model</groupId>
146           <artifactId>model-flow-base</artifactId>
147           <version>${controller.model.version}</version>
148         </dependency>
149         <dependency>
150           <groupId>org.opendaylight.controller.model</groupId>
151           <artifactId>model-flow-service</artifactId>
152           <version>${controller.model.version}</version>
153         </dependency>
154         <dependency>
155           <groupId>org.opendaylight.controller.model</groupId>
156           <artifactId>model-flow-statistics</artifactId>
157           <version>${controller.model.version}</version>
158         </dependency>
159         <dependency>
160           <groupId>org.opendaylight.controller.model</groupId>
161           <artifactId>model-inventory</artifactId>
162           <version>${controller.model.version}</version>
163         </dependency>
164         <dependency>
165           <groupId>org.opendaylight.controller.model</groupId>
166           <artifactId>model-topology</artifactId>
167           <version>${controller.model.version}</version>
168         </dependency>
169
170         <dependency>
171           <groupId>org.opendaylight.controller</groupId>
172           <artifactId>sal-binding-api</artifactId>
173           <version>${controller.model.version}</version>
174         </dependency>
175         <dependency>
176           <groupId>org.opendaylight.controller</groupId>
177           <artifactId>sal-binding-config</artifactId>
178           <version>${controller.model.version}</version>
179         </dependency>
180         <dependency>
181           <groupId>org.opendaylight.controller</groupId>
182           <artifactId>sal-binding-util</artifactId>
183           <version>${controller.model.version}</version>
184         </dependency>
185
186         <dependency>
187             <groupId>org.opendaylight.controller</groupId>
188             <artifactId>liblldp</artifactId>
189             <version>${sal.api.version}</version>
190         </dependency>
191         <dependency>
192             <groupId>org.opendaylight.controller</groupId>
193             <artifactId>sal-common-util</artifactId>
194             <version>${controller.model.version}</version>
195         </dependency>
196         <!-- IT -->
197         <dependency>
198             <groupId>org.opendaylight.controller</groupId>
199             <artifactId>sal-common-util</artifactId>
200             <version>${sal.common.util.version}</version>
201         </dependency>
202         <dependency>
203             <groupId>org.opendaylight.controller</groupId>
204             <artifactId>config-netconf-connector</artifactId>
205             <version>${netconf.parent.version}</version>
206         </dependency>
207         <dependency>
208             <groupId>org.opendaylight.controller</groupId>
209             <artifactId>sal-binding-it</artifactId>
210             <version>${controller.model.version}</version>
211         </dependency>
212         <dependency>
213             <groupId>org.opendaylight.controller</groupId>
214             <artifactId>sal-binding-broker-impl</artifactId>
215             <version>${controller.model.version}</version>
216         </dependency>
217         <dependency>
218             <groupId>org.opendaylight.controller</groupId>
219             <artifactId>config-manager</artifactId>
220             <version>${config.parent.version}</version>
221         </dependency>
222           <dependency>
223               <groupId>org.opendaylight.controller</groupId>
224               <artifactId>config-api</artifactId>
225               <version>${config.parent.version}</version>
226           </dependency>
227         <dependency>
228             <groupId>org.opendaylight.yangtools.thirdparty</groupId>
229             <artifactId>antlr4-runtime-osgi-nohead</artifactId>
230             <version>4.0</version>
231         </dependency>
232         <dependency>
233           <groupId>org.opendaylight.controller</groupId>
234           <artifactId>logback-config</artifactId>
235           <version>${config.parent.version}</version>
236         </dependency>
237         <dependency>
238           <groupId>org.opendaylight.controller</groupId>
239           <artifactId>config-persister-api</artifactId>
240           <version>${config.parent.version}</version>
241         </dependency>
242         <dependency>
243           <groupId>org.opendaylight.controller</groupId>
244           <artifactId>config-persister-impl</artifactId>
245           <version>${config.parent.version}</version>
246         </dependency>
247         <dependency>
248           <groupId>org.opendaylight.controller</groupId>
249           <artifactId>config-persister-file-xml-adapter</artifactId>
250           <version>${config.parent.version}</version>
251         </dependency>
252         <dependency>
253           <groupId>org.opendaylight.controller</groupId>
254           <artifactId>netconf-monitoring</artifactId>
255           <version>${netconf.parent.version}</version>
256         </dependency>
257         <dependency>
258           <groupId>org.opendaylight.controller</groupId>
259           <artifactId>netconf-client</artifactId>
260           <version>${netconf.parent.version}</version>
261         </dependency>
262         <dependency>
263           <groupId>org.opendaylight.controller</groupId>
264           <artifactId>netconf-impl</artifactId>
265           <version>${netconf.parent.version}</version>
266         </dependency>
267
268         <dependency>
269           <groupId>org.opendaylight.odlparent</groupId>
270           <artifactId>features-test</artifactId>
271           <version>${features.test.version}</version>
272         </dependency>
273
274         <!-- thirdparty -->
275         <dependency>
276           <groupId>org.openexi</groupId>
277           <artifactId>nagasena</artifactId>
278           <version>${exi.nagasena.version}</version>
279         </dependency>
280         <dependency>
281           <groupId>org.openexi</groupId>
282           <artifactId>nagasena-rta</artifactId>
283           <version>${exi.nagasena.version}</version>
284         </dependency>
285         <dependency>
286             <groupId>xml-apis</groupId>
287             <artifactId>xml-apis</artifactId>
288             <version>1.4.01</version>
289         </dependency>
290       </dependencies>
291     </dependencyManagement>
292
293     <dependencies>
294         <!-- Sonar -->
295         <dependency>
296             <groupId>org.codehaus.sonar-plugins.java</groupId>
297             <artifactId>sonar-jacoco-listeners</artifactId>
298             <version>${sonar-jacoco-listeners.version}</version>
299             <scope>test</scope>
300         </dependency>
301     </dependencies>
302
303     <build>
304         <plugins>
305             <plugin>
306                  <groupId>org.codehaus.mojo</groupId>
307                  <artifactId>build-helper-maven-plugin</artifactId>
308             </plugin>
309             <plugin>
310                 <groupId>org.jacoco</groupId>
311                 <artifactId>jacoco-maven-plugin</artifactId>
312                 <executions>
313                     <execution>
314                         <id>prepare-ut-agent</id>
315                         <phase>process-test-classes</phase>
316                         <goals>
317                             <goal>prepare-agent</goal>
318                         </goals>
319                         <configuration>
320                             <destFile>${sonar.jacoco.reportPath}</destFile>
321                             <propertyName>jacoco.agent.ut.arg</propertyName>
322                         </configuration>
323                     </execution>
324                     <execution>
325                         <id>prepare-it-agent</id>
326                         <phase>pre-integration-test</phase>
327                         <goals>
328                             <goal>prepare-agent</goal>
329                         </goals>
330                         <configuration>
331                             <destFile>${sonar.jacoco.itReportPath}</destFile>
332                             <propertyName>jacoco.agent.it.arg</propertyName>
333                         </configuration>
334                     </execution>
335                 </executions>
336
337                 <configuration>
338                   <includes>
339                     <include>org.opendaylight.openflowplugin.*</include>
340                   </includes>
341                 </configuration>
342
343             </plugin>
344         </plugins>
345
346         <pluginManagement>
347           <plugins>
348             <plugin>
349               <groupId>org.apache.maven.plugins</groupId>
350               <artifactId>maven-compiler-plugin</artifactId>
351               <configuration>
352                 <source>1.7</source>
353                 <target>1.7</target>
354               </configuration>
355             </plugin>
356             <plugin>
357               <groupId>org.ops4j.pax.exam</groupId>
358               <artifactId>maven-paxexam-plugin</artifactId>
359               <version>1.2.4</version>
360             </plugin>
361           <plugin>
362               <artifactId>maven-clean-plugin</artifactId>
363               <configuration>
364                   <filesets>
365                       <fileset>
366                           <directory>${jmxGeneratorPath}</directory>
367                           <includes>
368                               <include>**</include>
369                           </includes>
370                       </fileset>
371                       <fileset>
372                           <directory>${salGeneratorPath}</directory>
373                           <includes>
374                               <include>**</include>
375                           </includes>
376                       </fileset>
377                   </filesets>
378               </configuration>
379             </plugin>
380           <plugin>
381              <groupId>org.codehaus.mojo</groupId>
382              <artifactId>build-helper-maven-plugin</artifactId>
383              <version>${build.helper.version}</version>
384              <executions>
385                 <execution>
386                    <id>add-source</id>
387                    <phase>generate-sources</phase>
388                    <goals>
389                       <goal>add-source</goal>
390                    </goals>
391                    <configuration>
392                       <sources>
393                          <source>${jmxGeneratorPath}</source>
394                          <source>${salGeneratorPath}</source>
395                       </sources>
396                    </configuration>
397                 </execution>
398              </executions>
399             </plugin>
400             <plugin>
401               <groupId>org.opendaylight.yangtools</groupId>
402               <artifactId>yang-maven-plugin</artifactId>
403               <version>${yang.binding.version}</version>
404             </plugin>
405             <plugin>
406               <groupId>org.apache.felix</groupId>
407               <artifactId>maven-bundle-plugin</artifactId>
408               <version>${maven.bundle.version}</version>
409               <extensions>true</extensions>
410               <configuration>
411                 <instructions>
412                   <Bundle-Name>${project.groupId}.${project.artifactId}</Bundle-Name>
413                 </instructions>
414                 <manifestLocation>${project.build.directory}/META-INF</manifestLocation>
415               </configuration>
416             </plugin>
417             <!-- Ignore/Execute plugin execution -->
418             <plugin>
419               <groupId>org.eclipse.m2e</groupId>
420               <artifactId>lifecycle-mapping</artifactId>
421               <version>1.0.0</version>
422               <configuration>
423                 <lifecycleMappingMetadata>
424                   <pluginExecutions>
425                     <pluginExecution>
426                       <pluginExecutionFilter>
427                         <groupId>org.codehaus.mojo</groupId>
428                         <artifactId>properties-maven-plugin</artifactId>
429                         <versionRange>[0.0,)</versionRange>
430                         <goals>
431                           <goal>set-system-properties</goal>
432                         </goals>
433                       </pluginExecutionFilter>
434                       <action>
435                         <ignore/>
436                       </action>
437                     </pluginExecution>
438                     <pluginExecution>
439                       <pluginExecutionFilter>
440                         <groupId>org.codehaus.enunciate</groupId>
441                         <artifactId>maven-enunciate-plugin</artifactId>
442                         <versionRange>[0.0,)</versionRange>
443                         <goals>
444                           <goal>docs</goal>
445                         </goals>
446                       </pluginExecutionFilter>
447                       <action>
448                         <ignore/>
449                       </action>
450                     </pluginExecution>
451                     <pluginExecution>
452                       <pluginExecutionFilter>
453                         <groupId>org.jacoco</groupId>
454                         <artifactId>jacoco-maven-plugin</artifactId>
455                         <versionRange>[0.0,)</versionRange>
456                         <goals>
457                           <goal>prepare-agent</goal>
458                           <goal>pre-test</goal>
459                           <goal>post-test</goal>
460                         </goals>
461                       </pluginExecutionFilter>
462                       <action>
463                         <ignore/>
464                       </action>
465                     </pluginExecution>
466                     <pluginExecution>
467                       <pluginExecutionFilter>
468                         <groupId>org.ops4j.pax.exam</groupId>
469                         <artifactId>maven-paxexam-plugin</artifactId>
470                         <versionRange>[1.2.4,)</versionRange>
471                         <goals>
472                           <goal>generate-depends-file</goal>
473                         </goals>
474                       </pluginExecutionFilter>
475                       <action>
476                         <execute>
477                           <runOnIncremental>false</runOnIncremental>
478                         </execute>
479                       </action>
480                     </pluginExecution>
481                     <pluginExecution>
482                       <pluginExecutionFilter>
483                         <groupId>org.apache.maven.plugins</groupId>
484                         <artifactId>maven-checkstyle-plugin</artifactId>
485                         <versionRange>[2.0,)</versionRange>
486                         <goals>
487                           <goal>check</goal>
488                         </goals>
489                       </pluginExecutionFilter>
490                       <action>
491                         <ignore/>
492                       </action>
493                     </pluginExecution>
494                     <pluginExecution>
495                       <pluginExecutionFilter>
496                         <groupId>org.opendaylight.yangtools</groupId>
497                         <artifactId>yang-maven-plugin</artifactId>
498                         <versionRange>[0.5,)</versionRange>
499                         <goals>
500                           <goal>generate-sources</goal>
501                         </goals>
502                       </pluginExecutionFilter>
503                       <action>
504                         <execute/>
505                       </action>
506                     </pluginExecution>
507                     <pluginExecution>
508                       <pluginExecutionFilter>
509                         <groupId>org.codehaus.groovy.maven</groupId>
510                         <artifactId>gmaven-plugin</artifactId>
511                         <versionRange>1.0</versionRange>
512                         <goals>
513                           <goal>execute</goal>
514                         </goals>
515                       </pluginExecutionFilter>
516                       <action>
517                         <ignore/>
518                       </action>
519                     </pluginExecution>
520                     <pluginExecution>
521                       <pluginExecutionFilter>
522                         <groupId>org.apache.maven.plugins</groupId>
523                         <artifactId>maven-enforcer-plugin</artifactId>
524                         <versionRange>${enforcer.version}</versionRange>
525                         <goals>
526                           <goal>enforce</goal>
527                         </goals>
528                       </pluginExecutionFilter>
529                       <action>
530                         <ignore/>
531                       </action>
532                     </pluginExecution>
533                   </pluginExecutions>
534                 </lifecycleMappingMetadata>
535               </configuration>
536             </plugin>
537             <plugin>
538               <groupId>org.apache.maven.plugins</groupId>
539               <artifactId>maven-failsafe-plugin</artifactId>
540               <configuration>
541                 <!-- Specific to generate mapping between tests and covered code -->
542                 <argLine>${jacoco.agent.it.arg}</argLine>
543                 <properties>
544                   <property>
545                     <name>listener</name>
546                     <value>org.sonar.java.jacoco.JUnitListener</value>
547                   </property>
548                 </properties>
549                 <!-- Let's put failsafe reports with surefire to have access to tests failures/success reports in sonar -->
550                 <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
551               </configuration>
552             </plugin>
553             <plugin>
554               <groupId>org.apache.maven.plugins</groupId>
555               <artifactId>maven-surefire-plugin</artifactId>
556               <configuration>
557                 <!-- Specific to generate mapping between tests and covered code -->
558                 <argLine>${jacoco.agent.ut.arg}</argLine>
559                 <properties>
560                   <property>
561                     <name>listener</name>
562                     <value>org.sonar.java.jacoco.JUnitListener</value>
563                   </property>
564                 </properties>
565               </configuration>
566             </plugin>
567           </plugins>
568         </pluginManagement>
569     </build>
570
571     <profiles>
572       <profile>
573         <id>findbugsReport</id>
574         <reporting>
575           <plugins>
576             <plugin>
577               <groupId>org.apache.maven.plugins</groupId>
578               <artifactId>maven-project-info-reports-plugin</artifactId>
579               <version>2.7</version>
580               <configuration>
581                 <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
582                 <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
583               </configuration>
584               <reportSets>
585                 <reportSet>
586                   <reports>
587                     <report>index</report>
588                     <report>project-team</report>
589                     <report>license</report>
590                     <report>mailing-list</report>
591                     <report>plugin-management</report>
592                     <report>cim</report>
593                     <report>issue-tracking</report>
594                     <report>scm</report>
595                     <report>summary</report>
596                   </reports>
597                 </reportSet>
598               </reportSets>
599             </plugin>
600             <plugin>
601               <groupId>org.codehaus.mojo</groupId>
602               <artifactId>findbugs-maven-plugin</artifactId>
603               <version>2.5.2</version>
604             </plugin>
605             <plugin>
606               <groupId>org.apache.maven.plugins</groupId>
607               <artifactId>maven-pmd-plugin</artifactId>
608               <version>3.0.1</version>
609             </plugin>
610             <plugin>
611               <groupId>org.apache.maven.plugins</groupId>
612               <artifactId>maven-jxr-plugin</artifactId>
613               <version>2.3</version>
614             </plugin>
615           </plugins>
616         </reporting>
617       </profile>
618
619       <profile>
620         <id>nsf-migration</id>
621         <activation>
622           <activeByDefault>false</activeByDefault>
623           <file>
624             <exists>${basedir}/migrationStep.1</exists>
625           </file>
626         </activation>
627
628         <properties>
629           <!-- TODO: pull out into parent -->
630           <openflowplugin.model.version>${project.version}</openflowplugin.model.version>
631         </properties>
632
633         <dependencyManagement>
634           <!-- TODO: pull out into parent -->
635           <dependencies>
636             <dependency>
637               <groupId>org.opendaylight.openflowplugin.model</groupId>
638               <artifactId>model-flow-base</artifactId>
639               <version>${openflowplugin.model.version}</version>
640             </dependency>
641             <dependency>
642               <groupId>org.opendaylight.openflowplugin.model</groupId>
643               <artifactId>model-flow-service</artifactId>
644               <version>${openflowplugin.model.version}</version>
645             </dependency>
646             <dependency>
647               <groupId>org.opendaylight.openflowplugin.model</groupId>
648               <artifactId>model-flow-statistics</artifactId>
649               <version>${openflowplugin.model.version}</version>
650             </dependency>
651
652             <!-- excluding old models pulled as transient dependencies
653                  TODO: remove -->
654             <dependency>
655               <groupId>org.opendaylight.openflowplugin</groupId>
656               <artifactId>openflowplugin-api</artifactId>
657               <version>${project.version}</version>
658               <exclusions>
659                 <exclusion>
660                   <groupId>org.opendaylight.controller.model</groupId>
661                   <artifactId>model-flow-base</artifactId>
662                 </exclusion>
663                 <exclusion>
664                   <groupId>org.opendaylight.controller.model</groupId>
665                   <artifactId>model-flow-service</artifactId>
666                 </exclusion>
667                 <exclusion>
668                   <groupId>org.opendaylight.controller.model</groupId>
669                   <artifactId>model-flow-statistics</artifactId>
670                 </exclusion>
671               </exclusions>
672             </dependency>
673             <dependency>
674               <groupId>org.opendaylight.controller</groupId>
675               <artifactId>sal-binding-broker-impl</artifactId>
676               <version>${controller.model.version}</version>
677               <exclusions>
678                 <exclusion>
679                   <groupId>org.opendaylight.controller.model</groupId>
680                   <artifactId>model-flow-base</artifactId>
681                 </exclusion>
682                 <exclusion>
683                   <groupId>org.opendaylight.controller.model</groupId>
684                   <artifactId>model-flow-service</artifactId>
685                 </exclusion>
686                 <exclusion>
687                   <groupId>org.opendaylight.controller.model</groupId>
688                   <artifactId>model-flow-statistics</artifactId>
689                 </exclusion>
690               </exclusions>
691             </dependency>
692           </dependencies>
693
694         </dependencyManagement>
695       </profile>
696
697     </profiles>
698
699     <modules>
700       <module>openflowplugin-api</module>
701       <module>openflowplugin</module>
702       <module>extension</module>
703       <module>distribution/base</module>
704       <module>distribution/cbench</module>
705       <module>distribution/karaf</module>
706       <module>openflowplugin-controller-config</module>
707       <module>openflowplugin-it</module>
708       <module>test-provider</module>
709       <module>drop-test</module>
710       <module>drop-test-karaf</module>
711       <module>test-common</module>
712       <module>features</module>
713       <module>samples/sample-consumer</module>
714       <module>samples/learning-switch</module>
715       <module>applications</module>
716       <module>model</module>
717       <module>legacy</module>
718   </modules>
719 </project>