From 035cb9d1fc86bcb7880d3573531217ec51a9bd3b Mon Sep 17 00:00:00 2001 From: Gabor Claussnitzer Date: Sun, 4 Aug 2024 18:12:17 +0200 Subject: [PATCH] chore: updated build files and READMEs --- README.md | 8 ++++---- camunda-modeler-plugin/package-lock.json | 4 ++-- camunda-modeler-plugin/package.json | 2 +- gradle-plugin-8/README.md | 4 ++-- gradle-plugin-8/pom.xml | 2 +- gradle-plugin/README.md | 4 ++-- gradle-plugin/pom.xml | 2 +- impl-8/pom.xml | 2 +- impl/pom.xml | 2 +- integration-tests-8/advanced-multi-instance/pom.xml | 2 +- .../advanced-multi-instance/settings.gradle | 2 +- integration-tests-8/advanced/pom.xml | 2 +- integration-tests-8/advanced/settings.gradle | 2 +- integration-tests-8/simple/pom.xml | 2 +- integration-tests-8/simple/settings.gradle | 2 +- integration-tests/advanced-multi-instance/pom.xml | 2 +- integration-tests/advanced-multi-instance/settings.gradle | 2 +- integration-tests/advanced-spring-boot/pom.xml | 2 +- integration-tests/advanced-spring-boot/settings.gradle | 2 +- integration-tests/advanced-spring/pom.xml | 2 +- integration-tests/advanced-spring/settings.gradle | 2 +- integration-tests/advanced/pom.xml | 2 +- integration-tests/advanced/settings.gradle | 2 +- integration-tests/coverage-spring-boot/pom.xml | 2 +- integration-tests/coverage-spring/pom.xml | 2 +- integration-tests/coverage/pom.xml | 2 +- integration-tests/simple/pom.xml | 2 +- integration-tests/simple/settings.gradle | 2 +- maven-plugin-8/README.md | 4 ++-- maven-plugin-8/pom.xml | 2 +- maven-plugin/README.md | 4 ++-- maven-plugin/pom.xml | 2 +- model-8/pom.xml | 2 +- model/pom.xml | 2 +- pom.xml | 2 +- 35 files changed, 43 insertions(+), 43 deletions(-) diff --git a/README.md b/README.md index 9b2ead0..86f1b1e 100644 --- a/README.md +++ b/README.md @@ -3,10 +3,10 @@ [![](https://img.shields.io/badge/Lifecycle-Incubating-blue)](https://github.com/Camunda-Community-Hub/community/blob/main/extension-lifecycle.md#incubating-) ![Compatible with: Camunda Platform 7](https://img.shields.io/badge/Compatible%20with-Camunda%20Platform%207-26d07c) ![Compatible with: Camunda Platform 8](https://img.shields.io/badge/Compatible%20with-Camunda%20Platform%208-26d07c) -[![Maven plugin](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-maven-plugin.svg?label=Maven%20plugin)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-maven-plugin/0.11.0/versions) -[![Gradle plugin](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-gradle-plugin.svg?label=Gradle%20plugin)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-gradle-plugin/0.11.0/versions) -[![Maven plugin 8](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-8-maven-plugin.svg?label=Maven%20plugin%208)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-maven-plugin/0.11.0/versions) -[![Gradle plugin 8](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-8-gradle-plugin.svg?label=Gradle%20plugin%208)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-gradle-plugin/0.11.0/versions) +[![Maven plugin](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-maven-plugin.svg?label=Maven%20plugin)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-maven-plugin/versions) +[![Gradle plugin](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-gradle-plugin.svg?label=Gradle%20plugin)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-gradle-plugin/versions) +[![Maven plugin 8](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-8-maven-plugin.svg?label=Maven%20plugin%208)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-maven-plugin/versions) +[![Gradle plugin 8](https://img.shields.io/maven-central/v/org.camunda.community/bpmn-driven-testing-8-gradle-plugin.svg?label=Gradle%20plugin%208)](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-gradle-plugin/versions) [Camunda Platform 7](https://docs.camunda.org/manual/latest/) / [Camunda Platform 8](https://docs.camunda.io/) extension, which is able to generate test code based on an extended BPMN model. diff --git a/camunda-modeler-plugin/package-lock.json b/camunda-modeler-plugin/package-lock.json index a317ac4..c402429 100644 --- a/camunda-modeler-plugin/package-lock.json +++ b/camunda-modeler-plugin/package-lock.json @@ -1,12 +1,12 @@ { "name": "bpmn-driven-testing-plugin", - "version": "0.12.0-SNAPSHOT", + "version": "0.13.0-SNAPSHOT", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "bpmn-driven-testing-plugin", - "version": "0.12.0-SNAPSHOT", + "version": "0.13.0-SNAPSHOT", "license": "MIT", "dependencies": { "react": "^18.2.0", diff --git a/camunda-modeler-plugin/package.json b/camunda-modeler-plugin/package.json index aad1b13..d2191d6 100644 --- a/camunda-modeler-plugin/package.json +++ b/camunda-modeler-plugin/package.json @@ -1,6 +1,6 @@ { "name": "bpmn-driven-testing-plugin", - "version": "0.12.0-SNAPSHOT", + "version": "0.13.0-SNAPSHOT", "description": "Camunda Modeler Plugin for BPMN Driven Testing", "main": "index.js", "scripts": { diff --git a/gradle-plugin-8/README.md b/gradle-plugin-8/README.md index 760a630..0a2d3b1 100644 --- a/gradle-plugin-8/README.md +++ b/gradle-plugin-8/README.md @@ -34,7 +34,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - useModule("org.camunda.community:bpmn-driven-testing-8-gradle-plugin:0.11.0") + useModule("org.camunda.community:bpmn-driven-testing-8-gradle-plugin:0.12.0") } } } @@ -54,7 +54,7 @@ plugins { } ``` -Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-gradle-plugin/0.11.0/versions) to get a specific version. +Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-gradle-plugin/versions) to get a specific version. ## Configuration Available properties: diff --git a/gradle-plugin-8/pom.xml b/gradle-plugin-8/pom.xml index 7c7e959..84a00bb 100644 --- a/gradle-plugin-8/pom.xml +++ b/gradle-plugin-8/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-8-gradle-plugin diff --git a/gradle-plugin/README.md b/gradle-plugin/README.md index 4322968..fdaadf7 100644 --- a/gradle-plugin/README.md +++ b/gradle-plugin/README.md @@ -34,7 +34,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:0.11.0") + useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:0.12.0") } } } @@ -54,7 +54,7 @@ plugins { } ``` -Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-gradle-plugin/0.11.0/versions) to get a specific version. +Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-gradle-plugin/versions) to get a specific version. ## Configuration Available properties: diff --git a/gradle-plugin/pom.xml b/gradle-plugin/pom.xml index 2d278be..80654b8 100644 --- a/gradle-plugin/pom.xml +++ b/gradle-plugin/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-gradle-plugin diff --git a/impl-8/pom.xml b/impl-8/pom.xml index aff5af3..aab525a 100644 --- a/impl-8/pom.xml +++ b/impl-8/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-impl-8 diff --git a/impl/pom.xml b/impl/pom.xml index 69c635e..679b71a 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-impl diff --git a/integration-tests-8/advanced-multi-instance/pom.xml b/integration-tests-8/advanced-multi-instance/pom.xml index f14dabf..d34c2c7 100644 --- a/integration-tests-8/advanced-multi-instance/pom.xml +++ b/integration-tests-8/advanced-multi-instance/pom.xml @@ -14,7 +14,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests-8/advanced-multi-instance/settings.gradle b/integration-tests-8/advanced-multi-instance/settings.gradle index f020594..f724b83 100644 --- a/integration-tests-8/advanced-multi-instance/settings.gradle +++ b/integration-tests-8/advanced-multi-instance/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-8-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests-8/advanced/pom.xml b/integration-tests-8/advanced/pom.xml index 1e40f55..9d8fd24 100644 --- a/integration-tests-8/advanced/pom.xml +++ b/integration-tests-8/advanced/pom.xml @@ -14,7 +14,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests-8/advanced/settings.gradle b/integration-tests-8/advanced/settings.gradle index f020594..f724b83 100644 --- a/integration-tests-8/advanced/settings.gradle +++ b/integration-tests-8/advanced/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-8-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests-8/simple/pom.xml b/integration-tests-8/simple/pom.xml index d891d49..6d0f1bf 100644 --- a/integration-tests-8/simple/pom.xml +++ b/integration-tests-8/simple/pom.xml @@ -14,7 +14,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests-8/simple/settings.gradle b/integration-tests-8/simple/settings.gradle index f020594..f724b83 100644 --- a/integration-tests-8/simple/settings.gradle +++ b/integration-tests-8/simple/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-8-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/advanced-multi-instance/pom.xml b/integration-tests/advanced-multi-instance/pom.xml index 6788232..7f37c9f 100644 --- a/integration-tests/advanced-multi-instance/pom.xml +++ b/integration-tests/advanced-multi-instance/pom.xml @@ -17,7 +17,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/advanced-multi-instance/settings.gradle b/integration-tests/advanced-multi-instance/settings.gradle index 227c1c9..1345fa2 100644 --- a/integration-tests/advanced-multi-instance/settings.gradle +++ b/integration-tests/advanced-multi-instance/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/advanced-spring-boot/pom.xml b/integration-tests/advanced-spring-boot/pom.xml index 2b215e4..eb53a5c 100644 --- a/integration-tests/advanced-spring-boot/pom.xml +++ b/integration-tests/advanced-spring-boot/pom.xml @@ -16,7 +16,7 @@ 2.2.224 3.2.4 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/advanced-spring-boot/settings.gradle b/integration-tests/advanced-spring-boot/settings.gradle index 227c1c9..1345fa2 100644 --- a/integration-tests/advanced-spring-boot/settings.gradle +++ b/integration-tests/advanced-spring-boot/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/advanced-spring/pom.xml b/integration-tests/advanced-spring/pom.xml index 7129245..7bae44a 100644 --- a/integration-tests/advanced-spring/pom.xml +++ b/integration-tests/advanced-spring/pom.xml @@ -18,7 +18,7 @@ 1.7.36 6.1.5 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/advanced-spring/settings.gradle b/integration-tests/advanced-spring/settings.gradle index 227c1c9..1345fa2 100644 --- a/integration-tests/advanced-spring/settings.gradle +++ b/integration-tests/advanced-spring/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/advanced/pom.xml b/integration-tests/advanced/pom.xml index 9fe2877..af5b425 100644 --- a/integration-tests/advanced/pom.xml +++ b/integration-tests/advanced/pom.xml @@ -17,7 +17,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/advanced/settings.gradle b/integration-tests/advanced/settings.gradle index 227c1c9..1345fa2 100644 --- a/integration-tests/advanced/settings.gradle +++ b/integration-tests/advanced/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/coverage-spring-boot/pom.xml b/integration-tests/coverage-spring-boot/pom.xml index f0602d6..de50b5b 100644 --- a/integration-tests/coverage-spring-boot/pom.xml +++ b/integration-tests/coverage-spring-boot/pom.xml @@ -17,7 +17,7 @@ 2.2.224 3.2.4 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/coverage-spring/pom.xml b/integration-tests/coverage-spring/pom.xml index 6b81b4f..9b93a13 100644 --- a/integration-tests/coverage-spring/pom.xml +++ b/integration-tests/coverage-spring/pom.xml @@ -19,7 +19,7 @@ 1.7.36 6.1.5 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/coverage/pom.xml b/integration-tests/coverage/pom.xml index 620d34d..606d165 100644 --- a/integration-tests/coverage/pom.xml +++ b/integration-tests/coverage/pom.xml @@ -18,7 +18,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/simple/pom.xml b/integration-tests/simple/pom.xml index 49c4298..9112d45 100644 --- a/integration-tests/simple/pom.xml +++ b/integration-tests/simple/pom.xml @@ -17,7 +17,7 @@ 5.10.1 1.7.36 - 0.12.0-SNAPSHOT + 0.13.0-SNAPSHOT diff --git a/integration-tests/simple/settings.gradle b/integration-tests/simple/settings.gradle index 227c1c9..1345fa2 100644 --- a/integration-tests/simple/settings.gradle +++ b/integration-tests/simple/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.12.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.13.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/maven-plugin-8/README.md b/maven-plugin-8/README.md index 015e568..208c01c 100644 --- a/maven-plugin-8/README.md +++ b/maven-plugin-8/README.md @@ -12,7 +12,7 @@ Right click on `target/bpmndt` > `Mark Directory as` > `Test Sources Root` org.camunda.community bpmn-driven-testing-8-maven-plugin - 0.11.0 + 0.12.0 @@ -23,7 +23,7 @@ Right click on `target/bpmndt` > `Mark Directory as` > `Test Sources Root` ``` -Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-maven-plugin/0.11.0/versions) to get a specific version. +Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-8-maven-plugin/versions) to get a specific version. ## Configuration Available parameters for the plugin's `generator` goal: diff --git a/maven-plugin-8/pom.xml b/maven-plugin-8/pom.xml index 5122a9c..638917f 100644 --- a/maven-plugin-8/pom.xml +++ b/maven-plugin-8/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-8-maven-plugin diff --git a/maven-plugin/README.md b/maven-plugin/README.md index ae3dcb2..b4fad1a 100644 --- a/maven-plugin/README.md +++ b/maven-plugin/README.md @@ -12,7 +12,7 @@ Right click on `target/bpmndt` > `Mark Directory as` > `Test Sources Root` org.camunda.community bpmn-driven-testing-maven-plugin - 0.11.0 + 0.12.0 @@ -23,7 +23,7 @@ Right click on `target/bpmndt` > `Mark Directory as` > `Test Sources Root` ``` -Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-maven-plugin/0.11.0/versions) to get a specific version. +Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-maven-plugin/versions) to get a specific version. ## Configuration Available parameters for the plugin's `generator` goal: diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 500a0de..c18a982 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-maven-plugin diff --git a/model-8/pom.xml b/model-8/pom.xml index 225c662..63cfc11 100644 --- a/model-8/pom.xml +++ b/model-8/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-model-8 diff --git a/model/pom.xml b/model/pom.xml index 9ec443f..11a1c43 100644 --- a/model/pom.xml +++ b/model/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT bpmn-driven-testing-model diff --git a/pom.xml b/pom.xml index 32d3311..a89ef1d 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ bpmn-driven-testing-root - 0.12.1-SNAPSHOT + 0.13.0-SNAPSHOT pom