From 7aaed2733cd3025609da2beb3b83f42d7c8f1a91 Mon Sep 17 00:00:00 2001 From: dion Date: Fri, 17 Oct 2003 01:56:25 +0000 Subject: [PATCH] Add test project. Shows bad plugin.properties loading git-svn-id: https://svn.apache.org/repos/asf/maven/maven-1/plugins/trunk@114215 13f79535-47bb-0310-9956-ffa450edef68 --- dist/src/plugin-test/.cvsignore | 3 ++ dist/src/plugin-test/maven.xml | 21 ++++++++++ dist/src/plugin-test/project.xml | 40 +++++++++++++++++++ .../src/main/org/apache/maven/Dummy.java | 6 +++ 4 files changed, 70 insertions(+) create mode 100644 dist/src/plugin-test/.cvsignore create mode 100644 dist/src/plugin-test/maven.xml create mode 100644 dist/src/plugin-test/project.xml create mode 100644 dist/src/plugin-test/src/main/org/apache/maven/Dummy.java diff --git a/dist/src/plugin-test/.cvsignore b/dist/src/plugin-test/.cvsignore new file mode 100644 index 00000000..62a5f1b0 --- /dev/null +++ b/dist/src/plugin-test/.cvsignore @@ -0,0 +1,3 @@ +gump.xml +*.log +target diff --git a/dist/src/plugin-test/maven.xml b/dist/src/plugin-test/maven.xml new file mode 100644 index 00000000..12876be8 --- /dev/null +++ b/dist/src/plugin-test/maven.xml @@ -0,0 +1,21 @@ + + + + + + + dist dir is ${maven.dist.dir} + + -src.tar.gz,-src.zip,.tar.gz,.zip + + + + + + ${expectedFile} not generated + + + + \ No newline at end of file diff --git a/dist/src/plugin-test/project.xml b/dist/src/plugin-test/project.xml new file mode 100644 index 00000000..29e19300 --- /dev/null +++ b/dist/src/plugin-test/project.xml @@ -0,0 +1,40 @@ + + + + 3 + test-maven-dist-plugin + Test project for Maven Dist 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 Dist plugin + Test for Maven Dist plugin + http://maven.apache.org/reference/plugins/dist/ + /www/maven.apache.org/reference/plugins/dist/ + + scm:cvs:pserver:anoncvs@cvs.apache.org:/home/cvspublic:maven/src/plugins-build/dist/ + http://cvs.apache.org/viewcvs/maven/src/plugins-build/dist/ + + + + dIon Gillard + dion + dion@multitask.com.au + Multitask Consulting + + Documentation + + + + + + src/main + + diff --git a/dist/src/plugin-test/src/main/org/apache/maven/Dummy.java b/dist/src/plugin-test/src/main/org/apache/maven/Dummy.java new file mode 100644 index 00000000..b966b0c8 --- /dev/null +++ b/dist/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