diff --git a/build.gradle b/build.gradle index 8e79cea63..c18a0eb20 100644 --- a/build.gradle +++ b/build.gradle @@ -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' + } + } } @@ -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 {