Skip to content
Snippets Groups Projects
Commit 2f37cf0a authored by Denis Zhidkikh's avatar Denis Zhidkikh :horse:
Browse files

Test and build against 2025 EAP builds

parent 9e08af5c
Branches feature-idea-support
No related tags found
No related merge requests found
...@@ -15,7 +15,7 @@ val projectType = System.getenv("IDE_TYPE") ?: "IC" ...@@ -15,7 +15,7 @@ val projectType = System.getenv("IDE_TYPE") ?: "IC"
plugins { plugins {
idea idea
kotlin("jvm") version "2.0.20" kotlin("jvm") version "2.0.20"
id("org.jetbrains.intellij.platform") version "2.0.1" id("org.jetbrains.intellij.platform") version "2.2.1"
id("org.jetbrains.changelog") version "2.2.1" id("org.jetbrains.changelog") version "2.2.1"
} }
...@@ -70,9 +70,9 @@ project(":plugin") { ...@@ -70,9 +70,9 @@ project(":plugin") {
dependencies { dependencies {
intellijPlatform { intellijPlatform {
if (projectType == "RD") { if (projectType == "RD") {
create("RD", riderPlatformVersionProp) create("RD", riderPlatformVersionProp, useInstaller = false)
} else { } else {
create("IC", ideaPlatformVersionProp) create("IC", ideaPlatformVersionProp, useInstaller = false)
} }
} }
implementation(project(":common")) implementation(project(":common"))
...@@ -179,7 +179,7 @@ project(":plugin") { ...@@ -179,7 +179,7 @@ project(":plugin") {
project(":common") { project(":common") {
dependencies { dependencies {
intellijPlatform { intellijPlatform {
create("IC", ideaPlatformVersionProp) create("IC", ideaPlatformVersionProp, useInstaller = false)
} }
} }
} }
...@@ -188,7 +188,7 @@ project(":common") { ...@@ -188,7 +188,7 @@ project(":common") {
project(":idea") { project(":idea") {
dependencies { dependencies {
intellijPlatform { intellijPlatform {
create("IC", ideaPlatformVersionProp) create("IC", ideaPlatformVersionProp, useInstaller = false)
bundledPlugins("com.intellij.java", "JUnit") bundledPlugins("com.intellij.java", "JUnit")
} }
} }
...@@ -203,7 +203,7 @@ project(":idea") { ...@@ -203,7 +203,7 @@ project(":idea") {
project(":rider") { project(":rider") {
dependencies { dependencies {
intellijPlatform { intellijPlatform {
create("RD", riderPlatformVersionProp) create("RD", riderPlatformVersionProp, useInstaller = false)
} }
} }
......
...@@ -3,15 +3,15 @@ ...@@ -3,15 +3,15 @@
pluginGroup = fi.jyu.rider.comtest pluginGroup = fi.jyu.rider.comtest
pluginName = ComTest Runner pluginName = ComTest Runner
# SemVer format -> https://semver.org # SemVer format -> https://semver.org
pluginVersion = 1.2.0 pluginVersion = 1.2.1
# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild = 242 pluginSinceBuild = 251
pluginUntilBuild = pluginUntilBuild =
# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension # IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#intellij-extension
riderPlatformVersion = 2024.2 riderPlatformVersion = 2025.1-SNAPSHOT
ideaPlatformVersion = 2024.2 ideaPlatformVersion = 251-EAP-SNAPSHOT
# Opt-out flag for bundling Kotlin standard library -> https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library # Opt-out flag for bundling Kotlin standard library -> https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library
# suppress inspection "UnusedProperty" # suppress inspection "UnusedProperty"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment