From d658bcf0c46f7f843cc69a2947f58964571d53c6 Mon Sep 17 00:00:00 2001 From: "Erik C. Thauvin" Date: Thu, 28 Nov 2024 10:46:10 -0800 Subject: [PATCH] Enabled verbose compiling --- examples/src/bld/java/com/example/ExampleBuild.java | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/examples/src/bld/java/com/example/ExampleBuild.java b/examples/src/bld/java/com/example/ExampleBuild.java index c220c55..83948b0 100644 --- a/examples/src/bld/java/com/example/ExampleBuild.java +++ b/examples/src/bld/java/com/example/ExampleBuild.java @@ -58,14 +58,11 @@ public class ExampleBuild extends Project { @Override public void compile() throws Exception { // The source code located in src/main/kotlin and src/test/kotlin will be compiled - new CompileKotlinOperation() - .fromProject(this) + var op = new CompileKotlinOperation() // .kotlinHome("path/to/kotlin") // .kotlinc("path/to/kotlinc") - .execute(); - -// var op = new CompileKotlinOperation().fromProject(this); -// op.compileOptions().verbose(true); -// op.execute(); + .fromProject(this); + op.compileOptions().verbose(true); + op.execute(); } }