You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@maven.apache.org by rf...@apache.org on 2012/04/20 20:28:27 UTC

svn commit: r1328474 - in /maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187: ./ invoker.properties pom.xml

Author: rfscholte
Date: Fri Apr 20 18:28:26 2012
New Revision: 1328474

URL: http://svn.apache.org/viewvc?rev=1328474&view=rev
Log:
Add IT for MPLUGIN-187, can't reproduce it with current version

Added:
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/invoker.properties
    maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/pom.xml

Added: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/invoker.properties
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/invoker.properties?rev=1328474&view=auto
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/invoker.properties (added)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/invoker.properties Fri Apr 20 18:28:26 2012
@@ -0,0 +1 @@
+invoker.goals = clean plugin:report

Added: maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/pom.xml?rev=1328474&view=auto
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/pom.xml (added)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/src/it/mplugin-187/pom.xml Fri Apr 20 18:28:26 2012
@@ -0,0 +1,45 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+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.
+-->
+
+<project>
+  <modelVersion>4.0.0</modelVersion>
+
+  <groupId>org.apache.maven.plugins.plugin.its</groupId>
+  <artifactId>mplugin-187</artifactId>
+  <version>1.0-SNAPSHOT</version>
+
+  <description>Verify that plugin:report succeeds</description>
+
+  <properties>
+    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+  </properties>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-plugin-plugin</artifactId>
+        <version>@project.version@</version>
+      </plugin>
+    </plugins>
+  </build>
+
+</project>
\ No newline at end of file