Skip to content

Commit

Permalink
see reactor#887 Workaround the source jar java file duplication issue (
Browse files Browse the repository at this point in the history
…reactor#888)

See https://youtrack.jetbrains.com/issue/KT-17564
Will be fixed in kotlin-gradle-plugin 1.1.60
  • Loading branch information
simonbasle authored Oct 2, 2017
1 parent 1be3b2e commit a0a913a
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,13 @@ configure(subprojects) { p ->
exclude '**/*Abstract*.*'
exclude '**/*OperatorTest*.*'
}

//Workaround for https://youtrack.jetbrains.com/issue/KT-17564
// until kotlin-gradle-plugin 1.1.60 is out
sourcesJar {
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
}

}

if (project.hasProperty('platformVersion')) {
Expand Down

0 comments on commit a0a913a

Please sign in to comment.