Skip to content

Commit

Permalink
Hotfix - support IJ CE 2023.2
Browse files Browse the repository at this point in the history
  • Loading branch information
valb3r committed Aug 11, 2023
1 parent b844e67 commit 734692a
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 4 deletions.
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</version>
<version>0.5.4.2</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.2:</p>
<ul>
<li>
Hotfix: Support for IJ Community edition 2023.2
</li>
</ul>
<p>0.5.4:</p>
<ul>
<li>
Expand Down
3 changes: 3 additions & 0 deletions bpmn-intellij-plugin-core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ dependencies {
implementation project(":xml-parser-api")

implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8"
implementation("org.apache.xmlgraphics:batik-transcoder:1.16") { // JB has removed batik from IC 2023.2
exclude group: 'xml-apis', module: 'xml-apis'
}

implementation "com.fasterxml.jackson.core:jackson-databind:$jackson"
implementation "com.fasterxml.jackson.module:jackson-module-kotlin:$jackson"
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ ext {
kotlinApiVersion = '1.3' // It must be same as JB supplied Kotlin STDLIB i.e. for 2018 = 1.3. See https://youtrack.jetbrains.com/issue/KT-37435

mapstruct = '1.4.2.Final'
jackson = '2.13.0'
jackson = '2.15.2'
dom4j = '2.0.0'

junitJupiter = '5.6.2'
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.1</version>
<version>0.5.4.2</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.2:</p>
<ul>
<li>
Hotfix: Support for IJ Community edition 2023.2
</li>
</ul>
<p>0.5.4.1:</p>
<ul>
<li>
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</version>
<version>0.5.4.2</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.2:</p>
<ul>
<li>
Hotfix: Support for IJ Community edition 2023.2
</li>
</ul>
<p>0.5.4:</p>
<ul>
<li>
Expand Down

0 comments on commit 734692a

Please sign in to comment.