mirror of
https://github.com/corda/corda.git
synced 2024-12-20 13:33:12 +00:00
24 lines
553 B
Groovy
24 lines
553 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'kotlin'
|
||
|
id 'kotlin-jpa'
|
||
|
}
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
mavenCentral()
|
||
|
}
|
||
|
|
||
|
dependencies {
|
||
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
||
|
testImplementation "io.gitlab.arturbosch.detekt:detekt-test:$detekt_version"
|
||
|
testImplementation "org.assertj:assertj-core:$assertj_version"
|
||
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
|
||
|
implementation "io.gitlab.arturbosch.detekt:detekt-api:$detekt_version"
|
||
|
}
|
||
|
|
||
|
publish {
|
||
|
name "corda-detekt-plugins"
|
||
|
}
|