add all modules, better gradle setup, and elixir for server
This commit is contained in:
10
plt-server/build.gradle.kts
Normal file
10
plt-server/build.gradle.kts
Normal file
@@ -0,0 +1,10 @@
|
||||
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")
|
||||
}
|
||||
Reference in New Issue
Block a user