aQute.bnd.maven.generate.plugin.GenerateTestMojo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bnd-generate-maven-plugin Show documentation
Show all versions of bnd-generate-maven-plugin Show documentation
Generate Code using the Plugin based BND Codegenerator function
The newest version!
package aQute.bnd.maven.generate.plugin;
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;
import org.apache.maven.plugins.annotations.ResolutionScope;
@Mojo(name = "generate-test", defaultPhase = LifecyclePhase.GENERATE_TEST_SOURCES, requiresDependencyResolution = ResolutionScope.TEST, threadSafe = true)
public class GenerateTestMojo extends AbstractGenerateMojo {
@Override
public void execute() throws MojoExecutionException, MojoFailureException {
doExecute(true);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy