10 lines
296 B
Kotlin
10 lines
296 B
Kotlin
tasks.register("compileEx", Exec::class) {
|
|
group = "elixir"
|
|
workingDir(project.layout.projectDirectory)
|
|
commandLine("mix", "compile") //TODO
|
|
}
|
|
tasks.register("testEx", Exec::class) {
|
|
group = "elixir"
|
|
workingDir(project.layout.projectDirectory)
|
|
commandLine("mix", "test")
|
|
} |