1 package org.apache.maven.model.converter.plugins;
2
3 /*
4 * Licensed to the Apache Software Foundation (ASF) under one
5 * or more contributor license agreements. See the NOTICE file
6 * distributed with this work for additional information
7 * regarding copyright ownership. The ASF licenses this file
8 * to you under the Apache License, Version 2.0 (the
9 * "License"); you may not use this file except in compliance
10 * with the License. You may obtain a copy of the License at
11 *
12 * http://www.apache.org/licenses/LICENSE-2.0
13 *
14 * Unless required by applicable law or agreed to in writing,
15 * software distributed under the License is distributed on an
16 * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
17 * KIND, either express or implied. See the License for the
18 * specific language governing permissions and limitations
19 * under the License.
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 * A <code>PluginConfigurationConverter</code> for the maven-changes-plugin.
32 *
33 * @plexus.component role="org.apache.maven.model.converter.plugins.PluginConfigurationConverter" role-hint="changes"
34 *
35 * @author Dennis Lundberg
36 * @version $Id: PCCChanges.java 695609 2008-09-15 20:29:30Z dennisl $
37 */
38 public class PCCChanges
39 extends AbstractPluginConfigurationConverter
40 {
41 /**
42 * @see org.apache.maven.model.converter.plugins.AbstractPluginConfigurationConverter#getArtifactId()
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 }