-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
84 changed files
with
2,802 additions
and
5,664 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
exclude_paths: | ||
- '.github/**' | ||
- 'docs/**' | ||
- '**/packages.md' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Please use one of the following templates: | ||
|
||
https://github.com/holunda-io/camunda-bpm-data/issues/new/choose |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
name: 'Bug report' | ||
about: 'Report a bug in camunda-bpm-data' | ||
title: | ||
labels: 'type: bug :bug:' | ||
assignees: zambrovski | ||
|
||
--- | ||
|
||
### Steps to reproduce | ||
|
||
* camunda-bpm-data version: | ||
* Camunda BPM version: | ||
* JDK version: | ||
* Operating system: | ||
* Complete executable reproducer: (e.g. GitHub Repo) | ||
* Steps: (what exactly are you doing with the above reproducer?) | ||
|
||
### Expected behaviour | ||
|
||
### Actual behaviour | ||
|
||
(In case of exceptions provide full stack trace) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
--- | ||
name: 'Feature request' | ||
about: 'Suggest a feature for camunda-bpm-data' | ||
title: | ||
labels: 'type: enhancement' | ||
assignees: zambrovski | ||
|
||
--- | ||
|
||
### Scenario | ||
|
||
* camunda-bpm-data version: | ||
* Camunda BPM version: | ||
* Description of your use case: (detailed description or executable reproducer, e.g. GitHub repo) | ||
|
||
### Current Behaviour | ||
|
||
### Wanted Behaviour | ||
|
||
### Possible Workarounds |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -35,12 +35,9 @@ jobs: | |
- name: Build | ||
run: ./mvnw clean package | ||
|
||
- name: Run integration tests | ||
- name: Run integration tests and generate coverage reports | ||
run: ./mvnw -Pitest verify | ||
|
||
- name: Create coverage reports | ||
run: ./mvnw jacoco:report-aggregate | ||
|
||
- name: Upload coverage to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
--- | ||
version: 1.0.0 | ||
version: 1.0.1 | ||
--- | ||
|
||
== Bugfixes | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
--- | ||
version: 1.0.2 | ||
--- | ||
|
||
== Enhancement | ||
|
||
* Read/write adapter for CaseService context, see #59 | ||
* Supports variables via DelegateCaseExecution | ||
* Implement `CaseServiceVariableMockBuilder` and `CaseServiceVerifier`, see #59 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
<modelVersion>4.0.0</modelVersion> | ||
|
||
<parent> | ||
<groupId>io.holunda.data.example</groupId> | ||
<artifactId>camunda-bpm-data-example-parent</artifactId> | ||
<version>1.0.2</version> | ||
</parent> | ||
|
||
<artifactId>camunda-bpm-data-coverage-report</artifactId> | ||
<name>${project.artifactId}</name> | ||
<packaging>pom</packaging> | ||
|
||
<properties> | ||
<jacoco.skip>false</jacoco.skip> | ||
</properties> | ||
|
||
<dependencies> | ||
<dependency> | ||
<groupId>io.holunda.data</groupId> | ||
<artifactId>camunda-bpm-data</artifactId> | ||
<version>${project.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.holunda.data</groupId> | ||
<artifactId>camunda-bpm-data-test</artifactId> | ||
<version>${project.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
<dependency> | ||
<groupId>io.holunda.data.example</groupId> | ||
<artifactId>camunda-bpm-data-integration-test</artifactId> | ||
<version>${project.version}</version> | ||
<scope>compile</scope> | ||
</dependency> | ||
</dependencies> | ||
|
||
<build> | ||
<plugins> | ||
<plugin> | ||
<groupId>org.jacoco</groupId> | ||
<artifactId>jacoco-maven-plugin</artifactId> | ||
<executions> | ||
<execution> | ||
<id>report-aggregate</id> | ||
<phase>verify</phase> | ||
<goals> | ||
<goal>report-aggregate</goal> | ||
</goals> | ||
</execution> | ||
</executions> | ||
</plugin> | ||
</plugins> | ||
</build> | ||
|
||
</project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.