diff --git a/CHANGELOG.md b/CHANGELOG.md index cd4e4da..0f9ae96 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,24 @@ # Changelog +## 1.5.0+idea2021 +published to: +- [JetBrains marketplace](https://plugins.jetbrains.com/plugin/15673-asyncapi/versions/stable/167090) +- [GitHub](https://github.com/Pakisan/jasyncapi-idea-plugin/releases/tag/1.4.0%2Bidea2021) + +### Added +- Compatability with IDEA 2022.1 + +### Changed +- was changed `org.jetbrains.intellij` version + - 1.4.0 -> 1.5.3 +- was changed `intellij-plugin-verifier` version + - 1.268 -> 1.278 +- was changed `Gradle` version + - 6.8 -> 7.4.2 +- was changed `JUnit` version + - 4.12 -> 5.8.2 + + ## 1.4.0+idea2021 published to: - [JetBrains marketplace](https://plugins.jetbrains.com/plugin/15673-asyncapi/versions/stable/167090) diff --git a/build.gradle.kts b/build.gradle.kts index b5d9cc6..6527008 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -1,11 +1,11 @@ plugins { - id("org.jetbrains.intellij") version "1.4.0" + id("org.jetbrains.intellij") version "1.5.3" java - kotlin("jvm") version "1.4.21" + kotlin("jvm") version "1.6.20" } group "com.asyncapi.plugin.idea" -version = "1.4.0+idea2021" +version = "1.5.0+idea2021" repositories { mavenCentral() @@ -13,24 +13,24 @@ repositories { dependencies { implementation(kotlin("stdlib")) - testImplementation("junit", "junit", "4.12") testImplementation("org.jetbrains.kotlin:kotlin-stdlib-jdk7") + testImplementation("org.junit.jupiter:junit-jupiter-api:5.8.2") + testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.8.2") + testRuntimeOnly("org.junit.vintage:junit-vintage-engine:5.8.2") } // See https://github.com/JetBrains/gradle-intellij-plugin/ intellij { - version.set("2021.3") + version.set("2022.1") plugins.set(listOf("yaml")) } tasks.getByName("patchPluginXml") { sinceBuild.set("211") - untilBuild.set("213.*") + untilBuild.set("221.*") changeNotes.set(""" - New AsyncAPI versions: + IDEA compatability: """.trimIndent()) } @@ -48,9 +48,10 @@ tasks.getByName("runPluginVe "2021.3", "2021.3.1", "2021.3.2", - "2021.3.3" + "2021.3.3", + "2022.1" )) - verifierVersion.set("1.268") + verifierVersion.set("1.278") } tasks { @@ -60,4 +61,7 @@ tasks { compileTestKotlin { kotlinOptions.jvmTarget = "11" } + test { + useJUnitPlatform() + } } \ No newline at end of file diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index da9702f..92f06b5 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-all.zip zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists