chrisly42
db02f7fb93
Renamed a few inspections to better/shorter names (and fixed file and directory names accordingly).
73 lines
2.7 KiB
Groovy
73 lines
2.7 KiB
Groovy
plugins {
|
|
id 'java'
|
|
id 'org.jetbrains.intellij' version '0.4.8'
|
|
id 'org.jetbrains.kotlin.jvm' version '1.3.30'
|
|
}
|
|
|
|
group 'de.platon42'
|
|
version '0.6'
|
|
|
|
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.12.2"
|
|
testCompile "org.assertj:assertj-guava:3.2.1"
|
|
testImplementation 'org.junit.jupiter:junit-jupiter-api:5.4.0'
|
|
testRuntimeOnly 'org.junit.jupiter:junit-jupiter-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 '2019.1.1'
|
|
// pluginName 'Concise AssertJ Optimizing Nitpicker (Cajon)'
|
|
updateSinceUntilBuild false
|
|
}
|
|
|
|
patchPluginXml {
|
|
changeNotes """
|
|
<h4>V0.6 (xx-Apr-19)</h4>
|
|
<ul>
|
|
<li>New AssertThatStringExpression inspection that will move isEmpty(), equals(), equalsIgnoreCase(), contains(),
|
|
startsWith(), and endsWith() out of actual expression.
|
|
<li>Extended AssertThatSize inspection to take strings and CharSequences into account, too.
|
|
<li>New AssertThatInvertedBooleanCondition inspection that will remove inverted boolean expressions inside assertThat().
|
|
<li>Renamed a few inspections to better/shorter names.
|
|
</ul>
|
|
<h4>V0.5 (18-Apr-19)</h4>
|
|
<ul>
|
|
<li>Fixed incompatibility with IDEA versions < 2018.2 (affected AssertThatSizeInspection). Minimal version is now 2017.3.
|
|
<li>Fixed missing Guava imports (if not already present) for AssertThatGuavaInspection. This was a major PITA to get right.
|
|
<li>Added support for referencing and refactoring inside .extracting() methods with fields, properties and methods (though
|
|
getter renaming does not work that perfect, but I'm giving up for now as the IntelliJ SDK docs are seriously lacking).
|
|
<li>Fixed an exception in batch mode if the description string was the same but for different fixes.
|
|
Now descriptions are different for quick fixes triggered by AssertThatJava8OptionalInspection and AssertThatGuavaOptionalInspection.
|
|
</ul>
|
|
<p>Full changelog available at <a href="https://github.com/chrisly42/cajon-plugin#changelog">Github project site</a>.</p>
|
|
"""
|
|
}
|
|
|
|
test {
|
|
useJUnitPlatform()
|
|
// testLogging {
|
|
// events "passed", "skipped", "failed"
|
|
// }
|
|
}
|
|
|
|
publishPlugin {
|
|
token intellijPublishToken
|
|
} |