diff --git a/README.md b/README.md index 6d4ea4f..54b0710 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Hummingbird requires a minimum of Java 8. Hummingbird is hosted in Maven Central and can be added as a dependency with the following: ``` -implementation('com.sparrowwallet:hummingbird:1.6.0') +implementation('com.sparrowwallet:hummingbird:1.6.1') ``` ## Usage diff --git a/build.gradle b/build.gradle index ebbdeec..ba40dff 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ apply plugin: 'com.bmuschko.nexus' archivesBaseName = 'hummingbird' group 'com.sparrowwallet' -version '1.6.0' +version '1.6.1' repositories { mavenCentral() @@ -27,6 +27,12 @@ dependencies { testCompile group: 'junit', name: 'junit', version: '4.12' } +jar { + manifest { + attributes 'Automatic-Module-Name' : 'com.sparrowwallet.hummingbird' + } +} + modifyPom { project { name 'hummingbird'