mirror of
https://github.com/corda/corda.git
synced 2024-12-18 20:47:57 +00:00
12 lines
383 B
Groovy
12 lines
383 B
Groovy
plugins {
|
|
id 'kotlin'
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'org.jetbrains.kotlin:kotlin-stdlib-jdk8'
|
|
implementation "io.gitlab.arturbosch.detekt:detekt-api:$detekt_version"
|
|
testImplementation "junit:junit:$junit_version"
|
|
testImplementation "io.gitlab.arturbosch.detekt:detekt-test:$detekt_version"
|
|
testImplementation "org.assertj:assertj-core:$assertj_version"
|
|
}
|