2022-10-13 00:04:51 +02:00
|
|
|
|
|
|
|
plugins {
|
|
|
|
id 'groovy-gradle-plugin'
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenCentral()
|
2022-11-25 16:50:16 +01:00
|
|
|
maven {
|
|
|
|
url = "$artifactoryContextUrl/"
|
|
|
|
}
|
2022-10-13 00:04:51 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.8.1'
|
|
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.8.1'
|
|
|
|
|
|
|
|
implementation "com.konghq:unirest-java:$unirestVersion"
|
|
|
|
implementation "com.konghq:unirest-objectmapper-jackson:$unirestVersion"
|
|
|
|
implementation "com.fasterxml.jackson.core:jackson-databind:$jacksonVersion"
|
|
|
|
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:$jacksonVersion"
|
|
|
|
|
|
|
|
implementation "net.corda:corda-base:$cordaApiVersion"
|
|
|
|
}
|