55 lines
1.3 KiB
Groovy
55 lines
1.3 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.jetbrains.intellij' version '0.4.3'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.21'
|
|
}
|
|
|
|
group 'de.platon42'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
}
|
|
|
|
/*
|
|
To run tests in IntelliJ use these VM Options for run configuration
|
|
-ea -Didea.system.path=build/idea-sandbox/system-test -Didea.config.path=build/idea-sandbox/config-test -Didea.plugins.path=build/idea-sandbox/plugins-test
|
|
*/
|
|
|
|
dependencies {
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
|
|
testCompile "org.assertj:assertj-core:3.11.1"
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-engine:5.4.0'
|
|
testRuntimeOnly 'org.junit.vintage:junit-vintage-engine:5.4.0'
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test"
|
|
testImplementation "org.jetbrains.kotlin:kotlin-test-junit"
|
|
}
|
|
|
|
compileKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
compileTestKotlin {
|
|
kotlinOptions.jvmTarget = "1.8"
|
|
}
|
|
intellij {
|
|
version '2018.3.4'
|
|
// pluginName 'Concise AssertJ Optimizing Nitpicker (Cajon)'
|
|
updateSinceUntilBuild false
|
|
}
|
|
|
|
patchPluginXml {
|
|
changeNotes """
|
|
<h2>V0.1 (10-Mar-2019)
|
|
<ul>
|
|
<li>Initial release.
|
|
</ul>
|
|
"""
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
// testLogging {
|
|
// events "passed", "skipped", "failed"
|
|
// }
|
|
} |