Skip to content

Commit

Permalink
Update source compatibility and runner version
Browse files Browse the repository at this point in the history
  • Loading branch information
valb3r committed Apr 28, 2024
1 parent 6d72af3 commit 1b9a9de
Show file tree
Hide file tree
Showing 17 changed files with 33 additions and 33 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ jobs:

steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
fi
env:
TAG_NAME: ${{ github.ref_name }}
- name: Set up JDK 11
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
java-version: 11
java-version: 17
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build, test with Gradle
Expand Down
6 changes: 3 additions & 3 deletions activiti-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ intellij {
}

runPluginVerifier {
ideVersions = ["IU-2021.3", "IC-2021.3"]
ideVersions = ["IU-2022.3", "IC-2022.3"]
}

verifyPlugin {
Expand All @@ -56,13 +56,13 @@ publishPlugin {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<!-- <helpset file="myhelp.jar" path="/Help.hs" /> -->

<!-- Minimum and maximum build of IDE compatible with the plugin -->
<idea-version since-build="213"/>
<idea-version since-build="223"/>

<!-- Resource bundle (/messages/MyPluginBundle.properties) to be used with `key` attributes in extension points
and implicit keys like `action.[pluginID].[ActionID].text` -->
Expand Down
4 changes: 2 additions & 2 deletions activiti-xml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ dependencies {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
4 changes: 2 additions & 2 deletions bpmn-intellij-plugin-common-tests/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,13 @@ sourceSets {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
4 changes: 2 additions & 2 deletions bpmn-intellij-plugin-commons/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -47,13 +47,13 @@ publishPlugin.enabled = false

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
4 changes: 2 additions & 2 deletions bpmn-intellij-plugin-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,13 @@ publishPlugin.enabled = false

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ plugins {
}

ext {
intellijPlatform = 'IU-2023.1'
intellijPlatform = 'IU-2022.3'
intellijPlatformPlugins = ['java', 'DatabaseTools'] // DatabaseTools is for BPMN process 'debugging'

kotlinStdlib = '1.5.30'
Expand Down
6 changes: 3 additions & 3 deletions camunda-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ intellij {
}

runPluginVerifier {
ideVersions = ["IU-2021.3", "IC-2021.3"]
ideVersions = ["IU-2022.3", "IC-2022.3"]
}

verifyPlugin {
Expand All @@ -56,13 +56,13 @@ publishPlugin {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@
<!-- <helpset file="myhelp.jar" path="/Help.hs" /> -->

<!-- Minimum and maximum build of IDE compatible with the plugin -->
<idea-version since-build="213"/>
<idea-version since-build="223"/>

<!-- Resource bundle (/messages/MyPluginBundle.properties) to be used with `key` attributes in extension points
and implicit keys like `action.[pluginID].[ActionID].text` -->
Expand Down
4 changes: 2 additions & 2 deletions camunda-xml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ dependencies {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
6 changes: 3 additions & 3 deletions flowable-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ intellij {
}

runPluginVerifier {
ideVersions = ["IU-2021.3", "IC-2021.3"]
ideVersions = ["IU-2022.3", "IC-2022.3"]
}

verifyPlugin {
Expand All @@ -56,13 +56,13 @@ publishPlugin {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@
<!-- <helpset file="myhelp.jar" path="/Help.hs" /> -->

<!-- Minimum and maximum build of IDE compatible with the plugin -->
<idea-version since-build="213"/>
<idea-version since-build="223"/>

<!-- Resource bundle (/messages/MyPluginBundle.properties) to be used with `key` attributes in extension points
and implicit keys like `action.[pluginID].[ActionID].text` -->
Expand Down
4 changes: 2 additions & 2 deletions flowable-xml-parser/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,13 @@ dependencies {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down
4 changes: 2 additions & 2 deletions xml-parser-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ dependencies {

compileKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
compileTestKotlin {
kotlinOptions {
jvmTarget = "1.8"
jvmTarget = "17"
apiVersion = kotlinApiVersion
}
}
Expand Down

0 comments on commit 1b9a9de

Please sign in to comment.