Skip to content

Commit

Permalink
Lower platform version and add verifier in release
Browse files Browse the repository at this point in the history
  • Loading branch information
valb3r committed Jan 6, 2022
1 parent 48406f6 commit 2acbec5
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build, test with Gradle
run: ./gradlew clean build buildPlugin
run: ./gradlew clean build buildPlugin runPluginVerifier
- name: Release plugin(s)
run: ./gradlew publishPlugin
env:
Expand Down
4 changes: 4 additions & 0 deletions activiti-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ intellij {
plugins = intellijPlatformPlugins
}

runPluginVerifier {
ideVersions = ["IU-2019.3.5"]
}

verifyPlugin {
ignoreWarnings = true
}
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-2021.3'
intellijPlatform = 'IU-2019.3'
intellijPlatformPlugins = ['java', 'DatabaseTools'] // DatabaseTools is for BPMN process 'debugging'

kotlinStdlib = '1.5.30'
Expand Down
4 changes: 4 additions & 0 deletions camunda-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ intellij {
plugins = intellijPlatformPlugins
}

runPluginVerifier {
ideVersions = ["IU-2019.3.5"]
}

verifyPlugin {
ignoreWarnings = true
}
Expand Down
4 changes: 4 additions & 0 deletions flowable-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ intellij {
plugins = intellijPlatformPlugins
}

runPluginVerifier {
ideVersions = ["IU-2019.3.5"]
}

verifyPlugin {
ignoreWarnings = true
}
Expand Down

0 comments on commit 2acbec5

Please sign in to comment.