Skip to content

Commit 86bc9ed

Browse files
plugin compatibility for 2024.1
1 parent 75ffe6e commit 86bc9ed

File tree

2 files changed

+10
-8
lines changed

2 files changed

+10
-8
lines changed

build.gradle

+9-7
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@
44
*/
55

66
plugins {
7-
id 'org.jetbrains.intellij' version '1.13.3'
7+
id 'org.jetbrains.intellij' version '1.17.3'
88
id 'checkstyle'
99
id 'pmd'
10-
id 'org.jetbrains.changelog' version '2.0.0'
10+
id 'org.jetbrains.changelog' version '2.2.0'
1111
}
1212

1313
repositories {
@@ -23,12 +23,14 @@ apply plugin: 'idea'
2323
apply plugin: 'groovy'
2424
apply plugin: 'org.jetbrains.changelog'
2525

26-
def phpPluginVersion = System.getProperty("phpPluginVersion", "231.8109.199")
27-
def ideaVersion = System.getProperty("ideaVersion", "2023.1")
26+
def phpPluginVersion = System.getProperty("phpPluginVersion", "241.14494.158")
27+
def ideaVersion = System.getProperty("ideaVersion", "2024.1")
2828
def javaVersion = 17
2929

30-
sourceCompatibility = javaVersion
31-
targetCompatibility = javaVersion
30+
java {
31+
sourceCompatibility = javaVersion
32+
targetCompatibility = javaVersion
33+
}
3234

3335
intellij {
3436
version = ideaVersion
@@ -41,7 +43,7 @@ intellij {
4143
'properties',
4244
'com.intellij.css',
4345
'JavaScript',
44-
'com.intellij.lang.jsgraphql:3.4.0',
46+
'com.intellij.lang.jsgraphql:241.14494.150',
4547
'platform-images',
4648
'copyright'
4749
]

resources/META-INF/plugin.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
</change-notes>
2525

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

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

0 commit comments

Comments
 (0)