All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ru.curs.celesta.plugin.maven.GenScoreResourcesMojo Maven / Gradle / Ivy

The newest version!
package ru.curs.celesta.plugin.maven;

import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugin.MojoFailureException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;

@Mojo(
        name = "gen-score-resources",
        defaultPhase = LifecyclePhase.GENERATE_RESOURCES
)
public final class GenScoreResourcesMojo extends AbstractGenScoreResourcesMojo {

    @Override
    public void execute() throws MojoExecutionException, MojoFailureException {
        getScorePaths = this::getScorePaths;
        generatedResourcesDirName = "generated-resources";
        addResource = project::addResource;

        super.execute();
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy