From 0bdd3ebc83cfc758686d1900f941c02a5bf55f35 Mon Sep 17 00:00:00 2001 From: Craig Raw Date: Thu, 24 Jun 2021 13:48:39 +0200 Subject: [PATCH] add module name to v1.6.1 --- README.md | 2 +- build.gradle | 8 +++++++- 2 files changed, 8 insertions(+), 2 deletions(-) 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'