File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -182,6 +182,15 @@ allprojects {
182
182
183
183
}
184
184
185
+ // TODO until https://github.com/Kotlin/dokka/issues/3472
186
+ configurations. matching { it. name. startsWith(' dokka' ) }. configureEach {
187
+ resolutionStrategy. eachDependency {
188
+ if (requested. group. startsWith(' com.fasterxml.jackson' )) {
189
+ useVersion(' 2.15.3' )
190
+ }
191
+ }
192
+ }
193
+
185
194
}
186
195
187
196
configure(javaProjects) { subproject ->
@@ -492,15 +501,6 @@ project('spring-integration-core') {
492
501
493
502
apply plugin : ' org.jetbrains.dokka'
494
503
495
- // TODO until https://github.com/Kotlin/dokka/issues/3472
496
- configurations. matching { it. name. startsWith(' dokka' ) }. configureEach {
497
- resolutionStrategy. eachDependency {
498
- if (requested. group. startsWith(' com.fasterxml.jackson' )) {
499
- useVersion(' 2.15.3' )
500
- }
501
- }
502
- }
503
-
504
504
dependencies {
505
505
api ' org.springframework:spring-aop'
506
506
api ' org.springframework:spring-context'
@@ -1109,7 +1109,7 @@ tasks.register('api', Javadoc) {
1109
1109
dokkaHtmlMultiModule {
1110
1110
dependsOn ' api'
1111
1111
moduleName. set(' spring-integration' )
1112
- outputDirectory. set(file(" $b uildDir /kdoc" ))
1112
+ outputDirectory. set(file(' build /kdoc' ))
1113
1113
}
1114
1114
1115
1115
apply from : " ${ rootDir} /gradle/docs.gradle"
You can’t perform that action at this time.
0 commit comments