planterette/plt-server/build.gradle.kts

10 lines
296 B
Plaintext

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")
}