Skip to content

Commit e9299b7

Browse files
committed
Merge branch 'release/4.4.1'
2 parents 7ef54fb + bfcc6f9 commit e9299b7

File tree

100 files changed

+342
-279
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

100 files changed

+342
-279
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: CI for special branches
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches:
@@ -19,7 +22,7 @@ jobs:
1922
uses: actions/setup-java@v4
2023
with:
2124
distribution: 'zulu'
22-
java-version: 17
25+
java-version-file: .java-version
2326
cache: maven
2427

2528
- name: Prepare Maven Wrapper

.github/workflows/codacy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313

1414
name: Codacy Security Scan
1515

16+
permissions:
17+
contents: read
18+
1619
on:
1720
push:
1821
branches:
@@ -25,9 +28,6 @@ on:
2528
schedule:
2629
- cron: '28 0 * * 2'
2730

28-
permissions:
29-
contents: read
30-
3131
jobs:
3232
codacy-security-scan:
3333
permissions:

.github/workflows/docs.yml

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
name: Build the docs
22

3+
permissions:
4+
contents: write
5+
pages: write
6+
37
on:
48
push:
59
branches:
@@ -13,6 +17,8 @@ jobs:
1317
steps:
1418
- name: Checkout code
1519
uses: actions/checkout@v4
20+
with:
21+
fetch-depth: '0'
1622

1723
- name: Set up Python
1824
uses: actions/setup-python@v5
@@ -36,16 +42,19 @@ jobs:
3642
env:
3743
GH_USERNAME: ${{ github.actor }}
3844

39-
- name: Pre-fetch the gh-pages branch
40-
run: git fetch --depth=1
41-
4245
- name: Build docs with MkDocs
4346
run: mkdocs build
47+
env:
48+
GithubAccessToken: ${{ secrets.GITHUB_TOKEN }} # needed for multirepo plugin
4449

4550
- name: Read the tag name
4651
id: get_tag_name
4752
if: startsWith(github.ref, 'refs/tags/')
48-
run: echo ::set-output name=TAG_NAME::${GITHUB_REF/refs\/tags\//}
53+
run: echo "TAG_NAME=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT
54+
55+
# Prefetch gh-pages for mike to get correct versions
56+
- name: Pre-fetch the gh-pages branch
57+
run: git fetch origin gh-pages --depth=1
4958

5059
# This is for a tagged version
5160
- name: Create a new version of documentation and push to GH pages.
@@ -54,7 +63,7 @@ jobs:
5463

5564
- name: Make stable to default.
5665
if: startsWith(github.ref, 'refs/tags/')
57-
run: mike set-default stable --push
66+
run: mike set-default stable --push --allow-empty
5867

5968
# This is for develop
6069
- name: Deploy latest develop snapshot docs to GH pages.

.github/workflows/release-notes.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,13 @@
1+
name: Milestone Closure
2+
3+
permissions:
4+
contents: write
5+
16
# Trigger the workflow on milestone events
27
on:
38
milestone:
49
types: [closed]
5-
name: Milestone Closure
10+
611
jobs:
712
create-release-notes:
813
runs-on: ubuntu-latest

.github/workflows/release.yml

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Master and Snapshot release
22

3+
permissions:
4+
contents: read
5+
36
on:
47
push:
58
branches:
@@ -15,13 +18,13 @@ jobs:
1518
uses: actions/checkout@v4
1619

1720
# Setup JDK and Maven
18-
- name: Set up JDK 17
21+
- name: Set up JDK
1922
uses: actions/setup-java@v4
2023
with:
21-
java-version: 17
24+
java-version-file: .java-version
2225
distribution: 'zulu'
2326
cache: maven
24-
server-id: ossrh
27+
server-id: central
2528
server-username: OSS_CENTRAL_USERNAME # env variable for Maven Central
2629
server-password: OSS_CENTRAL_PASSWORD # env variable for Maven Central
2730

@@ -45,11 +48,12 @@ jobs:
4548
run: echo ${{ secrets.GPG_SECRET_KEYS }} | base64 --decode | gpg --import --no-tty --batch --yes
4649

4750
- name: Deploy a new version to central
48-
run: ./mvnw deploy -B -ntp -DskipTests -Prelease -Dgpg.keyname="${{secrets.GPG_KEYNAME}}" -Dgpg.passphrase="${{secrets.GPG_PASSPHRASE}}"
51+
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/snapshot-producer'
52+
run: ./mvnw deploy -B -ntp -DskipTests -Prelease -Dgpg.keyname="${{secrets.GPG_KEYNAME}}"
4953
env:
5054
OSS_CENTRAL_USERNAME: "${{ secrets.SONATYPE_USERNAME }}"
5155
OSS_CENTRAL_PASSWORD: "${{ secrets.SONATYPE_PASSWORD }}"
52-
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/snapshot-producer'
56+
MAVEN_GPG_PASSPHRASE: "${{ secrets.GPG_PASSPHRASE }}"
5357

5458
- name: Upload coverage information to CodeCov
5559
uses: codecov/codecov-action@v5

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ hs_err_pid*
3636
.Trashes
3737
ehthumbs.db
3838
Thumbs.db
39-
.java-version
4039

4140
# Avoid ignoring Maven wrapper jar file (.jar files are usually ignored)
4241
!/.mvn/wrapper/maven-wrapper.jar

.java-version

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
17

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[![stable](https://img.shields.io/badge/lifecycle-STABLE-green.svg)](https://github.com/holisticon#open-source-lifecycle)
22
[![Master and Snapshot release](https://github.com/holunda-io/camunda-bpm-taskpool/actions/workflows/release.yml/badge.svg)](https://github.com/holunda-io/camunda-bpm-taskpool/actions/workflows/release.yml)
3-
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.holunda.polyflow/polyflow-taskpool-dependencies/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.holunda.polyflow/polyflow-taskpool-dependencies/)
3+
[![Maven Central Version](https://img.shields.io/maven-central/v/io.holunda.polyflow/polyflow-taskpool-dependencies)](https://central.sonatype.com/artifact/io.holunda.polyflow/polyflow-taskpool-dependencies)
44
[![Code Coverage](https://codecov.io/gh/holunda-io/camunda-bpm-taskpool/branch/master/graph/badge.svg)](https://codecov.io/gh/holunda-io/camunda-bpm-taskpool)
55
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/6e15ca2f4ab64cfe85a736f324136086)](https://www.codacy.com/gh/holunda-io/camunda-bpm-taskpool/dashboard?utm_source=github.com&utm_medium=referral&utm_content=holunda-io/camunda-bpm-taskpool&utm_campaign=Badge_Grade)
66
[![OpenHUB](https://www.openhub.net/p/camunda-bpm-taskpool/widgets/project_thin_badge.gif)](https://www.openhub.net/p/camunda-bpm-taskpool)
@@ -49,11 +49,7 @@ If you have any questions regarding the main concepts, configuration of individu
4949
the [Reference Guide](https://www.holunda.io/camunda-bpm-taskpool/stable/reference-guide/) acting as a primary documentation. If you want to have a technical
5050
discussion on any issue, feel free to look into [GitHub Project Discussion](https://github.com/holunda-io/camunda-bpm-taskpool/stable/discussions/)
5151

52-
Finally, there are:
53-
- [![Gitter chat](https://badges.gitter.im/gitterHQ/gitter.png)](https://gitter.im/holunda-io/camunda-bpm-taskpool?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
54-
- [![Slack](https://img.shields.io/badge/slack-@holunda/taskpool-green.svg?logo=slack")](https://holunda.slack.com/messages/taskpool/)
55-
56-
available, if you want to discuss more issues with the developers.
52+
Finally, there is [![Slack](https://img.shields.io/badge/slack-@holunda/taskpool-green.svg?logo=slack")](https://holunda.slack.com/messages/taskpool/) available, if you want to discuss more issues with the developers.
5753

5854
### Working Example
5955

@@ -68,7 +64,7 @@ This library is developed under
6864

6965
### Contribution
7066

71-
This project is open source and we love if the community contributes to this project. If you are willing to help, start
67+
This project is open source, and we love if the community contributes to this project. If you are willing to help, start
7268
with [Developer Guide](https://www.holunda.io/camunda-bpm-taskpool/stable/developer-guide/contribution.html).
7369

7470
### Sponsors and Customers

bom/datapool-dependencies/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-parent</artifactId>
9-
<version>4.4.0</version>
9+
<version>4.4.1</version>
1010
<relativePath>../parent/pom.xml</relativePath>
1111
</parent>
1212

bom/parent/pom.xml

Lines changed: 14 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>io.holunda.polyflow</groupId>
88
<artifactId>polyflow-root</artifactId>
9-
<version>4.4.0</version>
9+
<version>4.4.1</version>
1010
<relativePath>../../pom.xml</relativePath>
1111
</parent>
1212

@@ -18,17 +18,17 @@
1818
<url>https://github.com/holunda-io/camunda-bpm-taskpool/</url>
1919

2020
<properties>
21-
<springboot.version>3.2.6</springboot.version>
22-
<camunda-commons-typed-values.version>7.22.0</camunda-commons-typed-values.version>
21+
<springboot.version>3.5.3</springboot.version>
22+
<camunda-commons-typed-values.version>7.23.0</camunda-commons-typed-values.version>
2323

24-
<axon-bom.version>4.11.1</axon-bom.version>
25-
<axon-kotlin.version>4.11.0</axon-kotlin.version>
24+
<axon-bom.version>4.11.3</axon-bom.version>
25+
<axon-kotlin.version>4.11.1</axon-kotlin.version>
2626
<axon-gateway-extension.version>2.1.0</axon-gateway-extension.version>
2727

2828
<awaitility.version>4.3.0</awaitility.version>
2929
<mockito-kotlin.version>5.4.0</mockito-kotlin.version>
30-
<jgiven.version>2.0.1</jgiven.version>
31-
<jgiven-kotlin.version>2.0.1.0</jgiven-kotlin.version>
30+
<jgiven.version>2.0.2</jgiven.version>
31+
<jgiven-kotlin.version>2.0.2.1</jgiven-kotlin.version>
3232

3333
<pattern.class.itest>**/*ITest.*</pattern.class.itest>
3434
<pattern.package.itest>**/itest/**/*.*</pattern.package.itest>
@@ -165,7 +165,7 @@
165165
<dependency>
166166
<groupId>io.toolisticon.spring</groupId>
167167
<artifactId>spring-boot-conditions</artifactId>
168-
<version>1.0.0</version>
168+
<version>1.0.1</version>
169169
</dependency>
170170

171171
<dependency>
@@ -316,7 +316,7 @@
316316
<plugin>
317317
<groupId>org.jacoco</groupId>
318318
<artifactId>jacoco-maven-plugin</artifactId>
319-
<version>0.8.12</version>
319+
<version>0.8.13</version>
320320
<executions>
321321
<execution>
322322
<id>pre-unit-test</id>
@@ -456,8 +456,8 @@
456456
<version>${kotlin.version}</version>
457457
<configuration>
458458
<jvmTarget>${java.version}</jvmTarget>
459-
<apiVersion>1.9</apiVersion>
460-
<languageVersion>1.9</languageVersion>
459+
<apiVersion>2.0</apiVersion>
460+
<languageVersion>2.0</languageVersion>
461461
<args>
462462
<arg>-Xjsr305=strict</arg>
463463
</args>
@@ -524,7 +524,7 @@
524524

525525
<plugin>
526526
<artifactId>maven-surefire-plugin</artifactId>
527-
<version>3.5.2</version>
527+
<version>3.5.3</version>
528528
<configuration>
529529
<useSystemClassLoader>false</useSystemClassLoader>
530530
<runOrder>random</runOrder>
@@ -545,7 +545,7 @@
545545
<plugin>
546546
<groupId>org.apache.maven.plugins</groupId>
547547
<artifactId>maven-failsafe-plugin</artifactId>
548-
<version>3.5.2</version>
548+
<version>3.5.3</version>
549549
<executions>
550550
<execution>
551551
<goals>
@@ -586,7 +586,7 @@
586586
<plugin>
587587
<groupId>org.codehaus.mojo</groupId>
588588
<artifactId>build-helper-maven-plugin</artifactId>
589-
<version>3.6.0</version>
589+
<version>3.6.1</version>
590590
<executions>
591591
<execution>
592592
<phase>generate-sources</phase>
@@ -670,17 +670,6 @@
670670
</plugin>
671671
</plugins>
672672
</build>
673-
<pluginRepositories>
674-
<pluginRepository>
675-
<id>jcenter</id>
676-
<name>JCenter</name>
677-
<url>https://jcenter.bintray.com/</url>
678-
<releases>
679-
<enabled>true</enabled>
680-
</releases>
681-
</pluginRepository>
682-
</pluginRepositories>
683-
684673
</profile>
685674

686675
<profile>
@@ -708,7 +697,6 @@
708697
</plugins>
709698
</build>
710699
</profile>
711-
712700
</profiles>
713701

714702
</project>

0 commit comments

Comments
 (0)