Cleanup mappingservice.yangmodel
[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>threadpool-config-api</artifactId>
187         <version>${config.version}</version>
188       </dependency>
189       <dependency>
190         <groupId>org.opendaylight.controller</groupId>
191         <artifactId>threadpool-config-impl</artifactId>
192         <version>0.4.0-SNAPSHOT</version>
193       </dependency>
194       <dependency>
195         <groupId>org.opendaylight.lispflowmapping</groupId>
196         <artifactId>common.build.tools</artifactId>
197         <version>${lispflowmapping.version}</version>
198       </dependency>
199       <dependency>
200         <groupId>org.opendaylight.lispflowmapping</groupId>
201         <artifactId>lispflowmapping-code-commons</artifactId>
202         <version>${lispflowmapping.version}</version>
203       </dependency>
204       <dependency>
205         <groupId>org.opendaylight.lispflowmapping</groupId>
206         <artifactId>lispflowmapping-commons</artifactId>
207         <version>${lispflowmapping.version}</version>
208       </dependency>
209       <dependency>
210         <groupId>org.opendaylight.lispflowmapping</groupId>
211         <artifactId>mappingservice.api</artifactId>
212         <version>${lispflowmapping.version}</version>
213       </dependency>
214       <dependency>
215         <groupId>org.opendaylight.lispflowmapping</groupId>
216         <artifactId>mappingservice.clusterdao</artifactId>
217         <version>${lispflowmapping.version}</version>
218       </dependency>
219       <dependency>
220         <groupId>org.opendaylight.lispflowmapping</groupId>
221         <artifactId>mappingservice.config</artifactId>
222         <version>${lispflowmapping.version}</version>
223       </dependency>
224       <dependency>
225         <groupId>org.opendaylight.lispflowmapping</groupId>
226         <artifactId>mappingservice.implementation</artifactId>
227         <version>${lispflowmapping.version}</version>
228       </dependency>
229       <dependency>
230         <groupId>org.opendaylight.lispflowmapping</groupId>
231         <artifactId>mappingservice.inmemorydb</artifactId>
232         <version>${lispflowmapping.version}</version>
233       </dependency>
234 <!--       <dependency>
235         <groupId>org.opendaylight.lispflowmapping</groupId>
236         <artifactId>mappingservice.netconf</artifactId>
237         <version>${lispflowmapping.version}</version>
238       </dependency> -->
239       <dependency>
240         <groupId>org.opendaylight.lispflowmapping</groupId>
241         <artifactId>mappingservice.neutron</artifactId>
242         <version>${lispflowmapping.version}</version>
243       </dependency>
244       <dependency>
245         <groupId>org.opendaylight.lispflowmapping</groupId>
246         <artifactId>mappingservice.northbound</artifactId>
247         <version>${lispflowmapping.version}</version>
248       </dependency>
249       <dependency>
250         <groupId>org.opendaylight.lispflowmapping</groupId>
251         <artifactId>mappingservice.shell</artifactId>
252         <version>${lispflowmapping.version}</version>
253       </dependency>
254       <dependency>
255         <groupId>org.opendaylight.lispflowmapping</groupId>
256         <artifactId>mappingservice.southbound</artifactId>
257         <version>${lispflowmapping.version}</version>
258       </dependency>
259       <dependency>
260         <groupId>org.opendaylight.lispflowmapping</groupId>
261         <artifactId>mappingservice.lisp-proto</artifactId>
262         <version>${lispflowmapping.version}</version>
263       </dependency>
264       <dependency>
265         <groupId>org.opendaylight.yangtools</groupId>
266         <artifactId>yang-binding</artifactId>
267         <version>0.8.0-SNAPSHOT</version>
268       </dependency>
269       <dependency>
270         <groupId>org.opendaylight.yangtools</groupId>
271         <artifactId>yang-common</artifactId>
272         <version>0.8.0-SNAPSHOT</version>
273       </dependency>
274       <dependency>
275         <groupId>org.opendaylight.yangtools</groupId>
276         <artifactId>yang-data-api</artifactId>
277         <version>0.8.0-SNAPSHOT</version>
278       </dependency>
279       <dependency>
280         <groupId>org.opendaylight.yangtools</groupId>
281         <artifactId>yang-data-impl</artifactId>
282         <version>${yangtools.version}</version>
283       </dependency>
284       <dependency>
285         <groupId>org.opendaylight.yangtools</groupId>
286         <artifactId>yang-data-util</artifactId>
287         <version>0.8.0-SNAPSHOT</version>
288       </dependency>
289       <dependency>
290         <groupId>org.opendaylight.yangtools</groupId>
291         <artifactId>yang-model-api</artifactId>
292         <version>0.8.0-SNAPSHOT</version>
293       </dependency>
294       <dependency>
295         <groupId>org.opendaylight.yangtools</groupId>
296         <artifactId>yang-parser-impl</artifactId>
297         <version>${yangtools.version}</version>
298       </dependency>
299       <dependency>
300         <groupId>org.opendaylight.yangtools.model</groupId>
301         <artifactId>ietf-inet-types</artifactId>
302         <version>${ietf-inet-types.version}</version>
303       </dependency>
304       <dependency>
305         <groupId>org.opendaylight.yangtools.model</groupId>
306         <artifactId>ietf-yang-types</artifactId>
307         <version>${ietf-inet-types.version}</version>
308       </dependency>
309       <dependency>
310         <groupId>org.apache.karaf.features</groupId>
311         <artifactId>standard</artifactId>
312         <version>${karaf.version}</version>
313         <classifier>features</classifier>
314         <type>xml</type>
315         <scope>runtime</scope>
316       </dependency>
317
318       <dependency>
319         <groupId>org.opendaylight.lispflowmapping</groupId>
320         <artifactId>features-lispflowmapping</artifactId>
321         <version>${lispflowmapping.version}</version>
322         <classifier>features</classifier>
323         <type>xml</type>
324         <scope>runtime</scope>
325       </dependency>
326       <dependency>
327         <groupId>org.opendaylight.lispflowmapping</groupId>
328         <artifactId>common.unittest.tools</artifactId>
329         <version>${lispflowmapping.version}</version>
330         <scope>test</scope>
331       </dependency>
332       <dependency>
333         <groupId>org.opendaylight.yangtools</groupId>
334         <artifactId>mockito-configuration</artifactId>
335         <version>${yangtools.version}</version>
336         <scope>test</scope>
337       </dependency>
338     </dependencies>
339   </dependencyManagement>
340   <build>
341     <pluginManagement>
342       <plugins>
343         <plugin>
344           <!-- This configures the sort pom plugin to sort properties, dependencies
345                etc during a build. It helps to ensure consistent poms that are easy to read.
346                While the configuration should exist at a root level it is still up to the
347                individual projects to invoke it by defining the plugin in the build->plugins
348                section. -->
349           <groupId>com.google.code.sortpom</groupId>
350           <artifactId>maven-sortpom-plugin</artifactId>
351           <version>2.2.1</version>
352           <configuration>
353             <createBackupFile>false</createBackupFile>
354             <encoding>${project.build.sourceEncoding}</encoding>
355             <keepBlankLines>true</keepBlankLines>
356             <lineSeparator>\n</lineSeparator>
357             <nrOfIndentSpace>2</nrOfIndentSpace>
358             <predefinedSortOrder>custom_1</predefinedSortOrder>
359             <sortDependencies>scope,groupId,artifactId</sortDependencies>
360             <sortPlugins>groupId,artifactId</sortPlugins>
361             <sortProperties>true</sortProperties>
362           </configuration>
363           <executions>
364             <execution>
365               <goals>
366                 <goal>sort</goal>
367               </goals>
368               <phase>verify</phase>
369             </execution>
370           </executions>
371         </plugin>
372         <plugin>
373           <groupId>org.apache.maven.plugins</groupId>
374           <artifactId>maven-assembly-plugin</artifactId>
375           <version>2.4</version>
376         </plugin>
377         <plugin>
378           <!-- TODO move up to ODL parent. -->
379           <!-- This is required to make sure that we delete the files which are
380                being generated under the src/main directory since by default only files
381                under target get cleaned up. Because the clean plugin is automatically invoked
382                you do NOT need to specify it in the build->plugin section. You would only
383                want to override this if you have additional folders which need to be cleaned
384                up. -->
385           <artifactId>maven-clean-plugin</artifactId>
386           <configuration>
387             <filesets>
388               <fileset>
389                 <directory>${xtend.dstdir}</directory>
390                 <includes>
391                   <include>**</include>
392                 </includes>
393               </fileset>
394               <fileset>
395                 <directory>${jmxGeneratorPath}</directory>
396                 <includes>
397                   <include>**</include>
398                 </includes>
399               </fileset>
400               <fileset>
401                 <directory>${salGeneratorPath}</directory>
402                 <includes>
403                   <include>**</include>
404                 </includes>
405               </fileset>
406             </filesets>
407           </configuration>
408         </plugin>
409         <plugin>
410           <!-- Configures the java doc generation. Generally you should not have
411                to override this unless you need to exclude other packages etc. -->
412           <groupId>org.apache.maven.plugins</groupId>
413           <artifactId>maven-javadoc-plugin</artifactId>
414           <configuration>
415             <doclet>org.jboss.apiviz.APIviz</doclet>
416             <docletArtifact>
417               <groupId>org.jboss.apiviz</groupId>
418               <artifactId>apiviz</artifactId>
419               <version>1.3.2.GA</version>
420             </docletArtifact>
421             <finalName>${project.artifactId}-${project.version}</finalName>
422             <useStandardDocletOptions>true</useStandardDocletOptions>
423             <charset>UTF-8</charset>
424             <encoding>UTF-8</encoding>
425             <docencoding>UTF-8</docencoding>
426             <breakiterator>true</breakiterator>
427             <version>true</version>
428             <author>true</author>
429             <keywords>true</keywords>
430             <excludePackageNames>net.sf.jnetlib.*:cern.*:corejava:*.internal:edu.uci.*</excludePackageNames>
431             <failOnError>false</failOnError>
432           </configuration>
433         </plugin>
434         <plugin>
435           <groupId>org.apache.maven.plugins</groupId>
436           <artifactId>maven-jxr-plugin</artifactId>
437           <version>2.3</version>
438           <configuration>
439             <aggregate>true</aggregate>
440             <linkJavadoc>true</linkJavadoc>
441             <javadocDir>target/apidocs</javadocDir>
442           </configuration>
443         </plugin>
444         <plugin>
445           <!-- TODO: This should be in ODL parent -->
446           <groupId>org.codehaus.mojo</groupId>
447           <artifactId>build-helper-maven-plugin</artifactId>
448           <executions>
449             <execution>
450               <id>add-source</id>
451               <goals>
452                 <goal>add-source</goal>
453               </goals>
454               <phase>generate-sources</phase>
455               <configuration>
456                 <sources>
457                   <source>${yang.src.path}</source>
458                   <source>${jmxGeneratorPath}</source>
459                   <source>${salGeneratorPath}</source>
460                   <source>${xtend.dstdir}</source>
461                 </sources>
462               </configuration>
463             </execution>
464           </executions>
465         </plugin>
466
467         <plugin>
468           <groupId>org.eclipse.m2e</groupId>
469           <artifactId>lifecycle-mapping</artifactId>
470           <version>1.0.0</version>
471           <configuration>
472             <lifecycleMappingMetadata>
473               <pluginExecutions>
474                 <pluginExecution>
475                   <pluginExecutionFilter>
476                     <groupId>org.codehaus.mojo</groupId>
477                     <artifactId>properties-maven-plugin</artifactId>
478                     <versionRange>[0.0,)</versionRange>
479                     <goals>
480                       <goal>set-system-properties</goal>
481                     </goals>
482                   </pluginExecutionFilter>
483                   <action>
484                     <ignore></ignore>
485                   </action>
486                 </pluginExecution>
487                 <pluginExecution>
488                   <pluginExecutionFilter>
489                     <groupId>org.jacoco</groupId>
490                     <artifactId>jacoco-maven-plugin</artifactId>
491                     <versionRange>[0.0,)</versionRange>
492                     <goals>
493                       <goal>prepare-agent</goal>
494                       <goal>pre-test</goal>
495                       <goal>post-test</goal>
496                     </goals>
497                   </pluginExecutionFilter>
498                   <action>
499                     <ignore></ignore>
500                   </action>
501                 </pluginExecution>
502                 <pluginExecution>
503                   <pluginExecutionFilter>
504                     <groupId>org.ops4j.pax.exam</groupId>
505                     <artifactId>maven-paxexam-plugin</artifactId>
506                     <versionRange>[1.2.4,)</versionRange>
507                     <goals>
508                       <goal>generate-depends-file</goal>
509                     </goals>
510                   </pluginExecutionFilter>
511                   <action>
512                     <ignore></ignore>
513                   </action>
514                 </pluginExecution>
515                 <pluginExecution>
516                   <pluginExecutionFilter>
517                     <groupId>org.apache.maven.plugins</groupId>
518                     <artifactId>maven-checkstyle-plugin</artifactId>
519                     <versionRange>[2.0,)</versionRange>
520                     <goals>
521                       <goal>check</goal>
522                     </goals>
523                   </pluginExecutionFilter>
524                   <action>
525                     <ignore></ignore>
526                   </action>
527                 </pluginExecution>
528                 <pluginExecution>
529                   <pluginExecutionFilter>
530                     <groupId>org.opendaylight.yangtools</groupId>
531                     <artifactId>yang-maven-plugin</artifactId>
532                     <versionRange>[0.5,)</versionRange>
533                     <goals>
534                       <goal>generate-sources</goal>
535                     </goals>
536                   </pluginExecutionFilter>
537                   <action>
538                     <ignore></ignore>
539                   </action>
540                 </pluginExecution>
541               </pluginExecutions>
542             </lifecycleMappingMetadata>
543           </configuration>
544         </plugin>
545         <plugin>
546           <!-- here we are defining the default generators for yang You may need
547                to override this in child poms if you want to define additional generators,
548                such as the JMX generator etc. -->
549           <groupId>org.opendaylight.yangtools</groupId>
550           <artifactId>yang-maven-plugin</artifactId>
551           <version>${yangtools.version}</version>
552           <dependencies>
553             <dependency>
554               <groupId>org.opendaylight.yangtools</groupId>
555               <artifactId>maven-sal-api-gen-plugin</artifactId>
556               <version>${yangtools.version}</version>
557             </dependency>
558           </dependencies>
559           <executions>
560             <execution>
561               <goals>
562                 <goal>generate-sources</goal>
563               </goals>
564               <configuration>
565                 <yangFilesRootDir>${yang.src.path}</yangFilesRootDir>
566                 <codeGenerators>
567                   <generator>
568                     <codeGeneratorClass>org.opendaylight.yangtools.maven.sal.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
569                     <outputBaseDir>${salGeneratorPath}</outputBaseDir>
570                   </generator>
571                 </codeGenerators>
572                 <inspectDependencies>true</inspectDependencies>
573               </configuration>
574             </execution>
575           </executions>
576         </plugin>
577       </plugins>
578     </pluginManagement>
579     <plugins>
580       <plugin>
581         <groupId>org.jacoco</groupId>
582         <artifactId>jacoco-maven-plugin</artifactId>
583         <executions>
584           <execution>
585             <id>prepare-ut-agent</id>
586             <phase>process-test-classes</phase>
587             <goals>
588               <goal>prepare-agent</goal>
589             </goals>
590             <configuration>
591               <destFile>${sonar.jacoco.reportPath}</destFile>
592             </configuration>
593           </execution>
594           <execution>
595             <id>prepare-it-agent</id>
596             <phase>pre-integration-test</phase>
597             <goals>
598               <goal>prepare-agent</goal>
599             </goals>
600             <configuration>
601               <destFile>${sonar.jacoco.itReportPath}</destFile>
602             </configuration>
603           </execution>
604            <execution>
605              <id>post-test</id>
606              <phase>test</phase>
607              <goals>
608                <goal>report</goal>
609              </goals>
610            </execution>
611         </executions>
612       </plugin>
613       <plugin>
614         <groupId>org.codehaus.mojo</groupId>
615         <artifactId>build-helper-maven-plugin</artifactId>
616       </plugin>
617     </plugins>
618   </build>
619
620   <reporting>
621     <outputDirectory>${project.build.directory}/site</outputDirectory>
622     <excludeDefaults>true</excludeDefaults>
623     <plugins>
624       <plugin>
625         <groupId>org.apache.maven.plugins</groupId>
626         <artifactId>maven-javadoc-plugin</artifactId>
627         <version>2.8.1</version>
628         <configuration>
629           <doclet>org.jboss.apiviz.APIviz</doclet>
630           <docletArtifact>
631             <groupId>org.jboss.apiviz</groupId>
632             <artifactId>apiviz</artifactId>
633             <version>1.3.2.GA</version>
634           </docletArtifact>
635           <finalName>${project.artifactId}-${build.suffix}</finalName>
636           <useStandardDocletOptions>true</useStandardDocletOptions>
637           <charset>UTF-8</charset>
638           <encoding>UTF-8</encoding>
639           <docencoding>UTF-8</docencoding>
640           <breakiterator>true</breakiterator>
641           <version>true</version>
642           <author>true</author>
643           <keywords>true</keywords>
644           <excludePackageNames>*.internal:edu.uci.*</excludePackageNames>
645         </configuration>
646       </plugin>
647       <plugin>
648         <groupId>org.apache.maven.plugins</groupId>
649         <artifactId>maven-jxr-plugin</artifactId>
650         <version>2.3</version>
651         <configuration>
652           <aggregate>true</aggregate>
653           <linkJavadoc>true</linkJavadoc>
654         </configuration>
655       </plugin>
656       <plugin>
657         <groupId>org.apache.maven.plugins</groupId>
658         <artifactId>maven-project-info-reports-plugin</artifactId>
659         <version>${projectinfo}</version>
660         <configuration>
661           <dependencyDetailsEnabled>false</dependencyDetailsEnabled>
662           <dependencyLocationsEnabled>false</dependencyLocationsEnabled>
663         </configuration>
664         <reportSets>
665           <reportSet>
666             <reports>
667               <report>index</report>
668               <report>project-team</report>
669               <report>license</report>
670               <report>mailing-list</report>
671               <report>plugin-management</report>
672               <report>cim</report>
673               <report>issue-tracking</report>
674               <report>scm</report>
675               <report>summary</report>
676             </reports>
677           </reportSet>
678         </reportSets>
679       </plugin>
680     </plugins>
681   </reporting>
682
683   <distributionManagement>
684     <!-- Note: We want the nexus proxy property here because want to enable
685          devs to upload this artifact using mvn deploy to other maven repositories. -->
686     <!-- OpenDayLight Released artifact -->
687     <repository>
688       <id>opendaylight-release</id>
689       <url>${nexusproxy}/repositories/opendaylight.release/</url>
690     </repository>
691     <!-- OpenDayLight Snapshot artifact -->
692     <snapshotRepository>
693       <id>opendaylight-snapshot</id>
694       <url>${nexusproxy}/repositories/opendaylight.snapshot/</url>
695     </snapshotRepository>
696     <!-- Site deployment -->
697   </distributionManagement>
698
699 </project>