From cb6268b82241dfb12e31f65b8ffdb288e01ac07b Mon Sep 17 00:00:00 2001 From: dion Date: Thu, 29 Jul 2004 14:22:08 +0000 Subject: [PATCH] Add test project git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@115898 13f79535-47bb-0310-9956-ffa450edef68 --- pmd/project.xml | 2 +- pmd/src/plugin-test/.cvsignore | 2 + pmd/src/plugin-test/maven.xml | 31 ++++++++++ pmd/src/plugin-test/project.xml | 58 +++++++++++++++++++ .../src/main/org/apache/maven/Dummy.java | 6 ++ 5 files changed, 98 insertions(+), 1 deletion(-) create mode 100644 pmd/src/plugin-test/.cvsignore create mode 100644 pmd/src/plugin-test/maven.xml create mode 100644 pmd/src/plugin-test/project.xml create mode 100644 pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java diff --git a/pmd/project.xml b/pmd/project.xml index 173f3386..fd18c95d 100644 --- a/pmd/project.xml +++ b/pmd/project.xml @@ -23,7 +23,7 @@ 3 maven-pmd-plugin Maven PMD Plug-in - 1.5 + 1.6-SNAPSHOT The Maven PMD plugin is a plugin that wraps the PMD framework (http://pmd.sourceforge.net). PMD is a source checking framework that works by scanning Java source code and looks for potential problems like: unused local variables, empty catch blocks, unused parameters, empty 'if' statements, etc. Maven Plugin for PMD http://maven.apache.org/reference/plugins/pmd/ diff --git a/pmd/src/plugin-test/.cvsignore b/pmd/src/plugin-test/.cvsignore new file mode 100644 index 00000000..b0afd1ae --- /dev/null +++ b/pmd/src/plugin-test/.cvsignore @@ -0,0 +1,2 @@ +gump.xml +*.log diff --git a/pmd/src/plugin-test/maven.xml b/pmd/src/plugin-test/maven.xml new file mode 100644 index 00000000..ca53431b --- /dev/null +++ b/pmd/src/plugin-test/maven.xml @@ -0,0 +1,31 @@ + + + + + + + + + + + + + \ No newline at end of file diff --git a/pmd/src/plugin-test/project.xml b/pmd/src/plugin-test/project.xml new file mode 100644 index 00000000..eba342dd --- /dev/null +++ b/pmd/src/plugin-test/project.xml @@ -0,0 +1,58 @@ + + + + + + 3 + test-maven-pmd-plugin + Test project for Maven PMD Plugin + maven + 1.0-SNAPSHOT + + Apache Software Foundation + http://www.apache.org/ + http://maven.apache.org/images/jakarta-logo-blue.gif + + 2001 + org.apache.maven + http://maven.apache.org/images/maven.jpg + Test for Maven PMD plugin + Test for Maven PMD plugin + http://maven.apache.org/reference/plugins/pmd/ + /www/maven.apache.org/reference/plugins/pmd/ + + scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven-plugins/pmd/ + http://cvs.apache.org/viewcvs/maven-plugins/pmd/ + + + + dIon Gillard + dion + dion@multitask.com.au + Multitask Consulting + + Documentation + + + + + + src/main + + diff --git a/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java b/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java new file mode 100644 index 00000000..b966b0c8 --- /dev/null +++ b/pmd/src/plugin-test/src/main/org/apache/maven/Dummy.java @@ -0,0 +1,6 @@ +package org.apache.maven; + +public class Dummy +{ + public String badChecky = "error"; +} \ No newline at end of file