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 f55c234 commit 63770baCopy full SHA for 63770ba
framework-docs/framework-docs.gradle
@@ -1,3 +1,5 @@
1
+import org.jetbrains.kotlin.gradle.tasks.KotlinCompilationTask
2
+
3
plugins {
4
id 'kotlin'
5
id 'io.spring.antora.generate-antora-yml' version '0.0.1'
@@ -42,10 +44,8 @@ repositories {
42
44
}
43
45
46
// To avoid a redeclaration error with Kotlin compiler
-sourceSets {
- main {
47
- java.exclude("org/springframework/docs/**/*.java")
48
- }
+tasks.named('compileKotlin', KotlinCompilationTask.class) {
+ javaSources.from = []
49
50
51
dependencies {
0 commit comments