Return-Path: X-Original-To: apmail-maven-issues-archive@minotaur.apache.org Delivered-To: apmail-maven-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 5933D183B4 for ; Mon, 22 Feb 2016 09:08:34 +0000 (UTC) Received: (qmail 76998 invoked by uid 500); 22 Feb 2016 09:08:18 -0000 Delivered-To: apmail-maven-issues-archive@maven.apache.org Received: (qmail 76906 invoked by uid 500); 22 Feb 2016 09:08:18 -0000 Mailing-List: contact issues-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 issues@maven.apache.org Received: (qmail 76868 invoked by uid 99); 22 Feb 2016 09:08:18 -0000 Received: from arcas.apache.org (HELO arcas) (140.211.11.28) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 22 Feb 2016 09:08:18 +0000 Received: from arcas.apache.org (localhost [127.0.0.1]) by arcas (Postfix) with ESMTP id 1784B2C14E1 for ; Mon, 22 Feb 2016 09:08:18 +0000 (UTC) Date: Mon, 22 Feb 2016 09:08:18 +0000 (UTC) From: "Karl Heinz Marbaise (JIRA)" To: issues@maven.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Updated] (MINVOKER-199) Remove @Deprecated marked code and parameters MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 [ https://issues.apache.org/jira/browse/MINVOKER-199?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Karl Heinz Marbaise updated MINVOKER-199: ----------------------------------------- Description: 1. {code:java} /** * The name of the project-specific file that contains the enumeration of goals to execute for that test. * * @deprecated As of version 1.2, the key invoker.goals from the properties file specified by the * parameter {@link #invokerPropertiesFile} should be used instead. */ @Parameter( property = "invoker.goalsFile", defaultValue = "goals.txt" ) private String goalsFile; {code} 2. {code:java} /** * Common set of test properties to pass in on each IT's command line, via -D parameters. * * @deprecated As of version 1.1, use the {@link #properties} parameter instead. */ @Parameter private Properties testProperties; {code} 3. {code:java} /** * List of properties which will be used to interpolate goal files. * * @since 1.1 * @deprecated As of version 1.3, the parameter {@link #filterProperties} should be used instead. */ @Parameter private Properties interpolationsProperties; {code} 4. {code:java} /** * The name of the project-specific file that contains the enumeration of profiles to use for that test. If the * file exists and is empty no profiles will be used even if the parameter {@link #profiles} is set. * * @since 1.1 * @deprecated As of version 1.2, the key invoker.profiles from the properties file specified by the * parameter {@link #invokerPropertiesFile} should be used instead. */ @Parameter( property = "invoker.profilesFile", defaultValue = "profiles.txt" ) private String profilesFile; {code} was: # {code:java} /** * The name of the project-specific file that contains the enumeration of goals to execute for that test. * * @deprecated As of version 1.2, the key invoker.goals from the properties file specified by the * parameter {@link #invokerPropertiesFile} should be used instead. */ @Parameter( property = "invoker.goalsFile", defaultValue = "goals.txt" ) private String goalsFile; {code} # {code:java} /** * Common set of test properties to pass in on each IT's command line, via -D parameters. * * @deprecated As of version 1.1, use the {@link #properties} parameter instead. */ @Parameter private Properties testProperties; {code} # {code:java} /** * List of properties which will be used to interpolate goal files. * * @since 1.1 * @deprecated As of version 1.3, the parameter {@link #filterProperties} should be used instead. */ @Parameter private Properties interpolationsProperties; {code} # {code:java} /** * The name of the project-specific file that contains the enumeration of profiles to use for that test. If the * file exists and is empty no profiles will be used even if the parameter {@link #profiles} is set. * * @since 1.1 * @deprecated As of version 1.2, the key invoker.profiles from the properties file specified by the * parameter {@link #invokerPropertiesFile} should be used instead. */ @Parameter( property = "invoker.profilesFile", defaultValue = "profiles.txt" ) private String profilesFile; {code} > Remove @Deprecated marked code and parameters > --------------------------------------------- > > Key: MINVOKER-199 > URL: https://issues.apache.org/jira/browse/MINVOKER-199 > Project: Maven Invoker Plugin > Issue Type: Improvement > Affects Versions: 2.0.0 > Reporter: Karl Heinz Marbaise > Priority: Critical > Fix For: 3.0.0 > > > 1. {code:java} > /** > * The name of the project-specific file that contains the enumeration of goals to execute for that test. > * > * @deprecated As of version 1.2, the key invoker.goals from the properties file specified by the > * parameter {@link #invokerPropertiesFile} should be used instead. > */ > @Parameter( property = "invoker.goalsFile", defaultValue = "goals.txt" ) > private String goalsFile; > {code} > 2. {code:java} > /** > * Common set of test properties to pass in on each IT's command line, via -D parameters. > * > * @deprecated As of version 1.1, use the {@link #properties} parameter instead. > */ > @Parameter > private Properties testProperties; > {code} > 3. {code:java} > /** > * List of properties which will be used to interpolate goal files. > * > * @since 1.1 > * @deprecated As of version 1.3, the parameter {@link #filterProperties} should be used instead. > */ > @Parameter > private Properties interpolationsProperties; > {code} > 4. {code:java} > /** > * The name of the project-specific file that contains the enumeration of profiles to use for that test. If the > * file exists and is empty no profiles will be used even if the parameter {@link #profiles} is set. > * > * @since 1.1 > * @deprecated As of version 1.2, the key invoker.profiles from the properties file specified by the > * parameter {@link #invokerPropertiesFile} should be used instead. > */ > @Parameter( property = "invoker.profilesFile", defaultValue = "profiles.txt" ) > private String profilesFile; > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)