You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by ol...@apache.org on 2012/12/20 11:43:14 UTC

svn commit: r1424396 - in /maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192: ./ invoker.properties pom.xml src/ src/main/ src/main/java/ src/main/java/dummy/ src/main/java/dummy/HelloWorld.java src/main/java/dummy/license.txt verify.groovy

Author: olamy
Date: Thu Dec 20 10:43:14 2012
New Revision: 1424396

URL: http://svn.apache.org/viewvc?rev=1424396&view=rev
Log:
missed to add it.

Added:
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties   (with props)
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml   (with props)
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java   (with props)
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt   (with props)
    maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy   (with props)

Added: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties?rev=1424396&view=auto
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties (added)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties Thu Dec 20 10:43:14 2012
@@ -0,0 +1,2 @@
+invoker.goals = clean compile
+invoker.buildResult = failure
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/invoker.properties
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml?rev=1424396&view=auto
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml (added)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml Thu Dec 20 10:43:14 2012
@@ -0,0 +1,29 @@
+<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/xsd/maven-4.0.0.xsd">
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>blah</groupId>
+  <artifactId>blah</artifactId>
+  <version>1.0</version>
+  <packaging>jar</packaging>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <version>@pom.version@</version>
+        <configuration>
+        <fork>true</fork>
+         <includes>
+           <include>dummy/*.java</include>
+           <include>dummy/license.txt</include>
+         </includes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java?rev=1424396&view=auto
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java (added)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java Thu Dec 20 10:43:14 2012
@@ -0,0 +1,8 @@
+package dummy;
+
+public class HelloWorld
+{
+   public static void main(String[] argv) {
+      System.out.println("Hello World");
+   }
+}

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/HelloWorld.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt?rev=1424396&view=auto
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt (added)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt Thu Dec 20 10:43:14 2012
@@ -0,0 +1 @@
+It's mine
\ No newline at end of file

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/src/main/java/dummy/license.txt
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Added: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy
URL: http://svn.apache.org/viewvc/maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy?rev=1424396&view=auto
==============================================================================
--- maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy (added)
+++ maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy Thu Dec 20 10:43:14 2012
@@ -0,0 +1,25 @@
+
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you 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.
+ */
+def logFile = new File( basedir, 'build.log' )
+assert logFile.exists()
+content = logFile.text
+
+assert content.contains( 'Usage: javac <options> <source files>' )
+

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: maven/plugins/trunk/maven-compiler-plugin/src/it/MCOMPILER-192/verify.groovy
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision