You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@maven.apache.org by ca...@apache.org on 2005/08/05 03:04:43 UTC

svn commit: r230380 - in /maven/maven-1/plugins/trunk/jxr/src/plugin-test: ./ src/ src/main/ src/main/org/ src/main/org/apache/ src/main/org/apache/maven/ src/main/org/apache/maven/jxr/

Author: carlos
Date: Thu Aug  4 18:04:38 2005
New Revision: 230380

URL: http://svn.apache.org/viewcvs?rev=230380&view=rev
Log:
Added test cases

Added:
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/   (with props)
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml   (with props)
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml   (with props)
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java   (with props)
    maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java   (with props)

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/
------------------------------------------------------------------------------
--- svn:ignore (added)
+++ svn:ignore Thu Aug  4 18:04:38 2005
@@ -0,0 +1 @@
+target

Added: maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml?rev=230380&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml (added)
+++ maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml Thu Aug  4 18:04:38 2005
@@ -0,0 +1,28 @@
+<!-- 
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+<project 
+    xmlns:util="jelly:util"
+    xmlns:j="jelly:core">
+         
+  <goal name="testPlugin" prereqs="clean,test-jxr-report">
+  </goal>
+  
+  <goal name="test-jxr-report">
+    <attainGoal name="maven-jxr-plugin:report"/>
+  </goal>
+</project>
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/maven.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml?rev=230380&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml (added)
+++ maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml Thu Aug  4 18:04:38 2005
@@ -0,0 +1,35 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- 
+/*
+ * Copyright 2001-2004 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.
+ */
+ -->
+
+
+<project>
+  <pomVersion>3</pomVersion>
+  <artifactId>test-maven-jxr-plugin</artifactId>
+  <name>Test project for Maven JXR</name>
+  <groupId>maven</groupId>
+  <currentVersion>1.0</currentVersion>
+
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+  </build>
+
+  <reports>
+    <report>maven-jxr-plugin</report>
+  </reports>
+</project>

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/project.xml
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java?rev=230380&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java (added)
+++ maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java Thu Aug  4 18:04:38 2005
@@ -0,0 +1,6 @@
+package org.apache.maven.jxr;
+
+public enum EnumClass
+{
+    OK, WARN, CRITICAL;
+}

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/EnumClass.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"

Added: maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java
URL: http://svn.apache.org/viewcvs/maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java?rev=230380&view=auto
==============================================================================
--- maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java (added)
+++ maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java Thu Aug  4 18:04:38 2005
@@ -0,0 +1 @@
+package org.apache.maven.jxr;
\ No newline at end of file

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/maven-1/plugins/trunk/jxr/src/plugin-test/src/main/org/apache/maven/jxr/package-info.java
------------------------------------------------------------------------------
    svn:keywords = "Author Date Id Revision"



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@maven.apache.org
For additional commands, e-mail: dev-help@maven.apache.org