File tree Expand file tree Collapse file tree 7 files changed +28
-16
lines changed
rider/main/resources/META-INF Expand file tree Collapse file tree 7 files changed +28
-16
lines changed Original file line number Diff line number Diff line change 12
12
- uses : actions/checkout@v2
13
13
with :
14
14
submodules : recursive
15
+ - uses : actions/setup-java@v4
16
+ with :
17
+ java-version : ' 21'
18
+ distribution : ' corretto'
15
19
- uses : actions/cache@v2
16
20
with :
17
21
path : |
Original file line number Diff line number Diff line change 12
12
- uses : actions/checkout@v2
13
13
with :
14
14
submodules : recursive
15
- - run : ./gradlew :rdgen
15
+ - uses : actions/setup-java@v4
16
+ with :
17
+ java-version : ' 21'
18
+ distribution : ' corretto'
19
+ - run : ./gradlew :protocol:rdgen
16
20
- run : ./gradlew :buildPlugin -PBuildConfiguration=Release
17
21
- run : ./gradlew :signPlugin -PBuildConfiguration=Release
18
22
env :
26
30
find : ' release/'
27
31
replace : ' '
28
32
- uses : actions/upload-artifact@v3
29
- if : always()
30
33
with :
31
34
name : odata-cli-ui.${{ steps.fix_branch_name.outputs.value }}
32
35
path : output
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import com.jetbrains.plugin.structure.base.utils.isFile
2
2
import groovy.ant.FileNameFinder
3
3
import org.apache.tools.ant.taskdefs.condition.Os
4
4
import org.jetbrains.intellij.platform.gradle.Constants
5
- import org.jetbrains.intellij.platform.gradle.IntelliJPlatformType
6
5
import java.io.ByteArrayOutputStream
7
6
8
7
plugins {
@@ -68,22 +67,28 @@ sourceSets {
68
67
}
69
68
}
70
69
70
+ tasks.compileJava {
71
+ sourceCompatibility = JavaVersion .VERSION_21 .toString()
72
+ targetCompatibility = JavaVersion .VERSION_21 .toString()
73
+ }
74
+
71
75
tasks.compileKotlin {
72
- kotlinOptions { jvmTarget = " 17 " }
76
+ kotlinOptions { jvmTarget = " 21 " }
73
77
}
74
78
75
79
intellijPlatform {
76
80
pluginVerification {
77
81
cliPath = File (" /libs/verifier-cli-1.373-all.jar" ) // https://github.com/JetBrains/intellij-plugin-verifier
78
82
ides {
79
83
ides(listOf (
80
- " RD-2024.1" ,
81
- " RD-2024.1.1" ,
82
- " RD-2024.1.2" ,
83
- " RD-2024.1.3" ,
84
- " RD-2024.1.4" ,
85
- " RD-2024.1.5" ,
86
- " RD-2024.1.6"
84
+ " RD-2024.2" ,
85
+ " RD-2024.2.1" ,
86
+ " RD-2024.2.2" ,
87
+ " RD-2024.2.3" ,
88
+ " RD-2024.2.4" ,
89
+ " RD-2024.2.5" ,
90
+ " RD-2024.2.6" ,
91
+ " RD-2024.2.7"
87
92
))
88
93
}
89
94
}
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ PublishToken="_PLACEHOLDER_"
17
17
# Release: 2020.2
18
18
# EAP: 2020.3-EAP2-SNAPSHOT
19
19
# Nightly: 2020.3-SNAPSHOT
20
- ProductVersion =2024.1
20
+ ProductVersion =2024.2
21
21
22
22
# Kotlin 1.4 will bundle the stdlib dependency by default, causing problems with the version bundled with the IDE
23
23
# https://blog.jetbrains.com/kotlin/2020/07/kotlin-1-4-rc-released/#stdlib-default
Original file line number Diff line number Diff line change 1
1
[versions ]
2
- kotlin = " 1.8.20 " # https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
2
+ kotlin = " 1.9.24 " # https://plugins.jetbrains.com/docs/intellij/using-kotlin.html#kotlin-standard-library
3
3
rdGen = " 2024.1.1" # https://github.com/JetBrains/rd/releases
4
4
intellijPlatform = " 2.0.1" # https://github.com/JetBrains/intellij-platform-gradle-plugin/releases
5
- gradleJvmWrapper = " 0.14.0" # https://github.com/JetBrains/intellij-platform- gradle-plugin/releases
5
+ gradleJvmWrapper = " 0.14.0" # https://github.com/mfilippov/ gradle-jvm-wrapper
6
6
7
7
[libraries ]
8
8
kotlinStdLib = { group = " org.jetbrains.kotlin" , name = " kotlin-stdlib" , version.ref = " kotlin" }
Original file line number Diff line number Diff line change 3
3
<PropertyGroup >
4
4
<!-- See https://www.nuget.org/packages/JetBrains.ReSharper.SDK -->
5
5
<!-- Keep in sync with ProductVersion in gradle.properties -->
6
- <SdkVersion >2024.1 .0</SdkVersion >
6
+ <SdkVersion >2024.2 .0</SdkVersion >
7
7
8
8
<Title >OData CLI UI</Title >
9
9
<Description >Description</Description >
Original file line number Diff line number Diff line change 3
3
<name >OData CLI UI</name >
4
4
<version >_PLACEHOLDER_</version >
5
5
<vendor url =" https://github.com/ellizio/odata-cli-ui" >ellizio</vendor >
6
- <idea-version since-build =" 241 " until-build =" 241 .*" />
6
+ <idea-version since-build =" 242 " until-build =" 242 .*" />
7
7
<depends >com.intellij.modules.rider</depends >
8
8
<depends >org.jetbrains.plugins.terminal</depends >
9
9
<resource-bundle >UiBundle</resource-bundle >
You can’t perform that action at this time.
0 commit comments