use of com.typelead.gradle.utils.EtlasCommand in project gradle-eta by typelead.
the class EtaRepl method repl.
@TaskAction
public void repl() {
final File workingDir = getDestinationDir();
/* Fork an etlas process to start the repl. */
final EtlasCommand etlas = new EtlasCommand(project);
etlas.getWorkingDirectory().set(workingDir);
String packageName = getPackageName();
etlas.repl(packageName == null ? null : EtlasCommand.libTarget(packageName), getArgs());
}
Aggregations