Details
-
Improvement
-
Status: Closed
-
Critical
-
Resolution: Fixed
-
2.0.0
-
None
Description
1.
/** * 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 <code>invoker.goals</code> from the properties file specified by the * parameter {@link #invokerPropertiesFile} should be used instead. */ @Parameter( property = "invoker.goalsFile", defaultValue = "goals.txt" ) private String goalsFile;
2.
/**
* 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;
3.
/**
* 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;
4.
/** * The name of the project-specific file that contains the enumeration of profiles to use for that test. <b>If the * file exists and is empty no profiles will be used even if the parameter {@link #profiles} is set.</b> * * @since 1.1 * @deprecated As of version 1.2, the key <code>invoker.profiles</code> from the properties file specified by the * parameter {@link #invokerPropertiesFile} should be used instead. */ @Parameter( property = "invoker.profilesFile", defaultValue = "profiles.txt" ) private String profilesFile;
Attachments
Issue Links
- relates to
-
MINVOKER-286 Remove code and documentation corresponding to goals.txt, profiles.txt
- Closed