d18a388f9b17e269653628239cdf6c6384de189a
[ovsdb.git] / commons / parent / 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
5   <parent>
6     <groupId>org.opendaylight.odlparent</groupId>
7     <artifactId>odlparent</artifactId>
8     <version>1.5.0-SNAPSHOT</version>
9     <relativePath></relativePath>
10   </parent>
11
12   <groupId>org.opendaylight.ovsdb</groupId>
13   <artifactId>commons</artifactId>
14   <name>OVSDB Parent POM</name>
15   <version>1.3.0-SNAPSHOT</version>
16   <packaging>pom</packaging>
17   <prerequisites>
18     <maven>3.0</maven>
19   </prerequisites>
20
21   <properties>
22     <lifecycle.mapping.version>1.0.0</lifecycle.mapping.version>
23     <!-- ODL repository / plugin repository -->
24     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
25     <!-- Surefire/Failsafe Arguments -->
26     <argLine>-Xmx1024m -XX:MaxPermSize=256m</argLine>
27     <!-- OVSB Component Versions -->
28     <ovsdb.library.version>1.1.0-SNAPSHOT</ovsdb.library.version>
29     <ovsdb.plugin.version>1.1.0-SNAPSHOT</ovsdb.plugin.version>
30     <plugin.shell.version>1.1.0-SNAPSHOT</plugin.shell.version>
31     <openstack.netvirt.version>1.1.0-SNAPSHOT</openstack.netvirt.version>
32     <openstack.netvirt.providers.version>1.1.0-SNAPSHOT</openstack.netvirt.providers.version>
33     <ovsdb.northbound.version>0.7.0-SNAPSHOT</ovsdb.northbound.version>
34     <schema.openvswitch.version>1.1.0-SNAPSHOT</schema.openvswitch.version>
35     <schema.hardwarevtep.version>1.1.0-SNAPSHOT</schema.hardwarevtep.version>
36     <ovsdb.ofextension.version>1.1.0-SNAPSHOT</ovsdb.ofextension.version>
37     <ovsdb.utils.config.version>1.1.0-SNAPSHOT</ovsdb.utils.config.version>
38     <utils.mdsal.openflow.version>1.1.0-SNAPSHOT</utils.mdsal.openflow.version>
39     <ovsdb.ovssfc.version>0.1.0-SNAPSHOT</ovsdb.ovssfc.version>
40     <!-- Skip Coverage and IT by default -->
41     <skip.coverage>true</skip.coverage>
42     <skip.integrationtest>true</skip.integrationtest>
43     <skip.karaf>false</skip.karaf>
44     <skip.distribution>false</skip.distribution>
45     <!-- The directory where maven was executed -->
46     <root.directory>${env.PWD}</root.directory>
47     <!-- UT reports are per-module -->
48     <sonar.jacoco.reportPath>target/code-coverage/jacoco.exec</sonar.jacoco.reportPath>
49     <!-- IT report is aggregated to enable PAX Exam coverage to be logged -->
50     <sonar.jacoco.itReportPath>${root.directory}/target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
51     <sonar.dynamicAnalysis>reuseReports</sonar.dynamicAnalysis>
52     <!-- Override the JaCoCo version in ODL Parent -->
53     <jacoco.version>0.6.4.201312101107</jacoco.version>
54     <!-- ODL Dependency Versions -->
55     <containermanager.version>0.6.0-SNAPSHOT</containermanager.version>
56     <forwardingrulesmanager.version>0.7.0-SNAPSHOT</forwardingrulesmanager.version>
57     <networkconfig.neutron.version>0.5.0-SNAPSHOT</networkconfig.neutron.version>
58     <clustering.services.version>0.6.0-SNAPSHOT</clustering.services.version>
59     <sal.version>0.9.0-SNAPSHOT</sal.version>
60     <sal.connection.version>0.2.0-SNAPSHOT</sal.connection.version>
61     <sal.networkconfiguration.version>0.1.0-SNAPSHOT</sal.networkconfiguration.version>
62     <mdsal.version>1.2.0-SNAPSHOT</mdsal.version>
63     <openflowplugin.version>0.1.0-SNAPSHOT</openflowplugin.version>
64     <openflowplugin-nicira.version>0.1.0-SNAPSHOT</openflowplugin-nicira.version>
65     <openflowplugin-extension.version>0.1.0-SNAPSHOT</openflowplugin-extension.version>
66     <openflowjava-nicira.version>0.1.0-SNAPSHOT</openflowjava-nicira.version>
67     <openflowjava-extension.version>0.1.0-SNAPSHOT</openflowjava-extension.version>
68     <openflowjava.version>0.6.0-SNAPSHOT</openflowjava.version>
69     <controller.config.version>0.3.0-SNAPSHOT</controller.config.version>
70     <switchmanager.api.version>0.8.0-SNAPSHOT</switchmanager.api.version>
71     <yangtools.version>0.7.0-SNAPSHOT</yangtools.version>
72     <northbound.commons.version>0.5.0-SNAPSHOT</northbound.commons.version>
73     <checkstyle.rules.version>0.1.0-SNAPSHOT</checkstyle.rules.version>
74     <!-- 3rd Pary Dependency Versions -->
75     <commons.collection.version>1.0</commons.collection.version>
76     <portlet.version>2.0</portlet.version>
77     <powermock.version>1.5.2</powermock.version>
78     <httpcomponents.version>4.2.1</httpcomponents.version>
79     <karaf.shell.version>3.0.0</karaf.shell.version>
80     <odl.karaf.base.version>1.5.0-SNAPSHOT</odl.karaf.base.version>
81     <nsf.version>0.5.0-SNAPSHOT</nsf.version>
82     <sfc-model.version>0.1.0-SNAPSHOT</sfc-model.version>
83   </properties>
84
85   <dependencyManagement>
86     <dependencies>
87       <dependency>
88         <groupId>commons-collections</groupId>
89         <artifactId>commons-collections</artifactId>
90         <version>${commons.collection.version}</version>
91       </dependency>
92       <dependency>
93         <groupId>io.netty</groupId>
94         <artifactId>netty-all</artifactId>
95         <version>${netty.version}</version>
96       </dependency>
97       <dependency>
98         <groupId>javax.portlet</groupId>
99         <artifactId>portlet-api</artifactId>
100         <version>${portlet.version}</version>
101       </dependency>
102       <dependency>
103         <groupId>org.apache.httpcomponents</groupId>
104         <artifactId>httpcore-nio</artifactId>
105         <version>${httpcomponents.version}</version>
106       </dependency>
107       <dependency>
108         <groupId>org.powermock</groupId>
109         <artifactId>powermock-module-junit4</artifactId>
110         <version>${powermock.version}</version>
111       </dependency>
112       <dependency>
113         <groupId>org.powermock</groupId>
114         <artifactId>powermock-api-mockito</artifactId>
115         <version>${powermock.version}</version>
116       </dependency>
117       <dependency>
118         <groupId>org.opendaylight.controller</groupId>
119         <artifactId>clustering.services</artifactId>
120         <version>${clustering.services.version}</version>
121       </dependency>
122       <dependency>
123         <groupId>org.opendaylight.controller</groupId>
124         <artifactId>sal</artifactId>
125         <version>${sal.version}</version>
126       </dependency>
127       <dependency>
128         <groupId>org.opendaylight.controller</groupId>
129         <artifactId>sal.connection</artifactId>
130         <version>${sal.connection.version}</version>
131       </dependency>
132       <dependency>
133         <groupId>org.opendaylight.controller</groupId>
134         <artifactId>sal.networkconfiguration</artifactId>
135         <version>${sal.networkconfiguration.version}</version>
136       </dependency>
137       <dependency>
138         <groupId>org.opendaylight.controller</groupId>
139         <artifactId>containermanager</artifactId>
140         <version>${containermanager.version}</version>
141       </dependency>
142       <dependency>
143         <groupId>org.opendaylight.controller</groupId>
144         <artifactId>forwardingrulesmanager</artifactId>
145         <version>${forwardingrulesmanager.version}</version>
146       </dependency>
147       <dependency>
148         <groupId>org.opendaylight.controller</groupId>
149         <artifactId>networkconfig.neutron</artifactId>
150         <version>${networkconfig.neutron.version}</version>
151       </dependency>
152       <dependency>
153         <groupId>org.opendaylight.controller</groupId>
154         <artifactId>sal-binding-api</artifactId>
155         <version>${mdsal.version}</version>
156       </dependency>
157       <dependency>
158         <groupId>org.opendaylight.controller</groupId>
159         <artifactId>sal-common-util</artifactId>
160         <version>${mdsal.version}</version>
161       </dependency>
162       <dependency>
163         <groupId>org.opendaylight.controller</groupId>
164         <artifactId>switchmanager</artifactId>
165         <version>${switchmanager.api.version}</version>
166       </dependency>
167       <dependency>
168         <groupId>org.opendaylight.controller.model</groupId>
169         <artifactId>model-flow-base</artifactId>
170         <version>${mdsal.version}</version>
171       </dependency>
172       <dependency>
173         <groupId>org.opendaylight.controller.model</groupId>
174         <artifactId>model-flow-statistics</artifactId>
175         <version>${mdsal.version}</version>
176       </dependency>
177       <dependency>
178         <groupId>org.opendaylight.controller.model</groupId>
179         <artifactId>model-flow-service</artifactId>
180         <version>${mdsal.version}</version>
181       </dependency>
182       <dependency>
183         <groupId>org.opendaylight.controller.model</groupId>
184         <artifactId>model-inventory</artifactId>
185         <version>${mdsal.version}</version>
186       </dependency>
187       <dependency>
188         <groupId>org.opendaylight.yangtools</groupId>
189         <artifactId>yang-binding</artifactId>
190         <version>${yangtools.version}</version>
191       </dependency>
192       <dependency>
193         <groupId>org.opendaylight.yangtools</groupId>
194         <artifactId>features-test</artifactId>
195         <version>${yangtools.version}</version>
196         <scope>test</scope>
197       </dependency>
198       <dependency>
199         <groupId>org.opendaylight.controller</groupId>
200         <artifactId>opendaylight-karaf-empty</artifactId>
201         <version>1.5.0-SNAPSHOT</version>
202         <type>zip</type>
203       </dependency>
204       <dependency>
205         <groupId>org.opendaylight.controller</groupId>
206         <artifactId>commons.northbound</artifactId>
207         <version>${northbound.commons.version}</version>
208       </dependency>
209       <dependency>
210           <groupId>org.opendaylight.controller</groupId>
211           <artifactId>config-api</artifactId>
212           <version>${controller.config.version}</version>
213       </dependency>
214       <dependency>
215           <groupId>org.opendaylight.openflowjava</groupId>
216           <artifactId>openflow-protocol-api</artifactId>
217           <version>${openflowjava.version}</version>
218       </dependency>
219       <dependency>
220           <groupId>org.opendaylight.openflowjava</groupId>
221           <artifactId>openflow-protocol-spi</artifactId>
222           <version>${openflowjava.version}</version>
223       </dependency>
224         <dependency>
225             <groupId>org.opendaylight.openflowjava</groupId>
226             <artifactId>openflow-protocol-impl</artifactId>
227             <version>${openflowjava.version}</version>
228         </dependency>
229       <dependency>
230           <groupId>org.opendaylight.openflowjava</groupId>
231           <artifactId>util</artifactId>
232           <version>${openflowjava.version}</version>
233       </dependency>
234       <dependency>
235           <groupId>org.opendaylight.openflowplugin</groupId>
236           <artifactId>openflowjava-extension-nicira-api</artifactId>
237           <version>${openflowjava-nicira.version}</version>
238       </dependency>
239       <dependency>
240           <groupId>org.opendaylight.openflowplugin</groupId>
241           <artifactId>openflowjava-extension-nicira</artifactId>
242           <version>${openflowjava-nicira.version}</version>
243       </dependency>
244       <dependency>
245           <groupId>org.opendaylight.openflowplugin</groupId>
246           <artifactId>openflowplugin-extension-api</artifactId>
247           <version>${openflowplugin-extension.version}</version>
248       </dependency>
249       <dependency>
250           <groupId>org.opendaylight.openflowplugin</groupId>
251           <artifactId>openflowplugin-extension-nicira</artifactId>
252           <version>${openflowplugin-nicira.version}</version>
253       </dependency>
254       <dependency>
255           <groupId>org.opendaylight.openflowplugin</groupId>
256           <artifactId>openflowplugin</artifactId>
257           <version>${openflowplugin.version}</version>
258       </dependency>
259       <dependency>
260         <groupId>org.opendaylight.ovsdb</groupId>
261         <artifactId>library</artifactId>
262         <version>${ovsdb.library.version}</version>
263       </dependency>
264       <dependency>
265         <groupId>org.opendaylight.ovsdb</groupId>
266         <artifactId>plugin</artifactId>
267         <version>${ovsdb.plugin.version}</version>
268       </dependency>
269       <dependency>
270         <groupId>org.opendaylight.ovsdb</groupId>
271         <artifactId>plugin-shell</artifactId>
272         <version>${plugin.shell.version}</version>
273       </dependency>
274       <dependency>
275         <groupId>org.opendaylight.ovsdb</groupId>
276         <artifactId>ovssfc</artifactId>
277         <version>${ovsdb.ovssfc.version}</version>
278       </dependency>
279       <dependency>
280         <groupId>org.opendaylight.ovsdb</groupId>
281         <artifactId>openstack.net-virt</artifactId>
282         <version>${openstack.netvirt.version}</version>
283       </dependency>
284       <dependency>
285         <groupId>org.opendaylight.ovsdb</groupId>
286         <artifactId>openstack.net-virt-providers</artifactId>
287         <version>${openstack.netvirt.providers.version}</version>
288       </dependency>
289       <dependency>
290         <groupId>org.opendaylight.ovsdb</groupId>
291         <artifactId>northbound</artifactId>
292         <version>${ovsdb.northbound.version}</version>
293       </dependency>
294       <dependency>
295         <groupId>org.opendaylight.ovsdb</groupId>
296         <artifactId>schema.hardwarevtep</artifactId>
297         <version>${schema.hardwarevtep.version}</version>
298       </dependency>
299       <dependency>
300         <groupId>org.opendaylight.ovsdb</groupId>
301         <artifactId>schema.openvswitch</artifactId>
302         <version>${schema.openvswitch.version}</version>
303       </dependency>
304       <dependency>
305         <groupId>org.opendaylight.ovsdb</groupId>
306         <artifactId>plugin-mdsal-adapter</artifactId>
307         <version>${ovsdb.plugin.version}</version>
308       </dependency>
309       <dependency>
310         <groupId>org.opendaylight.ovsdb</groupId>
311         <artifactId>of-extension.nx-ofjava</artifactId>
312         <version>${ovsdb.ofextension.version}</version>
313       </dependency>
314       <dependency>
315         <groupId>org.opendaylight.ovsdb</groupId>
316         <artifactId>of-extension.nx-sal</artifactId>
317         <version>${ovsdb.ofextension.version}</version>
318       </dependency>
319       <dependency>
320         <groupId>org.opendaylight.sfc</groupId>
321         <artifactId>sfc-model</artifactId>
322         <version>${sfc-model.version}</version>
323       </dependency>
324     </dependencies>
325   </dependencyManagement>
326
327   <build>
328     <pluginManagement>
329       <plugins>
330         <plugin>
331           <groupId>org.apache.maven.plugins</groupId>
332           <artifactId>maven-compiler-plugin</artifactId>
333           <configuration>
334             <source>${java.version.source}</source>
335             <target>${java.version.target}</target>
336             <testSource>${java.version.source}</testSource>
337             <testTarget>${java.version.target}</testTarget>
338           </configuration>
339         </plugin>
340         <!-- This configuration should move to ODL-Parent -->
341         <plugin>
342           <groupId>org.eclipse.m2e</groupId>
343           <artifactId>lifecycle-mapping</artifactId>
344           <version>${lifecycle.mapping.version}</version>
345           <configuration>
346             <lifecycleMappingMetadata>
347               <pluginExecutions>
348                 <pluginExecution>
349                   <pluginExecutionFilter>
350                     <groupId>org.codehaus.mojo</groupId>
351                     <artifactId>properties-maven-plugin</artifactId>
352                     <versionRange>[0.0,)</versionRange>
353                     <goals>
354                       <goal>set-system-properties</goal>
355                     </goals>
356                   </pluginExecutionFilter>
357                   <action>
358                     <ignore></ignore>
359                   </action>
360                 </pluginExecution>
361                 <pluginExecution>
362                   <pluginExecutionFilter>
363                     <groupId>org.jacoco</groupId>
364                     <artifactId>jacoco-maven-plugin</artifactId>
365                     <versionRange>[0.0,)</versionRange>
366                     <goals>
367                       <goal>prepare-agent</goal>
368                       <goal>pre-test</goal>
369                       <goal>post-test</goal>
370                     </goals>
371                   </pluginExecutionFilter>
372                   <action>
373                     <ignore></ignore>
374                   </action>
375                 </pluginExecution>
376                 <pluginExecution>
377                   <pluginExecutionFilter>
378                     <groupId>org.apache.maven.plugins</groupId>
379                     <artifactId>maven-checkstyle-plugin</artifactId>
380                     <versionRange>[2.0,)</versionRange>
381                     <goals>
382                       <goal>check</goal>
383                     </goals>
384                   </pluginExecutionFilter>
385                   <action>
386                     <ignore></ignore>
387                   </action>
388                 </pluginExecution>
389                 <pluginExecution>
390                   <pluginExecutionFilter>
391                     <groupId>org.opendaylight.yangtools</groupId>
392                     <artifactId>yang-maven-plugin</artifactId>
393                     <versionRange>[0.5,)</versionRange>
394                     <goals>
395                       <goal>generate-sources</goal>
396                     </goals>
397                   </pluginExecutionFilter>
398                   <action>
399                     <execute></execute>
400                   </action>
401                 </pluginExecution>
402               </pluginExecutions>
403             </lifecycleMappingMetadata>
404           </configuration>
405         </plugin>
406         <plugin>
407           <groupId>org.apache.maven.plugins</groupId>
408           <artifactId>maven-checkstyle-plugin</artifactId>
409           <version>${checkstyle.version}</version>
410           <configuration>
411             <failsOnError>true</failsOnError>
412             <configLocation>controller/checkstyle.xml</configLocation>
413             <consoleOutput>true</consoleOutput>
414             <includeTestSourceDirectory>true</includeTestSourceDirectory>
415             <sourceDirectory>${project.basedir}</sourceDirectory>
416             <includes>**\/*.java,**\/*.xml,**\/*.ini,**\/*.sh,**\/*.bat</includes>
417             <excludes>**\/target\/,**\/bin\/,**\/target-ide\/,\/</excludes>
418           </configuration>
419           <dependencies>
420             <dependency>
421               <groupId>org.opendaylight.controller</groupId>
422               <artifactId>checkstyle</artifactId>
423               <version>0.1.0-SNAPSHOT</version>
424             </dependency>
425           </dependencies>
426           <executions>
427             <execution>
428               <goals>
429                 <goal>check</goal>
430               </goals>
431               <phase>process-sources</phase>
432             </execution>
433           </executions>
434         </plugin>
435         <plugin>
436           <groupId>org.jacoco</groupId>
437           <artifactId>jacoco-maven-plugin</artifactId>
438           <version>${jacoco.version}</version>
439           <configuration>
440             <skip>${skip.coverage}</skip>
441           </configuration>
442           <executions>
443             <execution>
444               <id>pre-unit-test</id>
445               <goals>
446                 <goal>prepare-agent</goal>
447               </goals>
448               <configuration>
449                 <destFile>${sonar.jacoco.reportPath}</destFile>
450               </configuration>
451             </execution>
452             <execution>
453               <id>pre-integration-test</id>
454               <goals>
455                 <goal>prepare-agent-integration</goal>
456               </goals>
457               <configuration>
458                 <destFile>${sonar.jacoco.itReportPath}</destFile>
459                 <append>true</append>
460                 <skip>${skip.integrationtest}</skip>
461               </configuration>
462             </execution>
463             <execution>
464               <id>post-unit-test</id>
465               <goals>
466                 <goal>report</goal>
467               </goals>
468               <configuration>
469                 <dataFile>${sonar.jacoco.reportPath}</dataFile>
470               </configuration>
471             </execution>
472             <execution>
473               <id>post-integration-test</id>
474               <goals>
475                 <goal>report-integration</goal>
476               </goals>
477               <configuration>
478                 <dataFile>${sonar.jacoco.itReportPath}</dataFile>
479                 <skip>${skip.integrationtest}</skip>
480               </configuration>
481             </execution>
482           </executions>
483         </plugin>
484         <plugin>
485           <groupId>org.apache.maven.plugins</groupId>
486           <artifactId>maven-surefire-plugin</artifactId>
487           <version>${maven.surefire.version}</version>
488         </plugin>
489         <plugin>
490           <groupId>org.apache.maven.plugins</groupId>
491           <artifactId>maven-failsafe-plugin</artifactId>
492           <version>${failsafe.version}</version>
493           <executions>
494             <execution>
495               <id>failsafe-integration-tests</id>
496               <goals>
497                 <goal>integration-test</goal>
498                 <goal>verify</goal>
499               </goals>
500               <configuration>
501                 <reportsDirectory>${project.build.directory}/surefire-reports</reportsDirectory>
502                 <skipTests>${skip.integrationtest}</skipTests>
503               </configuration>
504             </execution>
505           </executions>
506         </plugin>
507         <plugin>
508           <groupId>org.opendaylight.yangtools</groupId>
509           <artifactId>yang-maven-plugin</artifactId>
510           <version>${yangtools.version}</version>
511           <executions>
512             <execution>
513               <goals>
514                 <goal>generate-sources</goal>
515               </goals>
516               <configuration>
517                 <!-- directory containing yang files to parse and generate code -->
518                 <yangFilesRootDir>src/main/yang</yangFilesRootDir>
519                 <codeGenerators>
520                   <generator>
521                     <codeGeneratorClass>
522                       org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
523                     </codeGeneratorClass>
524                     <!-- directory into which generated files will be placed -->
525                     <outputBaseDir>
526                       target/generated-sources/sal
527                     </outputBaseDir>
528                   </generator>
529                 </codeGenerators>
530                 <inspectDependencies>true</inspectDependencies>
531               </configuration>
532             </execution>
533           </executions>
534           <dependencies>
535             <dependency>
536               <groupId>org.opendaylight.yangtools</groupId>
537               <artifactId>maven-sal-api-gen-plugin</artifactId>
538               <version>${yangtools.version}</version>
539               <type>jar</type>
540             </dependency>
541           </dependencies>
542         </plugin>
543         <plugin>
544           <groupId>org.codehaus.mojo</groupId>
545           <artifactId>build-helper-maven-plugin</artifactId>
546           <version>1.7</version>
547           <executions>
548             <execution>
549               <phase>generate-sources</phase>
550               <goals>
551                 <goal>add-source</goal>
552               </goals>
553               <configuration>
554                 <sources>
555                   <source>target/generated-sources/sal</source>
556                 </sources>
557               </configuration>
558             </execution>
559           </executions>
560         </plugin>
561       </plugins>
562     </pluginManagement>
563   </build>
564   <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
565   <scm>
566     <connection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</connection>
567     <developerConnection>scm:git:ssh://git.opendaylight.org:29418/ovsdb.git</developerConnection>
568     <tag>HEAD</tag>
569     <url>https://wiki.opendaylight.org/view/OVSDB_Integration:Main</url>
570   </scm>
571
572   <repositories>
573     <!-- Opendaylight public group -->
574     <repository>
575       <id>opendaylight-public</id>
576       <name>opendaylight-public</name>
577       <url>${nexusproxy}/groups/public/</url>
578       <snapshots>
579         <enabled>false</enabled>
580       </snapshots>
581       <releases>
582         <enabled>true</enabled>
583         <updatePolicy>never</updatePolicy>
584       </releases>
585     </repository>
586     <!-- OpenDayLight Released artifact -->
587     <repository>
588       <id>opendaylight-release</id>
589       <name>opendaylight-release</name>
590       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
591       <snapshots>
592         <enabled>false</enabled>
593       </snapshots>
594       <releases>
595         <enabled>true</enabled>
596       </releases>
597     </repository>
598     <!-- OpenDayLight Snapshot artifact -->
599     <repository>
600       <id>opendaylight-snapshot</id>
601       <name>opendaylight-snapshot</name>
602       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
603       <snapshots>
604         <enabled>true</enabled>
605       </snapshots>
606       <releases>
607         <enabled>false</enabled>
608       </releases>
609     </repository>
610   </repositories>
611
612   <pluginRepositories>
613     <!-- Opendaylight public group -->
614     <pluginRepository>
615       <id>opendaylight-public</id>
616       <name>opendaylight-public</name>
617       <url>${nexusproxy}/groups/public/</url>
618       <snapshots>
619         <enabled>false</enabled>
620       </snapshots>
621       <releases>
622         <enabled>true</enabled>
623         <updatePolicy>never</updatePolicy>
624       </releases>
625     </pluginRepository>
626     <!-- OpenDayLight Released artifact -->
627     <pluginRepository>
628       <id>opendaylight-release</id>
629       <name>opendaylight-release</name>
630       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.release/</url>
631       <snapshots>
632         <enabled>false</enabled>
633       </snapshots>
634       <releases>
635         <enabled>true</enabled>
636       </releases>
637     </pluginRepository>
638     <!-- OpenDayLight Snapshot artifact -->
639     <pluginRepository>
640       <id>opendaylight-snapshot</id>
641       <name>opendaylight-snapshot</name>
642       <url>http://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
643       <snapshots>
644         <enabled>true</enabled>
645       </snapshots>
646       <releases>
647         <enabled>false</enabled>
648       </releases>
649     </pluginRepository>
650   </pluginRepositories>
651
652   <profiles>
653     <profile>
654       <id>integrationtest</id>
655       <activation>
656         <activeByDefault>false</activeByDefault>
657       </activation>
658       <properties>
659         <skip.integrationtest>false</skip.integrationtest>
660       </properties>
661     </profile>
662     <profile>
663       <id>coverage</id>
664       <activation>
665         <activeByDefault>false</activeByDefault>
666       </activation>
667       <properties>
668         <skip.coverage>false</skip.coverage>
669       </properties>
670     </profile>
671     <profile>
672       <id>jenkins</id>
673       <activation>
674         <activeByDefault>false</activeByDefault>
675       </activation>
676       <properties>
677         <skip.distribution>true</skip.distribution>
678         <root.directory>${env.WORKSPACE}</root.directory>
679       </properties>
680     </profile>
681     <profile>
682       <id>karaf</id>
683       <activation>
684         <activeByDefault>false</activeByDefault>
685       </activation>
686       <properties>
687         <skip.karaf>false</skip.karaf>
688       </properties>
689     </profile>
690   </profiles>
691 </project>