Skip to content

Commit 97ee0b3

Browse files
authored
Merge pull request #331 from MariyaFilippova/feature/2025.1
#329 rebuild the plugin for 2025.1 PhpStorm release
2 parents 9f9e8a1 + 71cd853 commit 97ee0b3

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

build.gradle.kts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ fun properties(key: String) = project.findProperty(key).toString()
66
plugins {
77
id("java")
88
id("org.jetbrains.kotlin.jvm") version "2.0.0"
9-
id("org.jetbrains.intellij.platform") version "2.0.1"
9+
id("org.jetbrains.intellij.platform") version "2.4.0"
1010
id("org.jetbrains.changelog") version "1.3.1"
1111
id("org.jetbrains.qodana") version "0.1.13"
1212
}
@@ -32,6 +32,7 @@ dependencies {
3232
bundledPlugins(properties("platformBundledPlugins").split(',').map(String::trim).filter(String::isNotEmpty))
3333
plugins(properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty))
3434

35+
testFramework(TestFrameworkType.Platform)
3536
testFramework(TestFrameworkType.Plugin.Java)
3637
}
3738

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ pluginGroup = de.espend.idea.php.annotation
55
pluginName = PHP Annotations
66

77
# SemVer format -> https://semver.org
8-
pluginVersion = 11.2.0
8+
pluginVersion = 11.2.1
99

1010
# See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
1111
# for insight into build numbers and IntelliJ Platform versions.
@@ -14,12 +14,12 @@ pluginUntilBuild = 299.*
1414

1515
# IntelliJ Platform Properties -> https://github.com/JetBrains/gradle-intellij-plugin#intellij-platform-properties
1616
platformType = IU
17-
platformVersion = 2024.3.5
17+
platformVersion = 251.23774.16-EAP-SNAPSHOT
1818

1919
# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
2020
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
2121
platformBundledPlugins = com.intellij.java,com.jetbrains.plugins.webDeployment
22-
platformPlugins = com.jetbrains.php:243.26053.27,com.jetbrains.twig:243.26053.20,de.espend.idea.php.toolbox:6.2.0
22+
platformPlugins = com.jetbrains.php:251.23774.200,com.jetbrains.twig:251.23774.16,de.espend.idea.php.toolbox:6.2.0,com.intellij.modules.json:243.23654.117
2323

2424
# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
2525
javaVersion = 21

src/main/resources/META-INF/plugin.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -213,6 +213,7 @@
213213

214214
<depends>com.jetbrains.php</depends>
215215
<depends>com.intellij.modules.platform</depends>
216+
<depends>com.intellij.modules.json</depends>
216217
<depends optional="true" config-file="de.espend.idea.php.annotation-toolbox.xml">de.espend.idea.php.toolbox</depends>
217218

218219
</idea-plugin>

0 commit comments

Comments
 (0)