mirror of
https://github.com/sparrowwallet/drongo.git
synced 2024-11-02 18:26:43 +00:00
67 lines
1.8 KiB
Groovy
67 lines
1.8 KiB
Groovy
buildscript {
|
|
repositories {
|
|
maven {
|
|
url "https://plugins.gradle.org/m2/"
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id 'java-library'
|
|
id 'extra-java-module-info'
|
|
}
|
|
|
|
tasks.withType(AbstractArchiveTask) {
|
|
preserveFileTimestamps = false
|
|
reproducibleFileOrder = true
|
|
}
|
|
|
|
def os = org.gradle.internal.os.OperatingSystem.current()
|
|
def osName = os.getFamilyName()
|
|
if(os.macOsX) {
|
|
osName = "osx"
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
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-jdk18on:1.77') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
}
|
|
implementation ('de.mkammerer:argon2-jvm:2.11') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
exclude group: 'junit', module: 'junit'
|
|
exclude group: 'net.java.dev.jna', module: 'jna'
|
|
}
|
|
implementation ('net.java.dev.jna:jna:5.8.0')
|
|
implementation ('ch.qos.logback:logback-classic:1.4.14') {
|
|
exclude group: 'org.hamcrest', module: 'hamcrest-core'
|
|
exclude group: 'org.slf4j'
|
|
}
|
|
implementation ('org.slf4j:slf4j-api:2.0.12')
|
|
testImplementation('org.junit.jupiter:junit-jupiter-api:5.10.0')
|
|
testImplementation('org.junit.vintage:junit-vintage-engine:5.10.0')
|
|
}
|
|
|
|
processResources {
|
|
doLast {
|
|
delete fileTree("$buildDir/resources/main/native").matching {
|
|
exclude "${osName}/**"
|
|
}
|
|
}
|
|
}
|
|
|
|
extraJavaModuleInfo {
|
|
module('json-simple-1.1.1.jar', 'json.simple', '1.1.1') {
|
|
exports('org.json.simple')
|
|
exports('org.json.simple.parser')
|
|
}
|
|
module('jnacl-1.0.0.jar', 'eu.neilalexander.jnacl', '1.0.0')
|
|
module('hamcrest-core-1.3.jar', 'org.hamcrest.core', '1.3')
|
|
}
|