mirror of
https://github.com/sparrowwallet/hummingbird.git
synced 2024-11-02 18:46:45 +00:00
16 lines
237 B
Groovy
16 lines
237 B
Groovy
|
plugins {
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
group 'com.sparrowwallet'
|
||
|
version '1.1'
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
implementation('co.nstant.in:cbor:0.9')
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
}
|