Added: 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PCCWarTest.java
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PCCWarTest.java?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PCCWarTest.java
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PCCWarTest.java
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,102 @@
+package org.apache.maven.model.converter.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.model.converter.ProjectConverterException;
+import org.codehaus.plexus.util.xml.Xpp3Dom;
+
+import java.io.IOException;
+
+/**
+ * @author Dennis Lundberg
+ * @version $Id$
+ */
+public class PCCWarTest
+    extends AbstractPCCTest
+{
+    protected void setUp()
+        throws Exception
+    {
+        super.setUp();
+
+        pluginConfigurationConverter = new PCCWar();
+    }
+
+    public void testBuildConfiguration1()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCWarTest1.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            String value = configuration.getChild( "warSourceDirectory" 
).getValue();
+            Assert.assertEquals( "check warSourceDirectory value", 
"myWebappDirectory", value );
+        }
+        catch ( ProjectConverterException e )
+        {
+            Assert.fail( e.getMessage() );
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+
+    public void testBuildConfiguration2()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCWarTest2.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            String value = configuration.getChild( "warSourceDirectory" 
).getValue();
+            Assert.assertEquals( "check warSourceDirectory value", 
"myWebappDirectory", value );
+        }
+        catch ( ProjectConverterException e )
+        {
+            Assert.fail( e.getMessage() );
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+
+    public void testBuildConfiguration3()
+    {
+        try
+        {
+            projectProperties.load( getClassLoader().getResourceAsStream( 
"PCCWarTest3.properties" ) );
+
+            pluginConfigurationConverter.buildConfiguration( configuration, 
v3Model, projectProperties );
+
+            Xpp3Dom child = configuration.getChild( "warSourceDirectory" );
+            Assert.assertEquals( "check warSourceDirectory element", null, 
child );
+        }
+        catch ( ProjectConverterException e )
+        {
+            Assert.fail( e.getMessage() );
+        }
+        catch ( IOException e )
+        {
+            Assert.fail( "Unable to find the requested resource." );
+        }
+    }
+}

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PCCWarTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PCCWarTest.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PropertyUtilsTest.java
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PropertyUtilsTest.java?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PropertyUtilsTest.java
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PropertyUtilsTest.java
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,57 @@
+package org.apache.maven.model.converter.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 junit.framework.TestCase;
+
+/**
+ * @author Dennis Lundberg
+ * @version $Id$
+ */
+public class PropertyUtilsTest extends TestCase
+{
+    protected void setUp()
+        throws Exception
+    {
+        super.setUp();
+    }
+
+    public void testConvertOnOffToBoolean()
+    {
+        Assert.assertEquals( null, PropertyUtils.convertOnOffToBoolean( null ) 
);
+        Assert.assertEquals( null, PropertyUtils.convertOnOffToBoolean( 
"someValue" ) );
+        Assert.assertEquals( "true", PropertyUtils.convertOnOffToBoolean( "on" 
) );
+        Assert.assertEquals( "false", PropertyUtils.convertOnOffToBoolean( 
"OFF" ) );
+    }
+
+    public void testConvertYesNoToBoolean()
+    {
+        Assert.assertEquals( null, PropertyUtils.convertYesNoToBoolean( null ) 
);
+        Assert.assertEquals( null, PropertyUtils.convertYesNoToBoolean( 
"someValue" ) );
+        Assert.assertEquals( "true", PropertyUtils.convertYesNoToBoolean( 
"yes" ) );
+        Assert.assertEquals( "false", PropertyUtils.convertYesNoToBoolean( 
"NO" ) );
+    }
+
+    public void testInvertBoolean()
+    {
+        Assert.assertEquals( null, PropertyUtils.invertBoolean( null ) );
+        Assert.assertEquals( "true", PropertyUtils.invertBoolean( "someValue" 
) );
+        Assert.assertEquals( "true", PropertyUtils.invertBoolean( "false" ) );
+        Assert.assertEquals( "false", PropertyUtils.invertBoolean( "true" ) );
+    }
+}

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PropertyUtilsTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/java/org/apache/maven/model/converter/plugins/PropertyUtilsTest.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest1.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest1.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest1.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest1.properties
 Tue Aug 22 07:56:59 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/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest1.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest2.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest2.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest2.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest2.properties
 Tue Aug 22 07:56:59 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/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest2.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest3.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest3.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest3.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest3.properties
 Tue Aug 22 07:56:59 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/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangelogTest3.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangesTest.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangesTest.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangesTest.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangesTest.properties
 Tue Aug 22 07:56:59 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.
+
+maven.changes.issue.template=%URL%/browse/%ISSUE%

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangesTest.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCChangesTest.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest1.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest1.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest1.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest1.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,25 @@
+#   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.checkstyle.cache.file=target/checkstyle/myCachefile
+maven.checkstyle.excludes=**/*.html
+maven.checkstyle.fail.on.violation=true
+maven.checkstyle.format=sun
+maven.checkstyle.header.file=src/main/resources/HEADER.txt
+maven.checkstyle.includes=**/*.java
+maven.checkstyle.output.txt=target/checkstyle/checkstyle-raw-report.txt
+maven.checkstyle.properties=checkstyle.xml
+maven.checkstyle.propertiesURL=http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/avalon_checks.xml
+maven.checkstyle.suppressions.file=src/main/resources/mySuppressions.xml
+maven.checkstyle.usefile=true

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest1.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest2.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest2.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest2.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest2.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,17 @@
+#   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.checkstyle.output.xml=target/checkstyle/checkstyle-raw-report.xml
+maven.checkstyle.properties=checkstyle.xml
+maven.checkstyle.propertiesURL=http://svn.apache.org/repos/asf/maven/plugins/trunk/maven-checkstyle-plugin/src/main/resources/config/avalon_checks.xml

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest2.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest3.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest3.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest3.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest3.properties
 Tue Aug 22 07:56:59 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.checkstyle.output.xml=checkstyle-raw-report.xml
+maven.checkstyle.properties=checkstyle.xml

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCheckstyleTest3.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCompilerTest.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCCompilerTest.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCompilerTest.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCompilerTest.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,26 @@
+#   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.compile.debug=on
+maven.compile.deprecation=off
+maven.compile.encoding=UTF-8
+maven.compile.executable=/usr/java/bin/javac-2
+maven.compile.fork=yes
+maven.compile.memoryInitialSize=10m
+maven.compile.memoryMaximumSize=20m
+maven.compile.nowarn=On
+maven.compile.optimize=Off
+maven.compile.source=1.3
+maven.compile.target=1.1
+maven.compile.verbose=No

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCompilerTest.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCCompilerTest.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJarTest.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCJarTest.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJarTest.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJarTest.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,24 @@
+#   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.jar.compress=false
+maven.jar.final.name=my.jar
+maven.jar.index=true
+maven.jar.mainclass=MyClass
+maven.jar.manifest=manifest.mf
+maven.jar.manifest.attributes.list=Bar-Attribute,Foo-Attribute
+maven.jar.manifest.attribute.Bar-Attribute=I like toast and jam
+maven.jar.manifest.attribute.Foo-Attribute=I like bread and butter
+maven.jar.manifest.classpath.add=true
+maven.jar.manifest.extensions.add=true

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJarTest.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJarTest.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest1.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest1.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest1.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest1.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,57 @@
+#   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.compile.encoding=ISO-8859-1
+
+maven.docs.outputencoding=UTF-8
+
+maven.javadoc.additionalparam=-J-showversion
+maven.javadoc.author=false
+maven.javadoc.bottom=Copyright
+
+maven.javadoc.customtags=tag1 tag2
+tag1.name=todo
+tag1.description=To Do:
+tag1.enabled=true
+tag1.scope=all
+
+tag2.name=task
+tag2.description=Task:
+tag2.enabled=false
+tag2.scope=all
+
+maven.javadoc.destdir=apidocs
+maven.javadoc.doclet=org.apache.MyDoclet
+maven.javadoc.docletpath=/path/to/doclet
+maven.javadoc.excludepackagenames=org.apache.internal,org.apache.test
+maven.javadoc.footer=The footer
+maven.javadoc.header=The header
+maven.javadoc.links=http://java.sun.com/j2se/1.4/docs/api/
+maven.javadoc.locale=en_US
+maven.javadoc.maxmemory=1024m
+maven.javadoc.mode.online=true
+maven.javadoc.offlineLinks=/opt/java-apidoc/j2sdk1.4.2/docs/api/
+maven.javadoc.overview=src/main/java/org/apache/overview.html
+maven.javadoc.package=true
+maven.javadoc.private=false
+maven.javadoc.public=false
+maven.javadoc.source=1.3
+maven.javadoc.stylesheet=myStylesheet.css
+maven.javadoc.taglets=org.apache.MyTaglet
+maven.javadoc.tagletpath=/path/to/taglet
+maven.javadoc.use=true
+maven.javadoc.version=true
+maven.javadoc.windowtitle=The title
+
+pom.package=org.apache.maven

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest1.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest2.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest2.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest2.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest2.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,17 @@
+#   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.javadoc.package=false
+maven.javadoc.private=true
+maven.javadoc.public=false

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest2.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest3.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest3.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest3.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest3.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,17 @@
+#   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.javadoc.package=false
+maven.javadoc.private=false
+maven.javadoc.public=true

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCJavadocTest3.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCPmdTest.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCPmdTest.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCPmdTest.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCPmdTest.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,19 @@
+#   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.pmd.cpd.minimumtokencount=50
+maven.pmd.excludes=**/*PropertyListParser*
+maven.pmd.failonruleviolation=true
+maven.pmd.rulesetfiles=fileupload_basic.xml,rulesets/unusedcode.xml,rulesets/imports.xml
+maven.pmd.targetjdk=1.4

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCPmdTest.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCPmdTest.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest1.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest1.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest1.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest1.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,25 @@
+#   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.junit.fork=yes
+maven.junit.format=xml
+maven.junit.jvm=java
+maven.junit.jvmargs=-Xmx160m -verbose
+maven.junit.printSummary=false
+maven.junit.sysproperties=prop1 basedir
+prop1=your value
+basedir=${basedir}
+maven.junit.usefile=false
+maven.test.failure.ignore=true
+maven.test.skip=true

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest1.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest2.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest2.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest2.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest2.properties
 Tue Aug 22 07:56:59 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.
+
+maven.junit.forkmode=once

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest2.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest3.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest3.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest3.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest3.properties
 Tue Aug 22 07:56:59 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.
+
+maven.junit.forkmode=perTest

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCSureFireTest3.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCTaglistTest.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCTaglistTest.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCTaglistTest.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCTaglistTest.properties
 Tue Aug 22 07:56:59 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/shared/trunk/maven-model-converter/src/test/resources/PCCTaglistTest.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCTaglistTest.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest1.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest1.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest1.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest1.properties
 Tue Aug 22 07:56:59 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.
+
+maven.war.src=myWebappDirectory

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest1.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest1.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest2.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest2.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest2.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest2.properties
 Tue Aug 22 07:56:59 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.
+
+maven.war.src=${basedir}/myWebappDirectory

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest2.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest2.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest3.properties
URL: 
http://svn.apache.org/viewvc/maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest3.properties?rev=433654&view=auto
==============================================================================
--- 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest3.properties
 (added)
+++ 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest3.properties
 Tue Aug 22 07:56:59 2006
@@ -0,0 +1,13 @@
+#   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.

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest3.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: 
maven/shared/trunk/maven-model-converter/src/test/resources/PCCWarTest3.properties
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"


Reply via email to