We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fbaa026 commit d658bcfCopy full SHA for d658bcf
examples/src/bld/java/com/example/ExampleBuild.java
@@ -58,14 +58,11 @@ public static void main(String[] args) {
58
@Override
59
public void compile() throws Exception {
60
// The source code located in src/main/kotlin and src/test/kotlin will be compiled
61
- new CompileKotlinOperation()
62
- .fromProject(this)
+ var op = new CompileKotlinOperation()
63
// .kotlinHome("path/to/kotlin")
64
// .kotlinc("path/to/kotlinc")
65
- .execute();
66
-
67
-// var op = new CompileKotlinOperation().fromProject(this);
68
-// op.compileOptions().verbose(true);
69
-// op.execute();
+ .fromProject(this);
+ op.compileOptions().verbose(true);
+ op.execute();
70
}
71
0 commit comments