Skip to content

Commit

Permalink
plugin compatibility for 2024.1
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrkwiecinski committed Jun 28, 2024
1 parent 75ffe6e commit 86bc9ed
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
16 changes: 9 additions & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
*/

plugins {
id 'org.jetbrains.intellij' version '1.13.3'
id 'org.jetbrains.intellij' version '1.17.3'
id 'checkstyle'
id 'pmd'
id 'org.jetbrains.changelog' version '2.0.0'
id 'org.jetbrains.changelog' version '2.2.0'
}

repositories {
Expand All @@ -23,12 +23,14 @@ apply plugin: 'idea'
apply plugin: 'groovy'
apply plugin: 'org.jetbrains.changelog'

def phpPluginVersion = System.getProperty("phpPluginVersion", "231.8109.199")
def ideaVersion = System.getProperty("ideaVersion", "2023.1")
def phpPluginVersion = System.getProperty("phpPluginVersion", "241.14494.158")
def ideaVersion = System.getProperty("ideaVersion", "2024.1")
def javaVersion = 17

sourceCompatibility = javaVersion
targetCompatibility = javaVersion
java {
sourceCompatibility = javaVersion
targetCompatibility = javaVersion
}

intellij {
version = ideaVersion
Expand All @@ -41,7 +43,7 @@ intellij {
'properties',
'com.intellij.css',
'JavaScript',
'com.intellij.lang.jsgraphql:3.4.0',
'com.intellij.lang.jsgraphql:241.14494.150',
'platform-images',
'copyright'
]
Expand Down
2 changes: 1 addition & 1 deletion resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
</change-notes>

<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Build+Number+Ranges for description -->
<idea-version since-build="231.8109.175"/>
<idea-version since-build="241.14494.158"/>

<!-- please see http://confluence.jetbrains.com/display/IDEADEV/Plugin+Compatibility+with+IntelliJ+Platform+Products
on how to target different products -->
Expand Down

0 comments on commit 86bc9ed

Please sign in to comment.