Skip to content

Commit

Permalink
exclude Kotlin classes from japicmp
Browse files Browse the repository at this point in the history
  • Loading branch information
bsideup committed May 6, 2019
1 parent ea16297 commit e690da6
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
10 changes: 9 additions & 1 deletion reactor-core/build.gradle
Expand Up @@ -124,7 +124,15 @@ task japicmp(type: JapicmpTask) {

//TODO after a release, bump the gradle.properties baseline
//TODO after a release, remove the reactor-core exclusions below if any
// classExcludes = []
classExcludes = [
'reactor.core.publisher.FluxExtensionsKt',
'reactor.core.publisher.FluxExtensionsKt$toFlux$1',
'reactor.core.publisher.FluxExtensionsKt$toIterable$1',
'reactor.core.publisher.MonoExtensionsKt',
'reactor.core.publisher.MonoWhenFunctionsKt',
'reactor.core.publisher.MonoWhenFunctionsKt$zip$1',
'reactor.util.function.TupleExtensionsKt',
]
// methodExcludes = ["reactor.core.Scannable#operatorName()"]
}

Expand Down
3 changes: 3 additions & 0 deletions reactor-test/build.gradle
Expand Up @@ -63,6 +63,9 @@ task japicmp(type: JapicmpTask) {
includeSynthetic = true

//TODO after a release, remove the reactor-test exclusions below if any
classExcludes = [
'reactor.test.StepVerifierExtensionsKt',
]
}

javadoc {
Expand Down

0 comments on commit e690da6

Please sign in to comment.