From b9edff3db9bf042d3fb89ced4a0a9bc4e5212826 Mon Sep 17 00:00:00 2001 From: Gabor Claussnitzer Date: Sat, 25 Nov 2023 16:22:20 +0100 Subject: [PATCH] chore: updated build files and READMEs --- README.md | 4 ++-- camunda-modeler-plugin/package-lock.json | 2 +- camunda-modeler-plugin/package.json | 2 +- gradle-plugin/README.md | 4 ++-- gradle-plugin/pom.xml | 2 +- impl/pom.xml | 2 +- integration-tests/advanced-multi-instance/pom.xml | 2 +- integration-tests/advanced-multi-instance/settings.gradle | 2 +- integration-tests/advanced-spring-boot-junit5/pom.xml | 2 +- .../advanced-spring-boot-junit5/settings.gradle | 2 +- integration-tests/advanced-spring-boot/pom.xml | 2 +- integration-tests/advanced-spring-boot/settings.gradle | 2 +- integration-tests/advanced-spring-junit5/pom.xml | 2 +- integration-tests/advanced-spring-junit5/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-junit5/pom.xml | 2 +- integration-tests/coverage-spring-boot-junit5/pom.xml | 2 +- integration-tests/coverage-spring-junit5/pom.xml | 2 +- integration-tests/simple/pom.xml | 2 +- integration-tests/simple/settings.gradle | 2 +- maven-plugin/README.md | 8 ++++---- maven-plugin/pom.xml | 2 +- model/pom.xml | 2 +- pom.xml | 2 +- 27 files changed, 32 insertions(+), 32 deletions(-) diff --git a/README.md b/README.md index 9da46aed..e0a18ccf 100644 --- a/README.md +++ b/README.md @@ -2,8 +2,8 @@ [![](https://img.shields.io/badge/Community%20Extension-An%20open%20source%20community%20maintained%20project-FF4700)](https://github.com/camunda-community-hub/community) [![](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) -[![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.8.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.8.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/0.9.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.9.0/versions) [Camunda Platform 7](https://docs.camunda.org/manual/latest/) 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 f26d3859..9ac83936 100644 --- a/camunda-modeler-plugin/package-lock.json +++ b/camunda-modeler-plugin/package-lock.json @@ -1,6 +1,6 @@ { "name": "bpmn-driven-testing-plugin", - "version": "0.9.0-SNAPSHOT", + "version": "1.0.0-SNAPSHOT", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/camunda-modeler-plugin/package.json b/camunda-modeler-plugin/package.json index 8d619148..56f764b5 100644 --- a/camunda-modeler-plugin/package.json +++ b/camunda-modeler-plugin/package.json @@ -1,6 +1,6 @@ { "name": "bpmn-driven-testing-plugin", - "version": "0.9.0-SNAPSHOT", + "version": "1.0.0-SNAPSHOT", "description": "Camunda Modeler Plugin for BPMN Driven Testing", "main": "index.js", "scripts": { diff --git a/gradle-plugin/README.md b/gradle-plugin/README.md index 5d952526..3a792a61 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.8.0") + useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:0.9.0") } } } @@ -54,7 +54,7 @@ plugins { } ``` -Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-gradle-plugin/0.8.0/versions) to get a specific version. +Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-gradle-plugin/0.9.0/versions) to get a specific version. ## Configuration Available properties: diff --git a/gradle-plugin/pom.xml b/gradle-plugin/pom.xml index 0122f7d0..399c40ee 100644 --- a/gradle-plugin/pom.xml +++ b/gradle-plugin/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.9.1-SNAPSHOT + 1.0.0-SNAPSHOT bpmn-driven-testing-gradle-plugin diff --git a/impl/pom.xml b/impl/pom.xml index 639d9f51..1f1a29bd 100644 --- a/impl/pom.xml +++ b/impl/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.9.1-SNAPSHOT + 1.0.0-SNAPSHOT bpmn-driven-testing-impl diff --git a/integration-tests/advanced-multi-instance/pom.xml b/integration-tests/advanced-multi-instance/pom.xml index 6fb4ac52..5036667b 100644 --- a/integration-tests/advanced-multi-instance/pom.xml +++ b/integration-tests/advanced-multi-instance/pom.xml @@ -17,7 +17,7 @@ 4.13.2 1.7.36 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/advanced-multi-instance/settings.gradle b/integration-tests/advanced-multi-instance/settings.gradle index 518a8404..ad7676b9 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.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/advanced-spring-boot-junit5/pom.xml b/integration-tests/advanced-spring-boot-junit5/pom.xml index e9a82dba..b4b28887 100644 --- a/integration-tests/advanced-spring-boot-junit5/pom.xml +++ b/integration-tests/advanced-spring-boot-junit5/pom.xml @@ -16,7 +16,7 @@ 2.2.220 2.7.18 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/advanced-spring-boot-junit5/settings.gradle b/integration-tests/advanced-spring-boot-junit5/settings.gradle index 518a8404..ad7676b9 100644 --- a/integration-tests/advanced-spring-boot-junit5/settings.gradle +++ b/integration-tests/advanced-spring-boot-junit5/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.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 e0ee02c2..0b036428 100644 --- a/integration-tests/advanced-spring-boot/pom.xml +++ b/integration-tests/advanced-spring-boot/pom.xml @@ -16,7 +16,7 @@ 2.2.220 2.7.18 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/advanced-spring-boot/settings.gradle b/integration-tests/advanced-spring-boot/settings.gradle index 518a8404..ad7676b9 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.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/advanced-spring-junit5/pom.xml b/integration-tests/advanced-spring-junit5/pom.xml index c89f4aba..3c7f7d59 100644 --- a/integration-tests/advanced-spring-junit5/pom.xml +++ b/integration-tests/advanced-spring-junit5/pom.xml @@ -18,7 +18,7 @@ 1.7.36 5.3.31 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/advanced-spring-junit5/settings.gradle b/integration-tests/advanced-spring-junit5/settings.gradle index 518a8404..ad7676b9 100644 --- a/integration-tests/advanced-spring-junit5/settings.gradle +++ b/integration-tests/advanced-spring-junit5/settings.gradle @@ -6,7 +6,7 @@ pluginManagement { resolutionStrategy { eachPlugin { if (requested.id.toString() == 'org.camunda.community.bpmndt') { - def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '0.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.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 dc145544..48cdf86d 100644 --- a/integration-tests/advanced-spring/pom.xml +++ b/integration-tests/advanced-spring/pom.xml @@ -18,7 +18,7 @@ 1.7.36 5.3.31 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/advanced-spring/settings.gradle b/integration-tests/advanced-spring/settings.gradle index 518a8404..ad7676b9 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.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.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 7a881117..553e070a 100644 --- a/integration-tests/advanced/pom.xml +++ b/integration-tests/advanced/pom.xml @@ -17,7 +17,7 @@ 4.13.2 1.7.36 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/advanced/settings.gradle b/integration-tests/advanced/settings.gradle index 518a8404..ad7676b9 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.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/integration-tests/coverage-junit5/pom.xml b/integration-tests/coverage-junit5/pom.xml index 05b49a35..e700be10 100644 --- a/integration-tests/coverage-junit5/pom.xml +++ b/integration-tests/coverage-junit5/pom.xml @@ -18,7 +18,7 @@ 5.9.3 1.7.36 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/coverage-spring-boot-junit5/pom.xml b/integration-tests/coverage-spring-boot-junit5/pom.xml index 298b6d5c..a7413c24 100644 --- a/integration-tests/coverage-spring-boot-junit5/pom.xml +++ b/integration-tests/coverage-spring-boot-junit5/pom.xml @@ -17,7 +17,7 @@ 2.2.220 2.7.18 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/coverage-spring-junit5/pom.xml b/integration-tests/coverage-spring-junit5/pom.xml index e2f8d3c0..f321b904 100644 --- a/integration-tests/coverage-spring-junit5/pom.xml +++ b/integration-tests/coverage-spring-junit5/pom.xml @@ -19,7 +19,7 @@ 1.7.36 5.3.31 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/simple/pom.xml b/integration-tests/simple/pom.xml index 2bfbcc80..a3622fc4 100644 --- a/integration-tests/simple/pom.xml +++ b/integration-tests/simple/pom.xml @@ -17,7 +17,7 @@ 4.13.2 1.7.36 - 0.9.0-SNAPSHOT + 1.0.0-SNAPSHOT diff --git a/integration-tests/simple/settings.gradle b/integration-tests/simple/settings.gradle index 518a8404..ad7676b9 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.9.0-SNAPSHOT' + def pluginVersion = startParameter.projectProperties['plugin.version'] ?: '1.0.0-SNAPSHOT' useModule("org.camunda.community:bpmn-driven-testing-gradle-plugin:${pluginVersion}") } } diff --git a/maven-plugin/README.md b/maven-plugin/README.md index b4c60433..3ed1e5e0 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.8.0 + 0.9.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.8.0/versions) to get a specific version. +Please see [Maven Central](https://central.sonatype.com/artifact/org.camunda.community/bpmn-driven-testing-maven-plugin/0.9.0/versions) to get a specific version. ## Configuration Available parameters for the plugin's `generator` goal: @@ -153,8 +153,8 @@ Recommended versions: | JUnit 4 | 4.13.2 | | JUnit 5 (Jupiter) | 5.9.3 | | Assertj | 3.24.2 | -| Spring Framework | 5.3.29 | -| Spring Boot | 2.7.15 | +| Spring Framework | 5.3.31 | +| Spring Boot | 2.7.18 | ## Testing :warning: This section is only important for Maven plugin development! diff --git a/maven-plugin/pom.xml b/maven-plugin/pom.xml index 047ac277..37c225d8 100644 --- a/maven-plugin/pom.xml +++ b/maven-plugin/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.9.1-SNAPSHOT + 1.0.0-SNAPSHOT bpmn-driven-testing-maven-plugin diff --git a/model/pom.xml b/model/pom.xml index 12de283e..c9dd8c26 100644 --- a/model/pom.xml +++ b/model/pom.xml @@ -4,7 +4,7 @@ org.camunda.community bpmn-driven-testing-root - 0.9.1-SNAPSHOT + 1.0.0-SNAPSHOT bpmn-driven-testing-model diff --git a/pom.xml b/pom.xml index bd3d8f2b..3bf08f49 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ bpmn-driven-testing-root - 0.9.1-SNAPSHOT + 1.0.0-SNAPSHOT pom