Skip to content

Commit affd7c2

Browse files
author
Alberto Venturini
committed
Add support for IntelliJ 2022.3 (#6)
1 parent 7fb437d commit affd7c2

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

build.gradle

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,14 @@
33
// Modified by Alberto Venturini, 2022
44
plugins {
55
id 'idea'
6+
7+
// Java support
68
id 'java'
9+
10+
// Gradle IntelliJ Plugin
711
id 'org.jetbrains.intellij' version '1.9.0'
12+
13+
// https://github.com/researchgate/gradle-release
814
id 'net.researchgate.release' version '2.8.0'
915
}
1016

@@ -54,6 +60,7 @@ test {
5460
systemProperty 'graphDatabaseSupportDevelopment', 'true'
5561
}
5662

63+
// See https://github.com/researchgate/gradle-release
5764
release {
5865
failOnCommitNeeded = true
5966
failOnPublishNeeded = true

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
1-
version=0.1.3
1+
version=0.1.4
22

33
# Intellij SDK
44
intellijSdkVersion=2022.2
5+
# intellijSdkVersion=LATEST-EAP-SNAPSHOT
56

67
# Versions
78
versionJunit=4.12

graph-database-plugin/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ dependencies {
88
implementation project(':ui:jetbrains')
99
}
1010

11-
1211
intellij {
1312
version = intellijSdkVersion
1413
pluginName = 'GraphDatabase'
@@ -30,9 +29,10 @@ intellij {
3029
plugins = ['java']
3130
}
3231

32+
// See https://plugins.jetbrains.com/docs/intellij/configuring-plugin-project.html#patching-the-plugin-configuration-file
3333
patchPluginXml {
3434
sinceBuild = "222.0"
35-
untilBuild = "222.*"
35+
untilBuild = "223.*"
3636
}
3737

3838
runIde {

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,8 @@
6969
]]></change-notes>
7070

7171
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html for description -->
72-
<idea-version since-build="221.0" until-build="222.*" />
72+
<!-- These versions are automatically replaced by the patchPluginXml task -->
73+
<idea-version since-build="999.0" until-build="999.0" />
7374

7475
<!-- please see http://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/plugin_compatibility.html
7576
on how to target different products -->

0 commit comments

Comments
 (0)