drongo/build.gradle

86 lines
2.2 KiB
Groovy
Raw Normal View History

buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.javamodularity:moduleplugin:1.6.0"
}
}
2019-03-15 18:15:28 +00:00
plugins {
id 'java'
id 'com.github.johnrengelman.shadow' version '5.2.0'
2019-03-15 18:15:28 +00:00
}
def javamodularityPluginId = 'org.javamodularity.moduleplugin'
final hasPlugin = project.getPlugins().hasPlugin(javamodularityPluginId);
if(hasPlugin) {
final Plugin plugin = project.getPlugins().getPlugin(javamodularityPluginId)
println 'Plugin already applied - version ' + plugin.properties['javamodularityPluginId']
} else {
apply plugin: "org.javamodularity.moduleplugin"
}
2020-08-25 07:14:33 +00:00
tasks.withType(AbstractArchiveTask) {
preserveFileTimestamps = false
reproducibleFileOrder = true
}
2020-04-01 11:20:36 +00:00
group 'com.sparrowwallet'
2020-08-21 15:15:12 +00:00
version '0.9'
2019-03-15 18:15:28 +00:00
sourceCompatibility = 11
targetCompatibility = 11
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.64') {
2020-03-31 13:43:34 +00:00
exclude group: 'org.hamcrest', module: 'hamcrest-core'
}
2020-05-17 11:38:20 +00:00
implementation ('de.mkammerer:argon2-jvm:2.7') {
exclude group: 'org.hamcrest', module: 'hamcrest-core'
exclude group: 'junit', module: 'junit'
}
2020-03-31 13:43:34 +00:00
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) {
2020-04-01 11:20:36 +00:00
main = 'com.sparrowwallet.drongo.Main'
2019-03-15 18:15:28 +00:00
classpath = sourceSets.main.runtimeClasspath
args 'drongo.properties'
}
jar {
manifest {
2020-04-01 11:20:36 +00:00
attributes "Main-Class": "com.sparrowwallet.drongo.Main"
2019-03-15 18:15:28 +00:00
}
2020-05-30 09:22:17 +00:00
exclude('logback.xml')
archiveBaseName = 'drongo'
2020-08-21 15:15:12 +00:00
archiveVersion = '0.9'
2019-03-15 18:15:28 +00:00
}
shadowJar {
2020-08-21 15:15:12 +00:00
archiveVersion = '0.9'
2019-03-15 18:15:28 +00:00
classifier = 'all'
}