Author: carlos Date: Tue Mar 21 19:52:11 2006 New Revision: 387701 URL: http://svn.apache.org/viewcvs?rev=387701&view=rev Log: [MCOMPILER-5] Added IT test for forking config
Added: maven/plugins/trunk/maven-compiler-plugin/src/it/ maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml (with props) maven/plugins/trunk/maven-compiler-plugin/src/it/test1/ maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml (with props) maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/ maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/ maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/ maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java (with props) Added: maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml?rev=387701&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml Tue Mar 21 19:52:11 2006 @@ -0,0 +1,17 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.maven.plugins.compiler</groupId> + <artifactId>it</artifactId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + <name>Compiler plugin integration tests</name> + + <modules> + <module>test1</module> + </modules> + +</project> Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml?rev=387701&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml Tue Mar 21 19:52:11 2006 @@ -0,0 +1,28 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://maven.apache.org/POM/4.0.0" + xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> + <modelVersion>4.0.0</modelVersion> + + <groupId>org.apache.maven.plugins.compiler</groupId> + <artifactId>test1</artifactId> + <version>1.0-SNAPSHOT</version> + <name>Test for fork configuration</name> + <description>Test for forking compiler configuration</description> + + <dependencies> + </dependencies> + + <build> + <plugins> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <configuration> + <fork>true</fork> + </configuration> + </plugin> + </plugins> + </build> + +</project> Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/test1/pom.xml ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision" Added: maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java URL: http://svn.apache.org/viewcvs/maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java?rev=387701&view=auto ============================================================================== --- maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java (added) +++ maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java Tue Mar 21 19:52:11 2006 @@ -0,0 +1,4 @@ +public class MyClass +{ + +} Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java ------------------------------------------------------------------------------ svn:eol-style = native Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/test1/src/main/java/MyClass.java ------------------------------------------------------------------------------ svn:keywords = "Author Date Id Revision"