com.eriwen.gradle.js.source.JavaScriptProcessingChain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-js-plugin Show documentation
Show all versions of gradle-js-plugin Show documentation
A Gradle plugin for working with JS.
The newest version!
package com.eriwen.gradle.js.source;
import groovy.lang.Closure;
import org.gradle.api.NamedDomainObjectList;
import org.gradle.api.tasks.SourceTask;
public interface JavaScriptProcessingChain extends NamedDomainObjectList {
JavaScriptSourceSet getSource();
T task(Class type);
T task(String name, Class type);
T task(Class type, Closure closure);
T task(String name, Class type, Closure closure);
}