mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
54 lines
1.3 KiB
Groovy
54 lines
1.3 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'com.github.johnrengelman.shadow' version '4.0.2'
|
|
}
|
|
|
|
group 'com.craigraw'
|
|
version '0.1'
|
|
|
|
sourceCompatibility = 1.9
|
|
targetCompatibility = 1.9
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
implementation ('org.zeromq:jeromq:0.5.0') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
implementation ('com.googlecode.json-simple:json-simple:1.1.1') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
exclude group: 'junit', module: 'junit'
|
|
}
|
|
implementation ('org.bouncycastle:bcprov-jdk15on:1.60') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
implementation ('ch.qos.logback:logback-classic:1.2.3') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
testImplementation ('junit:junit:4.12') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
testImplementation group: 'org.hamcrest', name: 'hamcrest-core', version: '2.2'
|
|
}
|
|
|
|
task(runDrongo, dependsOn: 'classes', type: JavaExec) {
|
|
main = 'com.craigraw.drongo.Main'
|
|
classpath = sourceSets.main.runtimeClasspath
|
|
args 'drongo.properties'
|
|
}
|
|
|
|
jar {
|
|
manifest {
|
|
attributes "Main-Class": "com.craigraw.drongo.Main"
|
|
}
|
|
|
|
baseName = 'drongo'
|
|
version = '0.1'
|
|
}
|
|
|
|
shadowJar {
|
|
version = '0.1'
|
|
classifier = 'all'
|
|
}
|