![JAR search and dependency download from the Maven repository](/logo.png)
org.easyb.idea.runner.EasybConfigurationFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of intellij-plugin Show documentation
Show all versions of intellij-plugin Show documentation
A plugin that enables easyb spec execution in IntelliJ
The newest version!
package org.easyb.idea.runner;
import com.intellij.execution.configurations.ConfigurationFactory;
import com.intellij.execution.configurations.RunConfiguration;
import com.intellij.openapi.project.Project;
public class EasybConfigurationFactory extends ConfigurationFactory {
public EasybConfigurationFactory(EasybRunConfigurationType easybRunConfigurationType) {
super(easybRunConfigurationType);
}
public RunConfiguration createTemplateConfiguration(Project project) {
return new EasybRunConfiguration(this, project, "Easyb Spec");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy