maven-plugin-plugin/src/it/v4api-3x/src/main/java/org/apache/maven/its/v4api/FirstMojo.java [40:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Mojo(name = "first", defaultPhase = "integration-test")
public class FirstMojo implements org.apache.maven.api.plugin.Mojo {

    /**
     * Project directory.
     */
    @Parameter(defaultValue = "${basedir}", readonly = true)
    private Path basedir;

    @Parameter(property = "first.touchFile", defaultValue = "${project.build.directory}/touch.txt", required = true)
    private Path touchFile;

    /**
     * @since 0.1
     * @deprecated As of 0.2
     */
    @Deprecated
    @Parameter(name = "namedParam", alias = "alias")
    private String aliasedParam;

    @Inject
    private Session session;

    @Inject
    private Project project;

    @Inject
    private MojoExecution mojo;

    @Inject
    private Log log;

    public void execute() throws MojoException {
        log.info("Executing first");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



maven-plugin-plugin/src/it/v4api-4x/src/main/java/org/apache/maven/its/v4api/FirstMojo.java [40:73]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
@Mojo(name = "first", defaultPhase = "integration-test")
public class FirstMojo implements org.apache.maven.api.plugin.Mojo {

    /**
     * Project directory.
     */
    @Parameter(defaultValue = "${basedir}", readonly = true)
    private Path basedir;

    @Parameter(property = "first.touchFile", defaultValue = "${project.build.directory}/touch.txt", required = true)
    private Path touchFile;

    /**
     * @since 0.1
     * @deprecated As of 0.2
     */
    @Deprecated
    @Parameter(name = "namedParam", alias = "alias")
    private String aliasedParam;

    @Inject
    private Session session;

    @Inject
    private Project project;

    @Inject
    private MojoExecution mojo;

    @Inject
    private Log log;

    public void execute() throws MojoException {
        log.info("Executing first");
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



