Move HashMapDb to its own bundle
[lispflowmapping.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/maven-v4_0_0.xsd">
3   <modelVersion>4.0.0</modelVersion>
4
5   <!-- NOTE: Tags we removed: SCM: We don't use maven to pull and push code, so
6              the SCM section does not appear to be needed. See http://maven.apache.org/scm/maven-scm-plugin/usage.html
7
8        NOTE: Our ultimate goal is to remove this pom, and move everything in here
9              up to ODL parent or the root of this project, depending on
10              its relevance. Only the logical root should reference this file. -->
11
12   <parent>
13     <!-- We want to inherit of ODL parent so we can inherit common third party
14          versions etc instead of redefining them here. Also we get some common definitions
15          for plugin configuration etc. -->
16     <groupId>org.opendaylight.odlparent</groupId>
17     <artifactId>odlparent</artifactId>
18     <version>1.6.0-SNAPSHOT</version>
19     <relativePath/>
20   </parent>
21
22   <groupId>org.opendaylight.lispflowmapping</groupId>
23   <artifactId>lispflowmapping-commons</artifactId>
24   <version>1.3.0-SNAPSHOT</version>
25   <packaging>pom</packaging>
26   <name>Parent POM</name>
27
28   <properties>
29     <branding.version>1.2.0-SNAPSHOT</branding.version>
30     <build.suffix>1.0.0</build.suffix>
31     <clustering.services.version>0.7.0-SNAPSHOT</clustering.services.version>
32     <config.version>0.4.0-SNAPSHOT</config.version>
33     <feature.test.version>0.8.0-SNAPSHOT</feature.test.version>
34     <forwardingrulesmanager.version>0.5.0</forwardingrulesmanager.version>
35     <ietf-inet-types.version>2010.09.24.8-SNAPSHOT</ietf-inet-types.version>
36     <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
37     <karaf.empty.version>1.6.0-SNAPSHOT</karaf.empty.version>
38     <karaf.resources.version>1.6.0-SNAPSHOT</karaf.resources.version>
39     <lispflowmapping.version>1.3.0-SNAPSHOT</lispflowmapping.version>
40     <mdsal.version>1.3.0-SNAPSHOT</mdsal.version>
41     <neutron.version>0.6.0-SNAPSHOT</neutron.version>
42     <nexusproxy>http://nexus.opendaylight.org/content</nexusproxy>
43     <nsf.version>0.6.0-SNAPSHOT</nsf.version>
44     <sal.version>0.10.0-SNAPSHOT</sal.version>
45     <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
46     <sonar.jacoco.itReportPath>target/jacoco-it.exec</sonar.jacoco.itReportPath>
47     <sonar.jacoco.reportPath>target/jacoco.exec</sonar.jacoco.reportPath>
48     <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
49     <statisticsmanager.version>0.5.0</statisticsmanager.version>
50     <xtend.dstdir>src/main/xtend-gen</xtend.dstdir>
51     <yang.src.path>src/main/yang</yang.src.path>
52     <yangtools.version>0.8.0-SNAPSHOT</yangtools.version>
53   </properties>
54
55   <dependencyManagement>
56     <dependencies>
57       <!-- NOTE: The "Type" jar is considered default. You only need to specify
58                  the type when it is something other than jar. -->
59       <dependency>
60         <groupId>junit-addons</groupId>
61         <artifactId>junit-addons</artifactId>
62         <version>1.4</version>
63       </dependency>
64       <dependency>
65         <groupId>org.apache.karaf.features</groupId>
66         <artifactId>framework</artifactId>
67         <version>${karaf.version}</version>
68         <type>kar</type>
69       </dependency>
70       <dependency>
71         <groupId>org.hamcrest</groupId>
72         <artifactId>hamcrest-core</artifactId>
73         <version>${hamcrest.version}</version>
74       </dependency>
75       <dependency>
76         <groupId>org.jmock</groupId>
77         <artifactId>jmock-junit4</artifactId>
78         <version>2.6.0</version>
79       </dependency>
80       <dependency>
81         <groupId>org.jmock</groupId>
82         <artifactId>jmock-legacy</artifactId>
83         <version>2.6.0</version>
84       </dependency>
85       <dependency>
86         <groupId>org.opendaylight.controller</groupId>
87         <artifactId>config-api</artifactId>
88         <version>0.4.0-SNAPSHOT</version>
89       </dependency>
90       <dependency>
91         <groupId>org.opendaylight.controller</groupId>
92         <artifactId>config-manager</artifactId>
93         <version>${config.version}</version>
94       </dependency>
95       <dependency>
96         <groupId>org.opendaylight.controller</groupId>
97         <artifactId>config-util</artifactId>
98         <version>0.4.0-SNAPSHOT</version>
99       </dependency>
100       <dependency>
101         <groupId>org.opendaylight.controller</groupId>
102         <artifactId>features-mdsal</artifactId>
103         <version>${mdsal.version}</version>
104         <classifier>features</classifier>
105         <type>xml</type>
106       </dependency>
107       <dependency>
108         <groupId>org.opendaylight.controller</groupId>
109         <artifactId>features-restconf</artifactId>
110         <version>${mdsal.version}</version>
111         <classifier>features</classifier>
112         <type>xml</type>
113       </dependency>
114       <dependency>
115         <groupId>org.opendaylight.controller</groupId>
116         <artifactId>features-netconf-connector</artifactId>
117         <version>${mdsal.version}</version>
118         <classifier>features</classifier>
119         <type>xml</type>
120       </dependency>
121       <dependency>
122         <groupId>org.opendaylight.neutron</groupId>
123         <artifactId>features-neutron</artifactId>
124         <version>${neutron.version}</version>
125         <classifier>features</classifier>
126         <type>xml</type>
127       </dependency>
128       <dependency>
129         <groupId>org.opendaylight.controller</groupId>
130         <artifactId>features-nsf</artifactId>
131         <version>${nsf.version}</version>
132         <classifier>features</classifier>
133         <type>xml</type>
134       </dependency>
135
136       <dependency>
137         <groupId>org.opendaylight.controller</groupId>
138         <artifactId>karaf.branding</artifactId>
139         <version>${branding.version}</version>
140         <scope>compile</scope>
141       </dependency>
142       <dependency>
143         <groupId>org.opendaylight.controller</groupId>
144         <artifactId>netty-event-executor-config</artifactId>
145         <version>${config.version}</version>
146       </dependency>
147       <dependency>
148         <groupId>org.opendaylight.controller</groupId>
149         <artifactId>opendaylight-karaf-empty</artifactId>
150         <version>${karaf.empty.version}</version>
151         <type>zip</type>
152       </dependency>
153
154       <dependency>
155         <groupId>org.opendaylight.controller</groupId>
156         <artifactId>opendaylight-karaf-resources</artifactId>
157         <version>${karaf.resources.version}</version>
158       </dependency>
159       <dependency>
160         <groupId>org.opendaylight.controller</groupId>
161         <artifactId>sal-binding-api</artifactId>
162         <version>${mdsal.version}</version>
163       </dependency>
164       <dependency>
165         <groupId>org.opendaylight.controller</groupId>
166         <artifactId>sal-binding-broker-impl</artifactId>
167         <version>${mdsal.version}</version>
168       </dependency>
169       <dependency>
170         <groupId>org.opendaylight.controller</groupId>
171         <artifactId>sal-binding-config</artifactId>
172         <version>${mdsal.version}</version>
173       </dependency>
174       <dependency>
175         <groupId>org.opendaylight.controller</groupId>
176         <artifactId>sal-broker-impl</artifactId>
177         <version>${mdsal.version}</version>
178       </dependency>
179       <dependency>
180         <groupId>org.opendaylight.controller</groupId>
181         <artifactId>sal-common-util</artifactId>
182         <version>${mdsal.version}</version>
183       </dependency>
184       <dependency>
185         <groupId>org.opendaylight.controller</groupId>
186         <artifactId>sal-netconf-connector</artifactId>
187         <version>${mdsal.version}</version>
188       </dependency>
189       <dependency>
190         <groupId>org.opendaylight.controller</groupId>
191         <artifactId>threadpool-config-api</artifactId>
192         <version>${config.version}</version>
193       </dependency>
194       <dependency>
195         <groupId>org.opendaylight.controller</groupId>
196         <artifactId>threadpool-config-impl</artifactId>
197         <version>0.4.0-SNAPSHOT</version>
198       </dependency>
199       <dependency>
200         <groupId>org.opendaylight.lispflowmapping</groupId>
201         <artifactId>common.build.tools</artifactId>
202         <version>${lispflowmapping.version}</version>
203       </dependency>
204       <dependency>
205         <groupId>org.opendaylight.lispflowmapping</groupId>
206         <artifactId>lispflowmapping-code-commons</artifactId>
207         <version>${lispflowmapping.version}</version>
208       </dependency>
209       <dependency>
210         <groupId>org.opendaylight.lispflowmapping</groupId>
211         <artifactId>lispflowmapping-commons</artifactId>
212         <version>${lispflowmapping.version}</version>
213       </dependency>
214       <dependency>
215         <groupId>org.opendaylight.lispflowmapping</groupId>
216         <artifactId>mappingservice.api</artifactId>
217         <version>${lispflowmapping.version}</version>
218       </dependency>
219       <dependency>
220         <groupId>org.opendaylight.lispflowmapping</groupId>
221         <artifactId>mappingservice.clusterdao</artifactId>
222         <version>${lispflowmapping.version}</version>
223       </dependency>
224       <dependency>
225         <groupId>org.opendaylight.lispflowmapping</groupId>
226         <artifactId>mappingservice.config</artifactId>
227         <version>${lispflowmapping.version}</version>
228       </dependency>
229       <dependency>
230         <groupId>org.opendaylight.lispflowmapping</groupId>
231         <artifactId>mappingservice.implementation</artifactId>
232         <version>${lispflowmapping.version}</version>
233       </dependency>
234       <dependency>
235         <groupId>org.opendaylight.lispflowmapping</groupId>
236         <artifactId>mappingservice.inmemorydb</artifactId>
237         <version>${lispflowmapping.version}</version>
238       </dependency>
239       <dependency>
240         <groupId>org.opendaylight.lispflowmapping</groupId>
241         <artifactId>mappingservice.netconf</artifactId>
242         <version>${lispflowmapping.version}</version>
243       </dependency>
244       <dependency>
245         <groupId>org.opendaylight.lispflowmapping</groupId>
246         <artifactId>mappingservice.neutron</artifactId>
247         <version>${lispflowmapping.version}</version>
248       </dependency>
249       <dependency>
250         <groupId>org.opendaylight.lispflowmapping</groupId>
251         <artifactId>mappingservice.northbound</artifactId>
252         <version>${lispflowmapping.version}</version>
253       </dependency>
254       <dependency>
255         <groupId>org.opendaylight.lispflowmapping</groupId>
256         <artifactId>mappingservice.shell</artifactId>
257         <version>${lispflowmapping.version}</version>
258       </dependency>
259       <dependency>
260         <groupId>org.opendaylight.lispflowmapping</groupId>
261         <artifactId>mappingservice.southbound</artifactId>
262         <version>${lispflowmapping.version}</version>
263       </dependency>
264       <dependency>
265         <groupId>org.opendaylight.lispflowmapping</groupId>
266         <artifactId>mappingservice.yangmodel</artifactId>
267         <version>${lispflowmapping.version}</version>
268       </dependency>
269       <dependency>
270         <groupId>org.opendaylight.yangtools</groupId>
271         <artifactId>yang-binding</artifactId>
272         <version>0.8.0-SNAPSHOT</version>
273       </dependency>
274       <dependency>
275         <groupId>org.opendaylight.yangtools</groupId>
276         <artifactId>yang-common</artifactId>
277         <version>0.8.0-SNAPSHOT</version>
278       </dependency>
279       <dependency>
280         <groupId>org.opendaylight.yangtools</groupId>
281         <artifactId>yang-data-api</artifactId>
282         <version>0.8.0-SNAPSHOT</version>
283       </dependency>
284       <dependency>
285         <groupId>org.opendaylight.yangtools</groupId>
286         <artifactId>yang-data-impl</artifactId>
287         <version>${yangtools.version}</version>
288       </dependency>
289       <dependency>
290         <groupId>org.opendaylight.yangtools</groupId>
291         <artifactId>yang-data-util</artifactId>
292         <version>0.8.0-SNAPSHOT</version>
293       </dependency>
294       <dependency>
295         <groupId>org.opendaylight.yangtools</groupId>
296         <artifactId>yang-model-api</artifactId>
297         <version>0.8.0-SNAPSHOT</version>
298       </dependency>
299       <dependency>
300         <groupId>org.opendaylight.yangtools</groupId>
301         <artifactId>yang-parser-impl</artifactId>
302         <version>${yangtools.version}</version>
303       </dependency>
304       <dependency>
305         <groupId>org.opendaylight.yangtools.model</groupId>
306         <artifactId>ietf-inet-types</artifactId>
307         <version>${ietf-inet-types.version}</version>
308       </dependency>
309       <dependency>
310         <groupId>org.opendaylight.yangtools.model</groupId>
311         <artifactId>ietf-yang-types</artifactId>
312         <version>${ietf-inet-types.version}</version>
313       </dependency>
314       <dependency>
315         <groupId>org.apache.karaf.features</groupId>
316         <artifactId>standard</artifactId>
317         <version>${karaf.version}</version>
318         <classifier>features</classifier>
319         <type>xml</type>
320         <scope>runtime</scope>
321       </dependency>
322
323       <dependency>
324         <groupId>org.opendaylight.lispflowmapping</groupId>
325         <artifactId>features-lispflowmapping</artifactId>
326         <version>${lispflowmapping.version}</version>
327         <classifier>features</classifier>
328         <type>xml</type>
329         <scope>runtime</scope>
330       </dependency>
331       <dependency>
332         <groupId>org.opendaylight.lispflowmapping</groupId>
333         <artifactId>common.unittest.tools</artifactId>
334         <version>${lispflowmapping.version}</version>
335         <scope>test</scope>
336       </dependency>
337       <dependency>
338         <groupId>org.opendaylight.yangtools</groupId>
339         <artifactId>mockito-configuration</artifactId>
340         <version>${yangtools.version}</version>
341         <scope>test</scope>
342       </dependency>
343     </dependencies>
344   </dependencyManagement>
345   <build>
346     <pluginManagement>
347       <plugins>
348         <plugin>
349           <!-- This configures the sort pom plugin to sort properties, dependencies
350                etc during a build. It helps to ensure consistent poms that are easy to read.
351                While the configuration should exist at a root level it is still up to the
352                individual projects to invoke it by defining the plugin in the build->plugins
353                section. -->
354           <groupId>com.google.code.sortpom</groupId>
355           <artifactId>maven-sortpom-plugin</artifactId>
356           <version>2.2.1</version>
357           <configuration>
358             <createBackupFile>false</createBackupFile>
359             <encoding>${project.build.sourceEncoding}</encoding>
360             <keepBlankLines>true</keepBlankLines>
361             <lineSeparator>\n</lineSeparator>
362             <nrOfIndentSpace>2</nrOfIndentSpace>
363             <predefinedSortOrder>custom_1</predefinedSortOrder>
364             <sortDependencies>scope,groupId,artifactId</sortDependencies>
365             <sortPlugins>groupId,artifactId</sortPlugins>
366             <sortProperties>true</sortProperties>
367           </configuration>
368           <executions>
369             <execution>
370               <goals>
371                 <goal>sort</goal>
372               </goals>
373               <phase>verify</phase>
374             </execution>
375           </executions>
376         </plugin>
377         <plugin>
378           <groupId>org.apache.maven.plugins</groupId>
379           <artifactId>maven-assembly-plugin</artifactId>
380           <version>2.4</version>
381         </plugin>
382         <plugin>
383           <!-- TODO move up to ODL parent. -->
384           <!-- This is required to make sure that we delete the files which are
385                being generated under the src/main directory since by default only files
386                under target get cleaned up. Because the clean plugin is automatically invoked
387                you do NOT need to specify it in the build->plugin section. You would only
388                want to override this if you have additional folders which need to be cleaned
389                up. -->
390           <artifactId>maven-clean-plugin</artifactId>
391           <configuration>
392             <filesets>
393               <fileset>
394                 <directory>${xtend.dstdir}</directory>
395                 <includes>
396                   <include>**</include>
397                 </includes>
398               </fileset>
399               <fileset>
400                 <directory>${jmxGeneratorPath}</directory>
401                 <includes>
402                   <include>**</include>
403                 </includes>
404               </fileset>
405               <fileset>
406                 <directory>${salGeneratorPath}</directory>
407                 <includes>
408                   <include>**</include>
409                 </includes>
410               </fileset>
411             </filesets>
412           </configuration>
413         </plugin>
414         <plugin>
415           <!-- Configures the java doc generation. Generally you should not have
416                to override this unless you need to exclude other packages etc. -->
417           <groupId>org.apache.maven.plugins</groupId>
418           <artifactId>maven-javadoc-plugin</artifactId>
419           <configuration>
420             <doclet>org.jboss.apiviz.APIviz</doclet>
421             <docletArtifact>
422               <groupId>org.jboss.apiviz</groupId>
423               <artifactId>apiviz</artifactId>
424               <version>1.3.2.GA</version>
425             </docletArtifact>
426             <finalName>${project.artifactId}-${project.version}</finalName>
427             <useStandardDocletOptions>true</useStandardDocletOptions>
428             <charset>UTF-8</charset>
429             <encoding>UTF-8</encoding>
430             <docencoding>UTF-8</docencoding>
431             <breakiterator>true</breakiterator>
432             <version>true</version>
433             <author>true</author>
434             <keywords>true</keywords>
435             <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
436             <failOnError>false</failOnError>
437           </configuration>
438         </plugin>
439         <plugin>
440           <groupId>org.apache.maven.plugins</groupId>
441           <artifactId>maven-jxr-plugin</artifactId>
442           <version>2.3</version>
443           <configuration>
444             <aggregate>true</aggregate>
445             <linkJavadoc>true</linkJavadoc>
446             <javadocDir>target/apidocs</javadocDir>
447           </configuration>
448         </plugin>
449         <plugin>
450           <!-- TODO: This should be in ODL parent -->
451           <groupId>org.codehaus.mojo</groupId>
452           <artifactId>build-helper-maven-plugin</artifactId>
453           <executions>
454             <execution>
455               <id>add-source</id>
456               <goals>
457                 <goal>add-source</goal>
458               </goals>
459               <phase>generate-sources</phase>
460               <configuration>
461                 <sources>
462                   <source>${yang.src.path}</source>
463                   <source>${jmxGeneratorPath}</source>
464                   <source>${salGeneratorPath}</source>
465                   <source>${xtend.dstdir}</source>
466                 </sources>
467               </configuration>
468             </execution>
469           </executions>
470         </plugin>
471
472         <plugin>
473           <groupId>org.eclipse.m2e</groupId>
474           <artifactId>lifecycle-mapping</artifactId>
475           <version>1.0.0</version>
476           <configuration>
477             <lifecycleMappingMetadata>
478               <pluginExecutions>
479                 <pluginExecution>
480                   <pluginExecutionFilter>
481                     <groupId>org.codehaus.mojo</groupId>
482                     <artifactId>properties-maven-plugin</artifactId>
483                     <versionRange>[0.0,)</versionRange>
484                     <goals>
485                       <goal>set-system-properties</goal>
486                     </goals>
487                   </pluginExecutionFilter>
488                   <action>
489                     <ignore></ignore>
490                   </action>
491                 </pluginExecution>
492                 <pluginExecution>
493                   <pluginExecutionFilter>
494                     <groupId>org.jacoco</groupId>
495                     <artifactId>jacoco-maven-plugin</artifactId>
496                     <versionRange>[0.0,)</versionRange>
497                     <goals>
498                       <goal>prepare-agent</goal>
499                       <goal>pre-test</goal>
500                       <goal>post-test</goal>
501                     </goals>
502                   </pluginExecutionFilter>
503                   <action>
504                     <ignore></ignore>
505                   </action>
506                 </pluginExecution>
507                 <pluginExecution>
508                   <pluginExecutionFilter>
509                     <groupId>org.ops4j.pax.exam</groupId>
510                     <artifactId>maven-paxexam-plugin</artifactId>
511                     <versionRange>[1.2.4,)</versionRange>
512                     <goals>
513                       <goal>generate-depends-file</goal>
514                     </goals>
515                   </pluginExecutionFilter>
516                   <action>
517                     <ignore></ignore>
518                   </action>
519                 </pluginExecution>
520                 <pluginExecution>
521                   <pluginExecutionFilter>
522                     <groupId>org.apache.maven.plugins</groupId>
523                     <artifactId>maven-checkstyle-plugin</artifactId>
524                     <versionRange>[2.0,)</versionRange>
525                     <goals>
526                       <goal>check</goal>
527                     </goals>
528                   </pluginExecutionFilter>
529                   <action>
530                     <ignore></ignore>
531                   </action>
532                 </pluginExecution>
533                 <pluginExecution>
534                   <pluginExecutionFilter>
535                     <groupId>org.opendaylight.yangtools</groupId>
536                     <artifactId>yang-maven-plugin</artifactId>
537                     <versionRange>[0.5,)</versionRange>
538                     <goals>
539                       <goal>generate-sources</goal>
540                     </goals>
541                   </pluginExecutionFilter>
542                   <action>
543                     <ignore></ignore>
544                   </action>
545                 </pluginExecution>
546               </pluginExecutions>
547             </lifecycleMappingMetadata>
548           </configuration>
549         </plugin>
550         <plugin>
551           <!-- here we are defining the default generators for yang You may need
552                to override this in child poms if you want to define additional generators,
553                such as the JMX generator etc. -->
554           <groupId>org.opendaylight.yangtools</groupId>
555           <artifactId>yang-maven-plugin</artifactId>
556           <version>${yangtools.version}</version>
557           <dependencies>
558             <dependency>
559               <groupId>org.opendaylight.yangtools</groupId>
560               <artifactId>maven-sal-api-gen-plugin</artifactId>
561               <version>${yangtools.version}</version>
562             </dependency>
563           </dependencies>
564           <executions>
565             <execution>
566               <goals>
567                 <goal>generate-sources</goal>
568               </goals>
569               <configuration>
570                 <yangFilesRootDir>${yang.src.path}</yangFilesRootDir>
571                 <codeGenerators>
572                   <generator>
573                     <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
574                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
575                   </generator>
576                 </codeGenerators>
577                 <inspectDependencies>true</inspectDependencies>
578               </configuration>
579             </execution>
580           </executions>
581         </plugin>
582       </plugins>
583     </pluginManagement>
584     <plugins>
585       <plugin>
586         <groupId>org.jacoco</groupId>
587         <artifactId>jacoco-maven-plugin</artifactId>
588         <executions>
589           <execution>
590             <id>prepare-ut-agent</id>
591             <phase>process-test-classes</phase>
592             <goals>
593               <goal>prepare-agent</goal>
594             </goals>
595             <configuration>
596               <destFile>${sonar.jacoco.reportPath}</destFile>
597             </configuration>
598           </execution>
599           <execution>
600             <id>prepare-it-agent</id>
601             <phase>pre-integration-test</phase>
602             <goals>
603               <goal>prepare-agent</goal>
604             </goals>
605             <configuration>
606               <destFile>${sonar.jacoco.itReportPath}</destFile>
607             </configuration>
608           </execution>
609            <execution>
610              <id>post-test</id>
611              <phase>test</phase>
612              <goals>
613                <goal>report</goal>
614              </goals>
615            </execution>
616         </executions>
617       </plugin>
618       <plugin>
619         <groupId>org.codehaus.mojo</groupId>
620         <artifactId>build-helper-maven-plugin</artifactId>
621       </plugin>
622     </plugins>
623   </build>
624
625   <reporting>
626     <outputDirectory>${project.build.directory}/site</outputDirectory>
627     <excludeDefaults>true</excludeDefaults>
628     <plugins>
629       <plugin>
630         <groupId>org.apache.maven.plugins</groupId>
631         <artifactId>maven-javadoc-plugin</artifactId>
632         <version>2.8.1</version>
633         <configuration>
634           <doclet>org.jboss.apiviz.APIviz</doclet>
635           <docletArtifact>
636             <groupId>org.jboss.apiviz</groupId>
637             <artifactId>apiviz</artifactId>
638             <version>1.3.2.GA</version>
639           </docletArtifact>
640           <finalName>${project.artifactId}-${build.suffix}</finalName>
641           <useStandardDocletOptions>true</useStandardDocletOptions>
642           <charset>UTF-8</charset>
643           <encoding>UTF-8</encoding>
644           <docencoding>UTF-8</docencoding>
645           <breakiterator>true</breakiterator>
646           <version>true</version>
647           <author>true</author>
648           <keywords>true</keywords>
649           <excludePackageNames>*.internal:edu.uci.*</excludePackageNames>
650         </configuration>
651       </plugin>
652       <plugin>
653         <groupId>org.apache.maven.plugins</groupId>
654         <artifactId>maven-jxr-plugin</artifactId>
655         <version>2.3</version>
656         <configuration>
657           <aggregate>true</aggregate>
658           <linkJavadoc>true</linkJavadoc>
659         </configuration>
660       </plugin>
661       <plugin>
662         <groupId>org.apache.maven.plugins</groupId>
663         <artifactId>maven-project-info-reports-plugin</artifactId>
664         <version>${projectinfo}</version>
665         <configuration>
666           <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
667           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
668         </configuration>
669         <reportSets>
670           <reportSet>
671             <reports>
672               <report>index</report>
673               <report>project-team</report>
674               <report>license</report>
675               <report>mailing-list</report>
676               <report>plugin-management</report>
677               <report>cim</report>
678               <report>issue-tracking</report>
679               <report>scm</report>
680               <report>summary</report>
681             </reports>
682           </reportSet>
683         </reportSets>
684       </plugin>
685     </plugins>
686   </reporting>
687
688   <distributionManagement>
689     <!-- Note: We want the nexus proxy property here because want to enable
690          devs to upload this artifact using mvn deploy to other maven repositories. -->
691     <!-- OpenDayLight Released artifact -->
692     <repository>
693       <id>opendaylight-release</id>
694       <url>${nexusproxy}/repositories/opendaylight.release/</url>
695     </repository>
696     <!-- OpenDayLight Snapshot artifact -->
697     <snapshotRepository>
698       <id>opendaylight-snapshot</id>
699       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
700     </snapshotRepository>
701     <!-- Site deployment -->
702   </distributionManagement>
703
704 </project>