Skip to content

Commit

Permalink
Declare an Java9 JPMS Automatic-Module-Name for extra and adapter
Browse files Browse the repository at this point in the history
  • Loading branch information
simonbasle committed May 6, 2019
1 parent d3e5029 commit 9e31065
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -215,6 +215,13 @@ project('reactor-adapter') {
testCompile "org.reactivestreams:reactive-streams-tck:1.0.2"
}

jar {
manifest {
attributes 'Implementation-Title': 'reactor-adapter',
'Implementation-Version': version,
'Automatic-Module-Name': 'reactor.adapter'
}
}

}

Expand All @@ -229,6 +236,14 @@ project('reactor-extra') {
optional "org.eclipse.swt:org.eclipse.swt.${getPlatform()}:${swtVersionPlatform}"
optional("org.jetbrains.kotlin:kotlin-stdlib:${kotlinVersion}")
}

jar {
manifest {
attributes 'Implementation-Title': 'reactor-extra',
'Implementation-Version': version,
'Automatic-Module-Name': 'reactor.extra'
}
}
}

task release {
Expand Down

0 comments on commit 9e31065

Please sign in to comment.