Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ fun properties(key: String) = project.findProperty(key).toString()
plugins {
id("java")
id("org.jetbrains.kotlin.jvm") version "2.0.0"
id("org.jetbrains.intellij.platform") version "2.0.1"
id("org.jetbrains.intellij.platform") version "2.4.0"
id("org.jetbrains.changelog") version "1.3.1"
id("org.jetbrains.qodana") version "0.1.13"
}
Expand All @@ -32,6 +32,7 @@ dependencies {
bundledPlugins(properties("platformBundledPlugins").split(',').map(String::trim).filter(String::isNotEmpty))
plugins(properties("platformPlugins").split(',').map(String::trim).filter(String::isNotEmpty))

testFramework(TestFrameworkType.Platform)
testFramework(TestFrameworkType.Plugin.Java)
}

Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pluginGroup = de.espend.idea.php.annotation
pluginName = PHP Annotations

# SemVer format -> https://semver.org
pluginVersion = 11.2.0
pluginVersion = 11.2.1

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

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

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
platformBundledPlugins = com.intellij.java,com.jetbrains.plugins.webDeployment
platformPlugins = com.jetbrains.php:243.26053.27,com.jetbrains.twig:243.26053.20,de.espend.idea.php.toolbox:6.2.0
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

# Java language level used to compile sources and to generate the files for - Java 11 is required since 2020.3
javaVersion = 21
Expand Down
1 change: 1 addition & 0 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,7 @@

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

</idea-plugin>