Author: dennisl
Date: Tue Jun 27 14:50:49 2006
New Revision: 417592

URL: http://svn.apache.org/viewvc?rev=417592&view=rev
Log:
Add PluginConfigurationConverters for maven-changelog-plugin and 
maven-taglist-plugin

Added:
    
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCChangelog.java
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCTaglist.java
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCChangelogTest.java
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCTaglistTest.java
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest1.properties
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest2.properties
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest3.properties
   (with props)
    
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCTaglistTest.properties
   (with props)
Modified:
    
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/PomV3ConvertMojo.java

Modified: 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/PomV3ConvertMojo.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/PomV3ConvertMojo.java?rev=417592&r1=417591&r2=417592&view=diff
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/PomV3ConvertMojo.java
 (original)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/PomV3ConvertMojo.java
 Tue Jun 27 14:50:49 2006
@@ -16,6 +16,7 @@
  * limitations under the License.
  */
 
+import org.apache.maven.maven1converter.plugins.PCCChangelog;
 import org.apache.maven.maven1converter.plugins.PCCChanges;
 import org.apache.maven.maven1converter.plugins.PCCCheckstyle;
 import org.apache.maven.maven1converter.plugins.PCCCompiler;
@@ -24,6 +25,7 @@
 import org.apache.maven.maven1converter.plugins.PCCMultiproject;
 import org.apache.maven.maven1converter.plugins.PCCPmd;
 import org.apache.maven.maven1converter.plugins.PCCSurefire;
+import org.apache.maven.maven1converter.plugins.PCCTaglist;
 import org.apache.maven.maven1converter.plugins.PCCWar;
 import org.apache.maven.maven1converter.plugins.PluginConfigurationConverter;
 import org.apache.maven.maven1converter.relocators.PluginRelocator;
@@ -75,6 +77,7 @@
      * Available converters for specific plugin configurations
      */
     private PluginConfigurationConverter[] converters = new 
PluginConfigurationConverter[] {
+        new PCCChangelog(),
         new PCCChanges(),
         new PCCCheckstyle(),
         new PCCCompiler(),
@@ -83,6 +86,7 @@
         new PCCMultiproject(),
         new PCCPmd(),
         new PCCSurefire(),
+        new PCCTaglist(),
         new PCCWar() };
 
     /**

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCChangelog.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCChangelog.java?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCChangelog.java
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCChangelog.java
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,91 @@
+package org.apache.maven.maven1converter.plugins;
+
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import org.apache.maven.plugin.MojoExecutionException;
+import org.codehaus.plexus.util.xml.Xpp3Dom;
+
+import java.util.Properties;
+
+/**
+ * A <code>PluginConfigurationConverter</code> for the maven-changelog-plugin.
+ *
+ * @author Dennis Lundberg
+ * @version $Id: PCCChangelog.java 409264 2006-05-24 23:13:13 +0000 (on, 24 
maj 2006) carlos $
+ */
+public class PCCChangelog extends AbstractPluginConfigurationConverter
+{
+    /**
+     * @see AbstractPluginConfigurationConverter#getArtifactId()
+     */
+    public String getArtifactId()
+    {
+        return "maven-changelog-plugin";
+    }
+
+    public String getType()
+    {
+        return TYPE_REPORT_PLUGIN;
+    }
+
+    protected void buildConfiguration( Xpp3Dom configuration, 
org.apache.maven.model.v3_0_0.Model v3Model,
+                                       Properties projectProperties )
+        throws MojoExecutionException
+    {
+        addConfigurationChild( configuration, projectProperties, 
"maven.changelog.commentFormat", "commentFormat" );
+
+        addConfigurationChild( configuration, projectProperties, 
"maven.changelog.dateformat", "dateFormat" );
+
+        addConfigurationChild( configuration, projectProperties, 
"maven.changelog.svn.baseurl", "tagBase" );
+
+        addConfigurationChild( configuration, projectProperties, 
"maven.changelog.type", "type" );
+
+        String type = projectProperties.getProperty( "maven.changelog.type" );
+        if ( type != null )
+        {
+            if ( "date".equals( type ) )
+            {
+                Xpp3Dom dates = new Xpp3Dom( "dates" );
+                addConfigurationChild( dates, projectProperties, 
"maven.changelog.date", "date" );
+                if ( dates.getChildCount() > 0 )
+                {
+                    configuration.addChild( dates );
+                }
+            }
+            else if ( "range".equals( type ) )
+            {
+                addConfigurationChild( configuration, projectProperties, 
"maven.changelog.range", "range" );
+            }
+            else if ( "tag".equals( type ) )
+            {
+                Xpp3Dom tags = new Xpp3Dom( "tags" );
+                addConfigurationChild( tags, projectProperties, 
"maven.changelog.tag", "tag" );
+                if ( tags.getChildCount() > 0 )
+                {
+                    configuration.addChild( tags );
+                }
+            }
+        }
+
+        // Only add this if we have any other configuration for the 
changelog-plugin
+        if ( configuration.getChildCount() > 0 )
+        {
+            // The Maven 1 plugin uses the same outputencoding as the 
generated documentation.
+            addConfigurationChild( configuration, projectProperties, 
"maven.docs.outputencoding", "outputEncoding" );
+        }
+    }
+}

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCChangelog.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCTaglist.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCTaglist.java?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCTaglist.java
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCTaglist.java
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,51 @@
+package org.apache.maven.maven1converter.plugins;
+
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import org.apache.maven.plugin.MojoExecutionException;
+import org.codehaus.plexus.util.xml.Xpp3Dom;
+
+import java.util.Properties;
+
+/**
+ * A <code>PluginConfigurationConverter</code> for the maven-tasklist-plugin.
+ *
+ * @author Dennis Lundberg
+ * @version $Id: PCCTaglist.java 409264 2006-05-24 23:13:13 +0000 (on, 24 maj 
2006) carlos $
+ */
+public class PCCTaglist extends AbstractPluginConfigurationConverter
+{
+    /**
+     * @see 
org.apache.maven.maven1converter.plugins.AbstractPluginConfigurationConverter#getArtifactId()
+     */
+    public String getArtifactId()
+    {
+        return "maven-tasklist-plugin";
+    }
+
+    public String getType()
+    {
+        return TYPE_REPORT_PLUGIN;
+    }
+
+    protected void buildConfiguration( Xpp3Dom configuration, 
org.apache.maven.model.v3_0_0.Model v3Model,
+                                       Properties projectProperties )
+        throws MojoExecutionException
+    {
+        addConfigurationChild( configuration, projectProperties, 
"maven.tasklist.taskTag", "tags" );
+    }
+}

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/main/java/org/apache/maven/maven1converter/plugins/PCCTaglist.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCChangelogTest.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCChangelogTest.java?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCChangelogTest.java
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCChangelogTest.java
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,138 @@
+package org.apache.maven.maven1converter.plugins;
+
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import junit.framework.Assert;
+import org.apache.maven.plugin.MojoExecutionException;
+import org.codehaus.plexus.util.xml.Xpp3Dom;
+
+import java.io.IOException;
+
+/**
+ * @author Dennis Lundberg
+ * @version $Id: PCCChangelogTest.java 409264 2006-05-24 23:13:13 +0000 (on, 
24 maj 2006) carlos $
+ */
+public class PCCChangelogTest extends AbstractPCCTest
+{
+    protected void setUp()
+        throws Exception
+    {
+        super.setUp();
+
+        pluginConfigurationConverter = new PCCChangelog();
+    }
+
+    public void testBuildConfiguration1()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCChangelogTest1.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            String value = configuration.getChild( "commentFormat" 
).getValue();
+            Assert.assertEquals( "check commentFormat value", "%Sn - %c - 
Activity: %[activity]p", value );
+
+            value = configuration.getChild( "dateFormat" ).getValue();
+            Assert.assertEquals( "check dateFormat value", "yyyy-MM-dd", value 
);
+
+            value = configuration.getChild( "outputEncoding" ).getValue();
+            Assert.assertEquals( "check outputEncoding value", "ISO-8859-1", 
value );
+
+            value = configuration.getChild( "tagBase" ).getValue();
+            Assert.assertEquals( "check tagBase value", 
"http://svn.apache.org/repos/asf/maven/plugins/";, value );
+
+            value = configuration.getChild( "type" ).getValue();
+            Assert.assertEquals( "check type value", "date", value );
+
+            Xpp3Dom dates = configuration.getChild( "dates" );
+            if ( dates.getChildCount() == 1 )
+            {
+                Xpp3Dom date = dates.getChild( 0 );
+                Assert.assertEquals( "check dates/date value", "2005-01-01", 
date.getValue() );
+            }
+            else
+            {
+                Assert.fail( "Wrong number of date elements" );
+            }
+        }
+        catch ( MojoExecutionException e )
+        {
+            Assert.fail( e.getMessage() );
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+
+    public void testBuildConfiguration2()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCChangelogTest2.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            String value = configuration.getChild( "type" ).getValue();
+            Assert.assertEquals( "check type value", "range", value );
+
+            value = configuration.getChild( "range" ).getValue();
+            Assert.assertEquals( "check range value", "120", value );
+        }
+        catch ( MojoExecutionException e )
+        {
+            Assert.fail( e.getMessage() );
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+
+    public void testBuildConfiguration3()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCChangelogTest3.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            String value = configuration.getChild( "type" ).getValue();
+            Assert.assertEquals( "check type value", "tag", value );
+
+            Xpp3Dom tags = configuration.getChild( "tags" );
+            if ( tags.getChildCount() == 1 )
+            {
+                Xpp3Dom tag = tags.getChild( 0 );
+                Assert.assertEquals( "check tags/tag value", "RELEASE-1_0", 
tag.getValue() );
+            }
+            else
+            {
+                Assert.fail( "Wrong number of tag elements" );
+            }
+        }
+        catch ( MojoExecutionException e )
+        {
+            Assert.fail( e.getMessage() );
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+}

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCChangelogTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCTaglistTest.java
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCTaglistTest.java?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCTaglistTest.java
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCTaglistTest.java
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,58 @@
+package org.apache.maven.maven1converter.plugins;
+
+/*
+ * Copyright 2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+import junit.framework.Assert;
+import org.apache.maven.plugin.MojoExecutionException;
+
+import java.io.IOException;
+
+/**
+ * @author Dennis Lundberg
+ * @version $Id: PCCTaglistTest.java 410688 2006-05-31 22:21:07 +0000 (on, 31 
maj 2006) carlos $
+ */
+public class PCCTaglistTest extends AbstractPCCTest
+{
+    protected void setUp()
+        throws Exception
+    {
+        super.setUp();
+
+        pluginConfigurationConverter = new PCCTaglist();
+    }
+
+    public void testBuildConfiguration()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCTaglistTest.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            String value = configuration.getChild( "tags" ).getValue();
+            Assert.assertEquals( "check tags value", "@fixme", value );
+        }
+        catch ( MojoExecutionException e )
+        {
+            Assert.fail();
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+}

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/java/org/apache/maven/maven1converter/plugins/PCCTaglistTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest1.properties
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest1.properties?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest1.properties
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest1.properties
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,21 @@
+#   Copyright 2006 The Apache Software Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+maven.changelog.commentFormat=%Sn - %c - Activity: %[activity]p
+maven.changelog.dateformat=yyyy-MM-dd
+maven.changelog.svn.baseurl=http://svn.apache.org/repos/asf/maven/plugins/
+maven.changelog.type=date
+maven.changelog.date=2005-01-01
+
+maven.docs.outputencoding=ISO-8859-1

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest2.properties
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest2.properties?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest2.properties
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest2.properties
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,16 @@
+#   Copyright 2006 The Apache Software Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+maven.changelog.type=range
+maven.changelog.range=120

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest3.properties
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest3.properties?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest3.properties
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest3.properties
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,16 @@
+#   Copyright 2006 The Apache Software Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
+maven.changelog.type=tag
+maven.changelog.tag=RELEASE-1_0

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCChangelogTest3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Added: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCTaglistTest.properties
URL: 
http://svn.apache.org/viewvc/maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCTaglistTest.properties?rev=417592&view=auto
==============================================================================
--- 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCTaglistTest.properties
 (added)
+++ 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCTaglistTest.properties
 Tue Jun 27 14:50:49 2006
@@ -0,0 +1,15 @@
+#   Copyright 2006 The Apache Software Foundation
+#
+#   Licensed under the Apache License, Version 2.0 (the "License");
+#   you may not use this file except in compliance with the License.
+#   You may obtain a copy of the License at
+#
+#       http://www.apache.org/licenses/LICENSE-2.0
+#
+#   Unless required by applicable law or agreed to in writing, software
+#   distributed under the License is distributed on an "AS IS" BASIS,
+#   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+#   See the License for the specific language governing permissions and
+#   limitations under the License.
+
[EMAIL PROTECTED]

Propchange: 
maven/sandbox/plugins/maven-maven1-plugin/src/test/resources/PCCTaglistTest.properties
------------------------------------------------------------------------------
    svn:eol-style = native


Reply via email to