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

org.sitoolkit.wt.plugin.maven.Selenium2ScriptMojo Maven / Gradle / Ivy

package org.sitoolkit.wt.plugin.maven;

import org.apache.maven.plugin.AbstractMojo;
import org.apache.maven.plugin.MojoExecutionException;
import org.apache.maven.plugins.annotations.LifecyclePhase;
import org.apache.maven.plugins.annotations.Mojo;
import org.apache.maven.plugins.annotations.ResolutionScope;
import org.sitoolkit.wt.app.selenium2script.Selenium2Script;

@Mojo(name = "selenium2script", defaultPhase = LifecyclePhase.GENERATE_TEST_SOURCES, requiresDependencyCollection = ResolutionScope.RUNTIME)
public class Selenium2ScriptMojo extends AbstractMojo {

    @Override
    public void execute() throws MojoExecutionException {
        Selenium2Script.initInstance().execute();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy