Upgrade to Koltin 1.9.21
This commit is contained in:
parent
72f8031c3c
commit
2a88bbb045
5 changed files with 11 additions and 5 deletions
|
@ -41,7 +41,7 @@ public class CompileKotlinOperationBuild extends Project {
|
|||
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, RIFE2_RELEASES);
|
||||
|
||||
var dokka = version(1, 9, 10);
|
||||
var kotlin = version(1, 9, 20);
|
||||
var kotlin = version(1, 9, 21);
|
||||
scope(compile)
|
||||
.include(dependency("org.jetbrains.kotlin", "kotlin-compiler", kotlin))
|
||||
.include(dependency("org.jetbrains.kotlin", "kotlin-annotation-processing", kotlin))
|
||||
|
|
|
@ -239,6 +239,9 @@ public class CompileKotlinOperation extends AbstractOperation<CompileKotlinOpera
|
|||
*/
|
||||
protected void executeBuildMainSources()
|
||||
throws IOException {
|
||||
if (!silent()) {
|
||||
System.out.println("Compiling Kotlin main sources.");
|
||||
}
|
||||
executeBuildSources(
|
||||
compileMainClasspath(),
|
||||
sources(mainSourceFiles(), mainSourceDirectories()),
|
||||
|
@ -305,6 +308,9 @@ public class CompileKotlinOperation extends AbstractOperation<CompileKotlinOpera
|
|||
*/
|
||||
protected void executeBuildTestSources()
|
||||
throws IOException {
|
||||
if (!silent()) {
|
||||
System.out.println("Compiling Kotlin test sources.");
|
||||
}
|
||||
executeBuildSources(
|
||||
compileTestClasspath(),
|
||||
sources(testSourceFiles(), testSourceDirectories()),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue