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