Author: epunzalan Date: Wed Apr 26 18:57:11 2006 New Revision: 397357 URL: http://svn.apache.org/viewcvs?rev=397357&view=rev Log: added missing files from prev commit that fails the build in continuum.
Files were added in tortoise, but somehow using commit from the pom.xml directory does not show these files. I had to revert and and then add them again before they appeared. Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/plugin-config.xml maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile2.java maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile3.java maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile4.java maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile2TestCase.java maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile3TestCase.java maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile4TestCase.java Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/plugin-config.xml URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/plugin-config.xml?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/plugin-config.xml (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/plugin-config.xml Wed Apr 26 18:57:11 2006 @@ -0,0 +1,34 @@ +<!-- + ~ Copyright 2001-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. + --> + +<project> + <build> + <plugins> + <plugin> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <compileSourceRoots> + <compileSourceRoot>${basedir}/target/test-classes/unit/compiler-one-output-file-test/src/main/java</compileSourceRoot> + </compileSourceRoots> + <compilerId>javac</compilerId> + <debug>true</debug> + <outputDirectory>${basedir}/target/test/unit/compiler-one-output-file-test/target/classes</outputDirectory> + <buildDirectory>${basedir}/target/test/unit/compiler-one-output-file-test/target</buildDirectory> + </configuration> + </plugin> + </plugins> + </build> +</project> Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile2.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile2.java?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile2.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile2.java Wed Apr 26 18:57:11 2006 @@ -0,0 +1,26 @@ +/* + * Copyright 2001-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. + */ + +public class TestCompile2 +{ + + public TestCompile2() + { + + System.out.println("Woo Hoo!"); + } + +} \ No newline at end of file Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile3.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile3.java?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile3.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile3.java Wed Apr 26 18:57:11 2006 @@ -0,0 +1,26 @@ +/* + * Copyright 2001-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. + */ + +public class TestCompile3 +{ + + public TestCompile3() + { + + System.out.println("Woo Hoo!"); + } + +} \ No newline at end of file Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile4.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile4.java?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile4.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/main/java/TestCompile4.java Wed Apr 26 18:57:11 2006 @@ -0,0 +1,26 @@ +/* + * Copyright 2001-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. + */ + +public class TestCompile4 +{ + + public TestCompile4() + { + + System.out.println("Woo Hoo!"); + } + +} \ No newline at end of file Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile2TestCase.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile2TestCase.java?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile2TestCase.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile2TestCase.java Wed Apr 26 18:57:11 2006 @@ -0,0 +1,26 @@ +/* + * Copyright 2001-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.TestCase; + +public class TestCompile2TestCase + extends TestCase +{ + public void testCompile2() + { + TestCompile2 test = new TestCompile2(); + } +} \ No newline at end of file Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile3TestCase.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile3TestCase.java?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile3TestCase.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile3TestCase.java Wed Apr 26 18:57:11 2006 @@ -0,0 +1,26 @@ +/* + * Copyright 2001-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.TestCase; + +public class TestCompile3TestCase + extends TestCase +{ + public void testCompile3() + { + TestCompile3 test = new TestCompile3(); + } +} \ No newline at end of file Added: maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile4TestCase.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile4TestCase.java?rev=397357&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile4TestCase.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/test/resources/unit/compiler-one-output-file-test/src/test/java/TestCompile4TestCase.java Wed Apr 26 18:57:11 2006 @@ -0,0 +1,26 @@ +/* + * Copyright 2001-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.TestCase; + +public class TestCompile4TestCase + extends TestCase +{ + public void testCompile4() + { + TestCompile4 test = new TestCompile4(); + } +} \ No newline at end of file