add module name to v1.6.1

This commit is contained in:
Craig Raw 2021-06-24 13:48:39 +02:00
parent 06fbdb0d07
commit 0bdd3ebc83
2 changed files with 8 additions and 2 deletions

View file

@ -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: 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 ## Usage

View file

@ -16,7 +16,7 @@ apply plugin: 'com.bmuschko.nexus'
archivesBaseName = 'hummingbird' archivesBaseName = 'hummingbird'
group 'com.sparrowwallet' group 'com.sparrowwallet'
version '1.6.0' version '1.6.1'
repositories { repositories {
mavenCentral() mavenCentral()
@ -27,6 +27,12 @@ dependencies {
testCompile group: 'junit', name: 'junit', version: '4.12' testCompile group: 'junit', name: 'junit', version: '4.12'
} }
jar {
manifest {
attributes 'Automatic-Module-Name' : 'com.sparrowwallet.hummingbird'
}
}
modifyPom { modifyPom {
project { project {
name 'hummingbird' name 'hummingbird'