mirror of
https://github.com/corda/corda.git
synced 2024-12-19 21:17:58 +00:00
3547b629c3
* [NOTICK] Add a custom detekt rule for tests with no timeout, and fix remaining missing timeouts * [NOTICK] Add a test for custom detekt rules and tidying * add timeout annotation to new test Co-authored-by: Stefano Franz <roastario@gmail.com>
27 lines
595 B
Groovy
27 lines
595 B
Groovy
plugins {
|
|
id 'java'
|
|
id 'kotlin'
|
|
id 'kotlin-jpa'
|
|
}
|
|
|
|
group 'net.corda'
|
|
version '4.4-SNAPSHOT'
|
|
|
|
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"
|
|
}
|