Skip to content

Commit 9214444

Browse files
Update ancient dependency for bpmn layout
1 parent 8d52329 commit 9214444

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

modules/flowable-bpmn-layout/pom.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@
100100
<artifactId>jcl-over-slf4j</artifactId>
101101
</dependency>
102102
<dependency>
103-
<groupId>org.tinyjee.jgraphx</groupId>
103+
<groupId>com.github.vlsi.mxgraph</groupId>
104104
<artifactId>jgraphx</artifactId>
105-
<version>1.10.4.1</version>
105+
<version>4.2.2</version>
106106
</dependency>
107107
<dependency>
108108
<groupId>junit</groupId>

modules/flowable-bpmn-layout/src/main/java/org/flowable/bpmn/BpmnAutoLayout.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,7 +266,7 @@ protected void handleSequenceFlow() {
266266
boundaryEdgeStyle.put(mxConstants.STYLE_EXIT_Y, 1.0);
267267
boundaryEdgeStyle.put(mxConstants.STYLE_ENTRY_X, 0.5);
268268
boundaryEdgeStyle.put(mxConstants.STYLE_ENTRY_Y, 1.0);
269-
boundaryEdgeStyle.put(mxConstants.STYLE_EDGE, mxEdgeStyle.orthConnector);
269+
boundaryEdgeStyle.put(mxConstants.STYLE_EDGE, mxEdgeStyle.OrthConnector);
270270
graph.getStylesheet().putCellStyle(STYLE_BOUNDARY_SEQUENCEFLOW, boundaryEdgeStyle);
271271

272272
for (SequenceFlow sequenceFlow : sequenceFlows.values()) {
@@ -304,7 +304,7 @@ protected void handleAssociations() {
304304
boundaryEdgeStyle.put(mxConstants.STYLE_EXIT_Y, 1.0);
305305
boundaryEdgeStyle.put(mxConstants.STYLE_ENTRY_X, 0.5);
306306
boundaryEdgeStyle.put(mxConstants.STYLE_ENTRY_Y, 1.0);
307-
boundaryEdgeStyle.put(mxConstants.STYLE_EDGE, mxEdgeStyle.orthConnector);
307+
boundaryEdgeStyle.put(mxConstants.STYLE_EDGE, mxEdgeStyle.OrthConnector);
308308
graph.getStylesheet().putCellStyle(STYLE_BOUNDARY_SEQUENCEFLOW, boundaryEdgeStyle);
309309

310310
for (Association association : associations.values()) {

0 commit comments

Comments
 (0)