1 package org.apache.maven.model.converter.plugins;
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22 import org.apache.maven.model.ReportSet;
23 import org.apache.maven.model.converter.ProjectConverterException;
24 import org.codehaus.plexus.util.xml.Xpp3Dom;
25
26 import java.util.ArrayList;
27 import java.util.List;
28 import java.util.Properties;
29
30
31
32
33
34
35
36
37
38 public class PCCChanges
39 extends AbstractPluginConfigurationConverter
40 {
41
42
43
44 public String getArtifactId()
45 {
46 return "maven-changes-plugin";
47 }
48
49 public String getType()
50 {
51 return TYPE_REPORT_PLUGIN;
52 }
53
54 protected void buildConfiguration( Xpp3Dom configuration, org.apache.maven.model.v3_0_0.Model v3Model,
55 Properties projectProperties )
56 throws ProjectConverterException
57 {
58 addConfigurationChild( configuration, projectProperties, "maven.changes.issue.template", "issueLinkTemplate" );
59 addConfigurationChild( configuration, "xmlPath", "${basedir}/xdocs/changes.xml" );
60 }
61
62 protected List getReportSets()
63 {
64 List reportSets = new ArrayList();
65
66 ReportSet reportSet = new ReportSet();
67 reportSet.addReport( "changes-report" );
68 reportSets.add( reportSet );
69
70 return reportSets;
71 }
72 }