Skip to content

Commit

Permalink
chore: updated build files and READMEs
Browse files Browse the repository at this point in the history
  • Loading branch information
gclaussn committed Nov 25, 2023
1 parent c9542a4 commit b9edff3
Show file tree
Hide file tree
Showing 27 changed files with 32 additions and 32 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion camunda-modeler-plugin/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion camunda-modeler-plugin/package.json
Original file line number Diff line number Diff line change
@@ -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": {
Expand Down
4 changes: 2 additions & 2 deletions gradle-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
}
}
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion gradle-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.camunda.community</groupId>
<artifactId>bpmn-driven-testing-root</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>bpmn-driven-testing-gradle-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.camunda.community</groupId>
<artifactId>bpmn-driven-testing-root</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>bpmn-driven-testing-impl</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-multi-instance/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<junit.version>4.13.2</junit.version>
<slf4j.version>1.7.36</slf4j.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-multi-instance/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring-boot-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<h2.version>2.2.220</h2.version>
<spring.boot.version>2.7.18</spring.boot.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring-boot/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<h2.version>2.2.220</h2.version>
<spring.boot.version>2.7.18</spring.boot.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring-boot/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<slf4j.version>1.7.36</slf4j.version>
<spring.version>5.3.31</spring.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring-junit5/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<slf4j.version>1.7.36</slf4j.version>
<spring.version>5.3.31</spring.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced-spring/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<junit.version>4.13.2</junit.version>
<slf4j.version>1.7.36</slf4j.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/advanced/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/coverage-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<junit.jupiter.version>5.9.3</junit.jupiter.version>
<slf4j.version>1.7.36</slf4j.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/coverage-spring-boot-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<h2.version>2.2.220</h2.version>
<spring.boot.version>2.7.18</spring.boot.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/coverage-spring-junit5/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<slf4j.version>1.7.36</slf4j.version>
<spring.version>5.3.31</spring.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/simple/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<junit.version>4.13.2</junit.version>
<slf4j.version>1.7.36</slf4j.version>

<plugin.version>0.9.0-SNAPSHOT</plugin.version>
<plugin.version>1.0.0-SNAPSHOT</plugin.version>
</properties>

<repositories>
Expand Down
2 changes: 1 addition & 1 deletion integration-tests/simple/settings.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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}")
}
}
Expand Down
8 changes: 4 additions & 4 deletions maven-plugin/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Right click on `target/bpmndt` > `Mark Directory as` > `Test Sources Root`
<plugin>
<groupId>org.camunda.community</groupId>
<artifactId>bpmn-driven-testing-maven-plugin</artifactId>
<version>0.8.0</version>
<version>0.9.0</version>
<executions>
<execution>
<goals>
Expand All @@ -23,7 +23,7 @@ Right click on `target/bpmndt` > `Mark Directory as` > `Test Sources Root`
</plugin>
```

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:
Expand Down Expand Up @@ -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!
Expand Down
2 changes: 1 addition & 1 deletion maven-plugin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.camunda.community</groupId>
<artifactId>bpmn-driven-testing-root</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>bpmn-driven-testing-maven-plugin</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion model/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<parent>
<groupId>org.camunda.community</groupId>
<artifactId>bpmn-driven-testing-root</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
</parent>

<artifactId>bpmn-driven-testing-model</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>

<artifactId>bpmn-driven-testing-root</artifactId>
<version>0.9.1-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
Expand Down

0 comments on commit b9edff3

Please sign in to comment.