Return-Path: X-Original-To: apmail-maven-commits-archive@www.apache.org Delivered-To: apmail-maven-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 637D510DBF for ; Sat, 31 May 2014 12:37:31 +0000 (UTC) Received: (qmail 91683 invoked by uid 500); 31 May 2014 12:37:31 -0000 Delivered-To: apmail-maven-commits-archive@maven.apache.org Received: (qmail 91627 invoked by uid 500); 31 May 2014 12:37:31 -0000 Mailing-List: contact commits-help@maven.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@maven.apache.org Delivered-To: mailing list commits@maven.apache.org Received: (qmail 91620 invoked by uid 99); 31 May 2014 12:37:31 -0000 Received: from tyr.zones.apache.org (HELO tyr.zones.apache.org) (140.211.11.114) by apache.org (qpsmtpd/0.29) with ESMTP; Sat, 31 May 2014 12:37:31 +0000 Received: by tyr.zones.apache.org (Postfix, from userid 65534) id 0F82A8391F8; Sat, 31 May 2014 12:37:31 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: hboutemy@apache.org To: commits@maven.apache.org Message-Id: X-Mailer: ASF-Git Admin Mailer Subject: git commit: improved desriptions Date: Sat, 31 May 2014 12:37:31 +0000 (UTC) Repository: maven-integration-testing Updated Branches: refs/heads/master 192dd12ce -> b0a7273cf improved desriptions Project: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/repo Commit: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/commit/b0a7273c Tree: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/tree/b0a7273c Diff: http://git-wip-us.apache.org/repos/asf/maven-integration-testing/diff/b0a7273c Branch: refs/heads/master Commit: b0a7273cf96a708dff2ecaa2aa52878d461f9d47 Parents: 192dd12 Author: Hervé Boutemy Authored: Sat May 31 14:37:27 2014 +0200 Committer: Hervé Boutemy Committed: Sat May 31 14:37:27 2014 +0200 ---------------------------------------------------------------------- core-it-support/core-it-plugins/maven-it-plugin-setter/pom.xml | 2 ++ .../org/apache/maven/plugin/coreit/CoreItMojoWithSetters.java | 3 +-- .../java/org/apache/maven/plugin/coreit/SettingsReadItMojo.java | 3 ++- core-it-support/core-it-plugins/pom.xml | 1 + core-it-support/pom.xml | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/b0a7273c/core-it-support/core-it-plugins/maven-it-plugin-setter/pom.xml ---------------------------------------------------------------------- diff --git a/core-it-support/core-it-plugins/maven-it-plugin-setter/pom.xml b/core-it-support/core-it-plugins/maven-it-plugin-setter/pom.xml index 6b17448..3928f19 100644 --- a/core-it-support/core-it-plugins/maven-it-plugin-setter/pom.xml +++ b/core-it-support/core-it-plugins/maven-it-plugin-setter/pom.xml @@ -29,6 +29,8 @@ under the License. maven-it-plugin-setter + Plugin to check that attribute injection through setter method + (instead of direct parameter injection) works. maven-plugin Maven IT Plugin :: Setter http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/b0a7273c/core-it-support/core-it-plugins/maven-it-plugin-setter/src/main/java/org/apache/maven/plugin/coreit/CoreItMojoWithSetters.java ---------------------------------------------------------------------- diff --git a/core-it-support/core-it-plugins/maven-it-plugin-setter/src/main/java/org/apache/maven/plugin/coreit/CoreItMojoWithSetters.java b/core-it-support/core-it-plugins/maven-it-plugin-setter/src/main/java/org/apache/maven/plugin/coreit/CoreItMojoWithSetters.java index 223246b..86040b3 100644 --- a/core-it-support/core-it-plugins/maven-it-plugin-setter/src/main/java/org/apache/maven/plugin/coreit/CoreItMojoWithSetters.java +++ b/core-it-support/core-it-plugins/maven-it-plugin-setter/src/main/java/org/apache/maven/plugin/coreit/CoreItMojoWithSetters.java @@ -27,9 +27,8 @@ import java.io.FileWriter; import java.io.IOException; /** + * Mojo to check that attribute injection through setter method (instead of direct parameter injection) works. * @goal setter-touch - * - * @description Goal which cleans the build */ public class CoreItMojoWithSetters extends AbstractMojo http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/b0a7273c/core-it-support/core-it-plugins/maven-it-plugin-settings/src/main/java/org/apache/maven/plugin/coreit/SettingsReadItMojo.java ---------------------------------------------------------------------- diff --git a/core-it-support/core-it-plugins/maven-it-plugin-settings/src/main/java/org/apache/maven/plugin/coreit/SettingsReadItMojo.java b/core-it-support/core-it-plugins/maven-it-plugin-settings/src/main/java/org/apache/maven/plugin/coreit/SettingsReadItMojo.java index 936d215..d812445 100644 --- a/core-it-support/core-it-plugins/maven-it-plugin-settings/src/main/java/org/apache/maven/plugin/coreit/SettingsReadItMojo.java +++ b/core-it-support/core-it-plugins/maven-it-plugin-settings/src/main/java/org/apache/maven/plugin/coreit/SettingsReadItMojo.java @@ -30,9 +30,10 @@ import java.io.FileWriter; import java.io.IOException; /** + * Goal which read settings and dump it to a file + * * @goal settings-read * @phase validate - * @description Goal which read settings and dump it to a file */ public class SettingsReadItMojo extends AbstractMojo http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/b0a7273c/core-it-support/core-it-plugins/pom.xml ---------------------------------------------------------------------- diff --git a/core-it-support/core-it-plugins/pom.xml b/core-it-support/core-it-plugins/pom.xml index cc13a6e..b0fb9d8 100644 --- a/core-it-support/core-it-plugins/pom.xml +++ b/core-it-support/core-it-plugins/pom.xml @@ -33,6 +33,7 @@ under the License. pom Maven IT :: Plugins + Maven Integration Tests Plugins, to completely decouple ITs from production plugins. maven-it-plugin-active-collection http://git-wip-us.apache.org/repos/asf/maven-integration-testing/blob/b0a7273c/core-it-support/pom.xml ---------------------------------------------------------------------- diff --git a/core-it-support/pom.xml b/core-it-support/pom.xml index 3dc139b..1ad876e 100644 --- a/core-it-support/pom.xml +++ b/core-it-support/pom.xml @@ -30,7 +30,7 @@ under the License. pom Maven IT Support - Maven Integration Tests support tools, to completely decouple ITs from production plugins. + Maven Integration Tests support tools. core-it-plugins