drongo/build.gradle

55 lines
1.3 KiB
Groovy
Raw Normal View History

2019-03-15 18:15:28 +00:00
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '4.0.2'
}
group 'com.craigraw'
version '0.1'
2020-03-31 13:43:34 +00:00
sourceCompatibility = 1.9
targetCompatibility = 1.9
2019-03-15 18:15:28 +00:00
repositories {
mavenCentral()
}
dependencies {
2020-03-31 13:43:34 +00:00
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'
2019-03-15 18:15:28 +00:00
}
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'
}