Skip to content

Commit

Permalink
Upgrade polyflow + camunda + springBoot
Browse files Browse the repository at this point in the history
  • Loading branch information
p-wunderlich committed Jun 13, 2024
1 parent 77b80c6 commit 56b2fa2
Show file tree
Hide file tree
Showing 7 changed files with 167 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,15 @@
-->


<springboot.version>3.2.5</springboot.version>
<polyflow.version>4.1.5</polyflow.version>
<springboot.version>3.2.6</springboot.version>
<polyflow.version>4.1.6</polyflow.version>

<camunda-ce.version>7.20.0</camunda-ce.version>
<camunda-ee.version>7.20.0-ee</camunda-ee.version>
<camunda-ce.version>7.21.0</camunda-ce.version>
<camunda-ee.version>7.21.0-ee</camunda-ee.version>
<camunda-springboot.version>${camunda-ce.version}</camunda-springboot.version>

<camunda-bpm-assert.version>${camunda-ce.version}</camunda-bpm-assert.version>
<camunda-bpm-mockito.version>7.20.0</camunda-bpm-mockito.version>
<camunda-bpm-mockito.version>7.21.0</camunda-bpm-mockito.version>
<version.camunda.spin>1.23.0</version.camunda.spin>
<camunda-bpm-data.version>1.5.0</camunda-bpm-data.version>
<springdoc.version>2.5.0</springdoc.version>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
--

Check failure on line 1 in scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql#L1

Expected SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED near top of file
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

insert into ACT_GE_SCHEMA_LOG
values ('1000', CURRENT_TIMESTAMP, '7.21.0');

alter table ACT_RU_EXT_TASK
add column CREATE_TIME_ timestamp;

Check warning on line 22 in scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql#L22

Expected TSQL Keyword to be capitalized

alter table ACT_RU_JOB
add column ROOT_PROC_INST_ID_ varchar(64);

Check warning on line 25 in scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql#L25

Expected TSQL Keyword to be capitalized

create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);

Check warning on line 27 in scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-axon-server-local-polyflow/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql#L27

Expected TSQL Keyword to be capitalized
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
--
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

insert into ACT_GE_SCHEMA_LOG
values ('1000', CURRENT_TIMESTAMP, '7.21.0');

alter table ACT_RU_EXT_TASK
add column CREATE_TIME_ timestamp;

alter table ACT_RU_JOB

Check warning on line 24 in scenarios/distributed-axon-server/process-application/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-axon-server/process-application/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql#L24

Expected TSQL Keyword to be capitalized
add column ROOT_PROC_INST_ID_ varchar(64);

create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);

Check warning on line 27 in scenarios/distributed-axon-server/process-application/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-axon-server/process-application/src/main/resources/db/migrations/V0_0_14__postgres_engine_7.18_to_7.21.sql#L27

Expected TSQL Keyword to be capitalized
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
--

Check failure on line 1 in scenarios/distributed-kafka/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_13__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-kafka/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_13__postgres_engine_7.18_to_7.21.sql#L1

Expected SET QUOTED_IDENTIFIER ON near top of file
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

insert into ACT_GE_SCHEMA_LOG
values ('1000', CURRENT_TIMESTAMP, '7.21.0');

Check warning on line 19 in scenarios/distributed-kafka/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_13__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-kafka/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_13__postgres_engine_7.18_to_7.21.sql#L19

Expected TSQL Keyword to be capitalized

alter table ACT_RU_EXT_TASK

Check warning on line 21 in scenarios/distributed-kafka/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_13__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/distributed-kafka/process-application-local-polyflow/src/main/resources/db/migrations/V0_0_13__postgres_engine_7.18_to_7.21.sql#L21

Expected TSQL Keyword to be capitalized
add column CREATE_TIME_ timestamp;

alter table ACT_RU_JOB
add column ROOT_PROC_INST_ID_ varchar(64);

create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
--

Check failure on line 1 in scenarios/single-node-jpa-maria/src/main/resources/db/migrations/mariadb/V0_0_8__mariadb_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/main/resources/db/migrations/mariadb/V0_0_8__mariadb_engine_7.19_to_7.21.sql#L1

Expected SET QUOTED_IDENTIFIER ON near top of file
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

insert into ACT_GE_SCHEMA_LOG
values ('1000', CURRENT_TIMESTAMP, '7.21.0');

alter table ACT_RU_EXT_TASK
add column CREATE_TIME_ datetime(3);

alter table ACT_RU_JOB

Check warning on line 24 in scenarios/single-node-jpa-maria/src/main/resources/db/migrations/mariadb/V0_0_8__mariadb_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/main/resources/db/migrations/mariadb/V0_0_8__mariadb_engine_7.19_to_7.21.sql#L24

Expected TSQL Keyword to be capitalized
add column ROOT_PROC_INST_ID_ varchar(64);

create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
--

Check failure on line 1 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L1

Expected SET ANSI_NULLS ON near top of file

Check failure on line 1 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L1

Expected SET NOCOUNT ON near top of file

Check failure on line 1 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L1

Expected SET QUOTED_IDENTIFIER ON near top of file

Check failure on line 1 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L1

Expected SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED near top of file
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

insert into ACT_GE_SCHEMA_LOG

Check warning on line 18 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L18

Expected TSQL Keyword to be capitalized
values ('1000', CURRENT_TIMESTAMP, '7.21.0');

Check warning on line 19 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L19

Expected TSQL Keyword to be capitalized

alter table ACT_RU_EXT_TASK

Check warning on line 21 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L21

Expected TSQL Keyword to be capitalized
add column CREATE_TIME_ timestamp;

alter table ACT_RU_JOB
add column ROOT_PROC_INST_ID_ varchar(64);

Check warning on line 25 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L25

Expected TSQL Keyword to be capitalized

create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);

Check warning on line 27 in scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa-maria/src/test/resources/db/migrations/h2/V0_0_8__h2_engine_7.19_to_7.21.sql#L27

Expected TSQL Keyword to be capitalized
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
--

Check failure on line 1 in scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql#L1

Expected SET NOCOUNT ON near top of file

Check failure on line 1 in scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql#L1

Expected SET QUOTED_IDENTIFIER ON near top of file
-- Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
-- under one or more contributor license agreements. See the NOTICE file
-- distributed with this work for additional information regarding copyright
-- ownership. Camunda licenses this file to you under the Apache License,
-- Version 2.0; you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
--

insert into ACT_GE_SCHEMA_LOG

Check warning on line 18 in scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql#L18

Expected TSQL Keyword to be capitalized

Check failure on line 18 in scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql#L18

Object name not schema qualified
values ('1000', CURRENT_TIMESTAMP, '7.21.0');

alter table ACT_RU_EXT_TASK
add column CREATE_TIME_ timestamp;

alter table ACT_RU_JOB

Check warning on line 24 in scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql

View check run for this annotation

Codacy Production / Codacy Static Code Analysis

scenarios/single-node-jpa/src/main/resources/db/migrations/h2-postgresql/V0_0_15__postgres_engine_7.18_to_7.21.sql#L24

Expected TSQL Keyword to be capitalized
add column ROOT_PROC_INST_ID_ varchar(64);

create index ACT_IDX_JOB_ROOT_PROCINST on ACT_RU_JOB(ROOT_PROC_INST_ID_);

0 comments on commit 56b2fa2

Please sign in to comment.