10 lines
		
	
	
		
			296 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			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")
 | |
| } |