com.github.psxpaul.task.ExecFork.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of gradle-execfork-plugin Show documentation
Show all versions of gradle-execfork-plugin Show documentation
A gradle plugin to execute applications in the background
package com.github.psxpaul.task
open class ExecFork : AbstractExecFork() {
var commandLine:String? = null
override fun getProcessArgs(): List? {
val processArgs:MutableList = mutableListOf()
processArgs.add(commandLine!!)
processArgs.addAll(args)
return processArgs
}
}