Fix Karaf dependencies and add tests
[lispflowmapping.git] / commons / parent / pom.xml
1 <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/maven-v4_0_0.xsd">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>org.opendaylight.lispflowmapping</groupId>
4         <artifactId>lispflowmapping-commons</artifactId>
5         <name>Parent POM</name>
6         <version>1.1.11-SNAPSHOT</version>
7         <description />
8         <packaging>pom</packaging>
9         <url>http://www.opendaylight.org</url>
10         <scm>
11                 <connection>scm:git:https://git.opendaylight.org/gerrit/p/lispflowmapping.git</connection>
12                 <developerConnection>scm:git:ssh://git.opendaylight.org:29418/lispflowmapping.git</developerConnection>
13                 <url>https://wiki.opendaylight.org/view/OpenDaylight_Lisp_Flow_Mapping:Main</url>
14                 <tag>HEAD</tag>
15         </scm>
16         <properties>
17                 <lispflowmapping.version>1.1.11-SNAPSHOT</lispflowmapping.version>
18                 <jacoco.version>0.6.2.201302030002</jacoco.version>
19                 <sal.version>0.8.1-SNAPSHOT</sal.version>
20                 <mdsal.version>1.1-SNAPSHOT</mdsal.version>
21                 <clustering.services.version>0.5.1-SNAPSHOT</clustering.services.version>
22                 <enforcer.version>1.3.1</enforcer.version>
23                 <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
24                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25                 <projectinfo>2.6</projectinfo>
26                 <enunciate.version>1.26.2</enunciate.version>
27                 <guava.version>14.0.1</guava.version>
28                 <build.suffix>1.0.0</build.suffix>
29                 <yangtools.binding.version>0.6.1</yangtools.binding.version>
30                 <yang.binding.version>0.6.1</yang.binding.version>
31                 <yang.version>0.6.1</yang.version>
32                 <yang.codegen.version>0.6.1</yang.codegen.version>
33                 <sonar.host.url>https://sonar.opendaylight.org/</sonar.host.url>
34                 <sonar.branch>${user.name}-develop</sonar.branch>
35                 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
36                 <sonar.language>java</sonar.language>
37                 <forwardingrulesmanager.version>0.5.0</forwardingrulesmanager.version>
38                 <statisticsmanager.version>0.5.0</statisticsmanager.version>
39                 <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
40                 <java.version.source>1.7</java.version.source>
41                 <java.version.target>1.7</java.version.target>
42                 <releaseplugin.version>2.3.2</releaseplugin.version>
43                 <slf4j.version>1.7.2</slf4j.version>
44                 <branding.version>1.0.0-SNAPSHOT</branding.version>
45                 <karaf.resources.version>1.4.2-SNAPSHOT</karaf.resources.version>
46                 <karaf.version>3.0.1</karaf.version>
47                 <feature.test.version>0.6.2-SNAPSHOT</feature.test.version>
48                 <karaf.empty.version>1.4.2-SNAPSHOT</karaf.empty.version>
49                 <surefire.version>2.16</surefire.version>
50         </properties>
51         <repositories>
52
53     <!-- OpenDayLight Repo Mirror -->
54     <repository>
55       <id>opendaylight-mirror</id>
56       <name>opendaylight-mirror</name>
57       <url>${nexusproxy}/groups/public/</url>
58       <snapshots>
59           <enabled>false</enabled>
60       </snapshots>
61       <releases>
62           <enabled>true</enabled>
63           <updatePolicy>never</updatePolicy>
64       </releases>
65     </repository>
66     <!-- OpenDayLight Snapshot artifact -->
67     <repository>
68       <id>opendaylight-snapshot</id>
69       <name>opendaylight-snapshot</name>
70       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
71       <snapshots>
72           <enabled>true</enabled>
73       </snapshots>
74       <releases>
75           <enabled>false</enabled>
76       </releases>
77     </repository>
78     <repository>
79       <id>opendaylight-snapshot-release</id>
80       <name>opendaylight-snapshot-release</name>
81       <url>${nexusproxy}/repositories/opendaylight.release/</url>
82       <snapshots>
83           <enabled>false</enabled>
84       </snapshots>
85       <releases>
86           <enabled>true</enabled>
87       </releases>
88     </repository>
89     <repository>
90                         <id>maven-restlet</id>
91                         <name>Public online Restlet repository</name>
92                         <url>http://maven.restlet.org</url>
93                         <snapshots>
94                                 <enabled>true</enabled>
95                                 <updatePolicy>never</updatePolicy>
96                         </snapshots>
97                 </repository>
98   </repositories>
99   
100     <pluginRepositories>
101     <!-- OpenDayLight Repo Mirror -->
102     <pluginRepository>
103       <id>opendaylight-mirror</id>
104       <name>opendaylight-mirror</name>
105       <url>${nexusproxy}/groups/public/</url>
106       <snapshots>
107           <enabled>false</enabled>
108       </snapshots>
109       <releases>
110           <enabled>true</enabled>
111           <updatePolicy>never</updatePolicy>
112       </releases>
113     </pluginRepository>
114     <!-- OpenDayLight Snapshot artifact -->
115     <pluginRepository>
116       <id>opendaylight-snapshot</id>
117       <name>opendaylight-snapshot</name>
118       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
119       <snapshots>
120           <enabled>true</enabled>
121       </snapshots>
122       <releases>
123           <enabled>false</enabled>
124       </releases>
125     </pluginRepository>
126   </pluginRepositories>
127
128         <distributionManagement>
129                 <!-- OpenDayLight Released artifact -->
130                 <repository>
131                         <id>opendaylight-release</id>
132                         <url>${nexusproxy}/repositories/opendaylight.release/</url>
133                 </repository>
134                 <!-- OpenDayLight Snapshot artifact -->
135                 <snapshotRepository>
136                         <id>opendaylight-snapshot</id>
137                         <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
138                 </snapshotRepository>
139                 <!-- Site deployment -->
140         </distributionManagement>
141
142         <dependencyManagement>
143                 <dependencies>
144                         <dependency>
145                                 <groupId>org.opendaylight.controller</groupId>
146                                 <artifactId>clustering.services</artifactId>
147                                 <version>0.5.1-SNAPSHOT</version>
148                         </dependency>
149                         <dependency>
150                                 <groupId>org.opendaylight.yangtools</groupId>
151                                 <artifactId>yang-binding</artifactId>
152                                 <version>0.6.2-SNAPSHOT</version>
153                         </dependency>
154                         <dependency>
155                                 <groupId>org.opendaylight.yangtools</groupId>
156                                 <artifactId>yang-common</artifactId>
157                                 <version>0.6.2-SNAPSHOT</version>
158                         </dependency>
159                         <dependency>
160                                 <groupId>org.opendaylight.yangtools</groupId>
161                                 <artifactId>yang-data-api</artifactId>
162                                 <version>0.6.2-SNAPSHOT</version>
163                         </dependency>
164                         <dependency>
165                                 <groupId>org.opendaylight.yangtools</groupId>
166                                 <artifactId>yang-model-api</artifactId>
167                                 <version>0.6.2-SNAPSHOT</version>
168                         </dependency>
169                         <dependency>
170                                 <groupId>org.opendaylight.yangtools</groupId>
171                                 <artifactId>yang-data-util</artifactId>
172                                 <version>0.6.2-SNAPSHOT</version>
173                         </dependency>
174                         <dependency>
175                                 <groupId>org.opendaylight.yangtools.model</groupId>
176                                 <artifactId>ietf-inet-types</artifactId>
177                                 <version>2010.09.24.4-SNAPSHOT</version>
178                         </dependency>
179                         <dependency>
180                                 <groupId>org.opendaylight.yangtools.model</groupId>
181                                 <artifactId>ietf-yang-types</artifactId>
182                                 <version>2010.09.24.4-SNAPSHOT</version>
183                         </dependency>
184                         <dependency>
185                                 <groupId>com.google.guava</groupId>
186                                 <artifactId>guava</artifactId>
187                                 <version>${guava.version}</version>
188                         </dependency>
189                         <dependency>
190                                 <groupId>org.opendaylight.controller</groupId>
191                                 <artifactId>sal</artifactId>
192                                 <version>0.8.1-SNAPSHOT</version>
193                         </dependency>
194                         <dependency>
195                                 <groupId>junit</groupId>
196                                 <artifactId>junit</artifactId>
197                                 <version>4.8.1</version>
198                         </dependency>
199                         <dependency>
200                                 <groupId>org.hamcrest</groupId>
201                                 <artifactId>hamcrest-core</artifactId>
202                                 <version>1.3</version>
203                         </dependency>
204                         <dependency>
205                                 <groupId>org.jmock</groupId>
206                                 <artifactId>jmock-junit4</artifactId>
207                                 <version>2.6.0</version>
208                         </dependency>
209                         <dependency>
210                                 <groupId>org.jmock</groupId>
211                                 <artifactId>jmock-legacy</artifactId>
212                                 <version>2.6.0</version>
213                         </dependency>
214                         <dependency>
215                                 <groupId>junit-addons</groupId>
216                                 <artifactId>junit-addons</artifactId>
217                                 <version>1.4</version>
218                         </dependency>
219                         <dependency>
220                                 <groupId>equinoxSDK381</groupId>
221                                 <artifactId>org.eclipse.osgi</artifactId>
222                                 <version>3.8.1.v20120830-144521</version>
223                         </dependency>
224                         <dependency>
225                                 <groupId>org.opendaylight.controller</groupId>
226                                 <artifactId>sal-binding-api</artifactId>
227                                 <version>${mdsal.version}</version>
228                         </dependency>
229                         <dependency>
230                                 <groupId>org.opendaylight.controller</groupId>
231                                 <artifactId>sal-common-util</artifactId>
232                                 <version>${mdsal.version}</version>
233                         </dependency>
234                         <dependency>
235                                 <groupId>org.opendaylight.controller</groupId>
236                                 <artifactId>config-api</artifactId>
237                                 <version>0.2.5-SNAPSHOT</version>
238                         </dependency>
239             <dependency>
240               <groupId>org.opendaylight.lispflowmapping</groupId>
241               <artifactId>mappingservice.yangmodel</artifactId>
242               <version>${lispflowmapping.version}</version>
243             </dependency>
244             <dependency>
245               <groupId>org.opendaylight.lispflowmapping</groupId>
246               <artifactId>mappingservice.api</artifactId>
247               <version>${lispflowmapping.version}</version>
248             </dependency>
249             <dependency>
250               <groupId>org.opendaylight.lispflowmapping</groupId>
251               <artifactId>mappingservice.config</artifactId>
252               <version>${lispflowmapping.version}</version>
253             </dependency>
254             <dependency>
255               <groupId>org.opendaylight.lispflowmapping</groupId>
256               <artifactId>mappingservice.implementation</artifactId>
257               <version>${lispflowmapping.version}</version>
258             </dependency>
259             <dependency>
260                 <groupId>org.opendaylight.lispflowmapping</groupId>
261                 <artifactId>mappingservice.clusterdao</artifactId>
262                 <version>${lispflowmapping.version}</version>
263             </dependency>
264             <dependency>
265               <groupId>org.opendaylight.lispflowmapping</groupId>
266               <artifactId>mappingservice.southbound</artifactId>
267               <version>${lispflowmapping.version}</version>
268             </dependency>
269             <dependency>
270               <groupId>org.opendaylight.lispflowmapping</groupId>
271               <artifactId>mappingservice.northbound</artifactId>
272               <version>${lispflowmapping.version}</version>
273             </dependency>
274                 <dependency>
275                         <groupId>org.opendaylight.lispflowmapping</groupId>
276                         <artifactId>common.unittest.tools</artifactId>
277                         <version>${lispflowmapping.version}</version>
278                         <scope>test</scope>
279                 </dependency>
280                 <dependency>
281                         <groupId>org.opendaylight.lispflowmapping</groupId>
282                         <artifactId>common.build.tools</artifactId>
283                         <version>${lispflowmapping.version}</version>
284                 </dependency>
285                 <dependency>
286                         <groupId>org.opendaylight.lispflowmapping</groupId>
287                         <artifactId>lispflowmapping-code-commons</artifactId>
288                         <version>${lispflowmapping.version}</version>
289                 </dependency>
290                 <dependency>
291                         <groupId>org.opendaylight.lispflowmapping</groupId>
292                         <artifactId>lispflowmapping-commons</artifactId>
293                         <version>${lispflowmapping.version}</version>
294                 </dependency>
295                 </dependencies>
296         </dependencyManagement>
297
298         <reporting>
299                 <excludeDefaults>true</excludeDefaults>
300                 <outputDirectory>${project.build.directory}/site</outputDirectory>
301                 <plugins>
302                         <plugin>
303                                 <groupId>org.apache.maven.plugins</groupId>
304                                 <artifactId>maven-project-info-reports-plugin</artifactId>
305                                 <version>${projectinfo}</version>
306                                 <configuration>
307                                         <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
308                                         <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
309                                 </configuration>
310                                 <reportSets>
311                                         <reportSet>
312                                                 <reports>
313                                                         <report>index</report>
314                                                         <report>project-team</report>
315                                                         <report>license</report>
316                                                         <report>mailing-list</report>
317                                                         <report>plugin-management</report>
318                                                         <report>cim</report>
319                                                         <report>issue-tracking</report>
320                                                         <report>scm</report>
321                                                         <report>summary</report>
322                                                 </reports>
323                                         </reportSet>
324                                 </reportSets>
325                         </plugin>
326                         <plugin>
327                                 <groupId>org.apache.maven.plugins</groupId>
328                                 <artifactId>maven-jxr-plugin</artifactId>
329                                 <version>2.3</version>
330                                 <configuration>
331                                         <aggregate>true</aggregate>
332                                         <linkJavadoc>true</linkJavadoc>
333                                 </configuration>
334                         </plugin>
335                         <plugin>
336                                 <groupId>org.apache.maven.plugins</groupId>
337                                 <artifactId>maven-javadoc-plugin</artifactId>
338                                 <version>2.8.1</version>
339                                 <configuration>
340                                         <doclet>org.jboss.apiviz.APIviz</doclet>
341                                         <docletArtifact>
342                                                 <groupId>org.jboss.apiviz</groupId>
343                                                 <artifactId>apiviz</artifactId>
344                                                 <version>1.3.2.GA</version>
345                                         </docletArtifact>
346                                         <finalName>${project.artifactId}-${build.suffix}</finalName>
347                                         <useStandardDocletOptions>true</useStandardDocletOptions>
348                                         <charset>UTF-8</charset>
349                                         <encoding>UTF-8</encoding>
350                                         <docencoding>UTF-8</docencoding>
351                                         <breakiterator>true</breakiterator>
352                                         <version>true</version>
353                                         <author>true</author>
354                                         <keywords>true</keywords>
355                                         <excludePackageNames>*.internal:edu.uci.*</excludePackageNames>
356                                 </configuration>
357                         </plugin>
358                 </plugins>
359         </reporting>
360         <build>
361                 <pluginManagement>
362                         <plugins>
363                         <plugin>
364           <groupId>org.apache.maven.plugins</groupId>
365           <artifactId>maven-release-plugin</artifactId>
366           <version>${releaseplugin.version}</version>
367         </plugin>
368                                 <plugin>
369                                         <groupId>org.jacoco</groupId>
370                                         <artifactId>jacoco-maven-plugin</artifactId>
371                                         <version>${jacoco.version}</version>
372                                 </plugin>
373                                 <plugin>
374                                         <groupId>org.apache.felix</groupId>
375                                         <artifactId>maven-bundle-plugin</artifactId>
376                                         <version>2.3.6</version>
377                                         <extensions>true</extensions>
378                                         <configuration>
379                                                 <manifestLocation>${project.basedir}/META-INF</manifestLocation>
380                                         </configuration>
381                                 </plugin>
382                                 <plugin>
383                                         <groupId>org.apache.maven.plugins</groupId>
384                                         <artifactId>maven-assembly-plugin</artifactId>
385                                         <version>2.4</version>
386                                 </plugin>
387                                 <plugin>
388                                         <groupId>org.apache.maven.plugins</groupId>
389                                         <artifactId>maven-compiler-plugin</artifactId>
390                                         <version>2.3.2</version>
391                                         <configuration>
392                                                 <source>1.7</source>
393                                                 <target>1.7</target>
394                                         </configuration>
395                                 </plugin>
396                                 <plugin>
397                                         <groupId>org.apache.maven.plugins</groupId>
398                                         <artifactId>maven-dependency-plugin</artifactId>
399                                         <version>2.8</version>
400                                 </plugin>
401                                 <plugin>
402                                         <groupId>org.apache.maven.plugins</groupId>
403                                         <artifactId>maven-surefire-plugin</artifactId>
404                                         <version>2.14.1</version>
405                                 </plugin>
406                                 <plugin>
407                                         <groupId>org.opendaylight.yangtools</groupId>
408                                         <artifactId>yang-maven-plugin</artifactId>
409                                         <version>0.6.2-SNAPSHOT</version>
410                                         <executions>
411                                                 <execution>
412                                                         <goals>
413                                                                 <goal>generate-sources</goal>
414                                                         </goals>
415                                                         <configuration>
416                                                                 <yangFilesRootDir>src/main/yang</yangFilesRootDir>
417                                                                 <codeGenerators>
418                                                                         <generator>
419                                                                                 <codeGeneratorClass>
420                                                                                         org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl
421                                                                                 </codeGeneratorClass>
422                                                                                 <outputBaseDir>
423                                                                                         target/generated-sources/sal
424                                                                                 </outputBaseDir>
425                                                                         </generator>
426                                                                 </codeGenerators>
427                                                                 <inspectDependencies>true</inspectDependencies>
428                                                         </configuration>
429                                                 </execution>
430                                         </executions>
431                                         <dependencies>
432                                                 <dependency>
433                                                         <groupId>org.opendaylight.yangtools</groupId>
434                                                         <artifactId>maven-sal-api-gen-plugin</artifactId>
435                                                         <version>0.6.2-SNAPSHOT</version>
436                                                         <type>jar</type>
437                                                 </dependency>
438                                         </dependencies>
439                                 </plugin>
440                                 <plugin>
441                                         <groupId>org.codehaus.mojo</groupId>
442                                         <artifactId>build-helper-maven-plugin</artifactId>
443                                         <version>1.7</version>
444                                         <executions>
445                                                 <execution>
446                                                         <phase>generate-sources</phase>
447                                                         <goals>
448                                                                 <goal>add-source</goal>
449                                                         </goals>
450                                                         <configuration>
451                                                                 <sources>
452                                                                         <source>target/generated-sources/sal</source>
453                                                                 </sources>
454                                                         </configuration>
455                                                 </execution>
456                                         </executions>
457                                 </plugin>
458                                 <plugin>
459                                         <groupId>org.eclipse.m2e</groupId>
460                                         <artifactId>lifecycle-mapping</artifactId>
461                                         <version>1.0.0</version>
462                                         <configuration>
463                                                 <lifecycleMappingMetadata>
464                                                         <pluginExecutions>
465                                                                 <pluginExecution>
466                                                                         <pluginExecutionFilter>
467                                                                                 <groupId>org.codehaus.mojo</groupId>
468                                                                                 <artifactId>properties-maven-plugin</artifactId>
469                                                                                 <versionRange>[0.0,)</versionRange>
470                                                                                 <goals>
471                                                                                         <goal>set-system-properties</goal>
472                                                                                 </goals>
473                                                                         </pluginExecutionFilter>
474                                                                         <action>
475                                                                                 <ignore />
476                                                                         </action>
477                                                                 </pluginExecution>
478                                                                 <pluginExecution>
479                                                                         <pluginExecutionFilter>
480                                                                                 <groupId>org.codehaus.enunciate</groupId>
481                                                                                 <artifactId>maven-enunciate-plugin</artifactId>
482                                                                                 <versionRange>[0.0,)</versionRange>
483                                                                                 <goals>
484                                                                                         <goal>docs</goal>
485                                                                                 </goals>
486                                                                         </pluginExecutionFilter>
487                                                                         <action>
488                                                                                 <ignore />
489                                                                         </action>
490                                                                 </pluginExecution>
491                                                                 <pluginExecution>
492                                                                         <pluginExecutionFilter>
493                                                                                 <groupId>org.jacoco</groupId>
494                                                                                 <artifactId>jacoco-maven-plugin</artifactId>
495                                                                                 <versionRange>[0.0,)</versionRange>
496                                                                                 <goals>
497                                                                                         <goal>prepare-agent</goal>
498                                                                                         <goal>pre-test</goal>
499                                                                                         <goal>post-test</goal>
500                                                                                 </goals>
501                                                                         </pluginExecutionFilter>
502                                                                         <action>
503                                                                                 <ignore />
504                                                                         </action>
505                                                                 </pluginExecution>
506                                                                 <pluginExecution>
507                                                                         <pluginExecutionFilter>
508                                                                                 <groupId>org.ops4j.pax.exam</groupId>
509                                                                                 <artifactId>maven-paxexam-plugin</artifactId>
510                                                                                 <versionRange>[1.2.4,)</versionRange>
511                                                                                 <goals>
512                                                                                         <goal>generate-depends-file</goal>
513                                                                                 </goals>
514                                                                         </pluginExecutionFilter>
515                                                                         <action>
516                                                                                 <ignore />
517                                                                         </action>
518                                                                 </pluginExecution>
519                                                                 <pluginExecution>
520                                                                         <pluginExecutionFilter>
521                                                                                 <groupId>org.apache.maven.plugins</groupId>
522                                                                                 <artifactId>maven-checkstyle-plugin</artifactId>
523                                                                                 <versionRange>[2.0,)</versionRange>
524                                                                                 <goals>
525                                                                                         <goal>check</goal>
526                                                                                 </goals>
527                                                                         </pluginExecutionFilter>
528                                                                         <action>
529                                                                                 <ignore />
530                                                                         </action>
531                                                                 </pluginExecution>
532                                                                 <pluginExecution>
533                                                                         <pluginExecutionFilter>
534                                                                                 <groupId>org.opendaylight.yangtools</groupId>
535                                                                                 <artifactId>yang-maven-plugin</artifactId>
536                                                                                 <versionRange>[0.5,)</versionRange>
537                                                                                 <goals>
538                                                                                         <goal>generate-sources </goal>
539                                                                                 </goals>
540                                                                         </pluginExecutionFilter>
541                                                                         <action>
542                                                                                 <ignore />
543                                                                         </action>
544                                                                 </pluginExecution>
545                                                         </pluginExecutions>
546                                                 </lifecycleMappingMetadata>
547                                         </configuration>
548                                 </plugin>
549                                 <plugin>
550                                         <groupId>org.codehaus.enunciate</groupId>
551                                         <artifactId>maven-enunciate-plugin</artifactId>
552                                         <version>${enunciate.version}</version>
553                                         <configuration>
554                                                 <configFile>enunciate.xml</configFile>
555                                         </configuration>
556                                         <executions>
557                                                 <execution>
558                                                         <goals>
559                                                                 <goal>docs</goal>
560                                                         </goals>
561                                                 </execution>
562                                         </executions>
563                                 </plugin>
564                                 <plugin>
565                                         <groupId>org.apache.maven.plugins</groupId>
566                                         <artifactId>maven-javadoc-plugin</artifactId>
567                                         <version>2.8.1</version>
568                                         <configuration>
569                                                 <doclet>org.jboss.apiviz.APIviz</doclet>
570                                                 <docletArtifact>
571                                                         <groupId>org.jboss.apiviz</groupId>
572                                                         <artifactId>apiviz</artifactId>
573                                                         <version>1.3.2.GA</version>
574                                                 </docletArtifact>
575                                                 <finalName>${project.artifactId}-1.0.0</finalName>
576                                                 <useStandardDocletOptions>true</useStandardDocletOptions>
577                                                 <charset>UTF-8</charset>
578                                                 <encoding>UTF-8</encoding>
579                                                 <docencoding>UTF-8</docencoding>
580                                                 <breakiterator>true</breakiterator>
581                                                 <version>true</version>
582                                                 <author>true</author>
583                                                 <keywords>true</keywords>
584                                                 <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
585                                                 <failOnError>false</failOnError>
586                                         </configuration>
587                                 </plugin>
588                                 <plugin>
589                                         <groupId>org.apache.maven.plugins</groupId>
590                                         <artifactId>maven-jxr-plugin</artifactId>
591                                         <version>2.3</version>
592                                         <configuration>
593                                                 <aggregate>true</aggregate>
594                                                 <linkJavadoc>true</linkJavadoc>
595                                                 <javadocDir>target/apidocs</javadocDir>
596                                         </configuration>
597                                 </plugin>
598                         </plugins>
599                 </pluginManagement>
600                 <plugins>
601      <plugin>
602        <groupId>org.jacoco</groupId>
603        <artifactId>jacoco-maven-plugin</artifactId>
604        <configuration>
605          <includes>
606            <include>org.opendaylight.lispflowmapping.*</include> 
607          </includes>
608        </configuration>
609        <executions>
610          <execution>
611            <id>pre-test</id>
612            <goals>
613              <goal>prepare-agent</goal>
614            </goals>
615          </execution>
616          <execution>
617            <id>post-test</id>
618            <goals>
619              <goal>report</goal>
620            </goals>
621            <phase>test</phase>
622          </execution>
623        </executions>
624      </plugin>
625    </plugins>
626         </build>
627
628 </project>