Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion activiti-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ intellijPlatform {
pluginVerification {
freeArgs = ["-mute", "TemplateWordInPluginName"]
ides {
ide(intellijPlatformVersion)
ide(intelijIDEVersion)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Activiti BPMN visualizer</name>

<!-- Plugin version -->
<version>0.5.4.4</version>
<version>0.5.4.5</version>

<!-- Unique identifier of the plugin. Cannot be changed between the plugin versions.
If not specified, assumed to be equal to <name>. -->
Expand Down Expand Up @@ -40,6 +40,12 @@
<!-- Description of changes in the latest version of the plugin. Displayed in the "Plugins" settings dialog and
in the plugin repository Web interface. -->
<change-notes><![CDATA[
<p>0.5.4.5:</p>
<ul>
<li>
Fixed compatibility issue with IntelliJ 2025.3
</li>
</ul>
<p>0.5.4.4:</p>
<ul>
<li>
Expand Down
5 changes: 3 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,14 @@ import org.jetbrains.kotlin.gradle.tasks.KotlinCompile

plugins {
id 'java'
id 'org.jetbrains.intellij.platform' version '2.4.0'
id 'org.jetbrains.intellij.platform' version '2.11.0'
id 'org.jetbrains.kotlin.jvm' version '2.1.0'
id 'org.jetbrains.kotlin.kapt' version '2.1.0'
}

ext {
intellijPlatformVersion = '2024.3.5'

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It is recommended to have platform version to be one major version less from current, current is 2025.3.2

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That is 2024.3.5?

Copy link
Copy Markdown
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Could u pls share recommendation which u mean?

Copy link
Copy Markdown
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes it is 2024.3.5 for now until they don't release 2026

intellijPlatformVersion = '2025.3.2'
intelijIDEVersion = "IC-2025.3"
intellijPlatformPlugins = ['com.intellij.java', 'com.intellij.database'] // DatabaseTools is for BPMN process 'debugging'

kotlinStdlib = '2.1.0'
Expand Down
2 changes: 1 addition & 1 deletion camunda-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ intellijPlatform {
pluginVerification {
freeArgs = ["-mute", "TemplateWordInPluginName"]
ides {
ide(intellijPlatformVersion)
ide(intelijIDEVersion)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Camunda BPMN visualizer</name>

<!-- Plugin version -->
<version>0.5.4.4</version>
<version>0.5.4.5</version>

<!-- Unique identifier of the plugin. Cannot be changed between the plugin versions.
If not specified, assumed to be equal to <name>. -->
Expand Down Expand Up @@ -40,6 +40,12 @@
<!-- Description of changes in the latest version of the plugin. Displayed in the "Plugins" settings dialog and
in the plugin repository Web interface. -->
<change-notes><![CDATA[
<p>0.5.4.5:</p>
<ul>
<li>
Fixed compatibility issue with IntelliJ 2025.3
</li>
</ul>
<p>0.5.4.4:</p>
<ul>
<li>
Expand Down
2 changes: 1 addition & 1 deletion flowable-intellij-plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ intellijPlatform {
pluginVerification {
freeArgs = ["-mute", "TemplateWordInPluginName"]
ides {
ide(intellijPlatformVersion)
ide(intelijIDEVersion)
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<name>Flowable BPMN visualizer</name>

<!-- Plugin version -->
<version>0.5.4.4</version>
<version>0.5.4.5</version>

<!-- Unique identifier of the plugin. Cannot be changed between the plugin versions.
If not specified, assumed to be equal to <name>. -->
Expand Down Expand Up @@ -40,6 +40,12 @@
<!-- Description of changes in the latest version of the plugin. Displayed in the "Plugins" settings dialog and
in the plugin repository Web interface. -->
<change-notes><![CDATA[
<p>0.5.4.5:</p>
<ul>
<li>
Fixed compatibility issue with IntelliJ 2025.3
</li>
</ul>
<p>0.5.4.4:</p>
<ul>
<li>
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down