From 59d20bdb6534a58c6e43e736615b9392b1f3c8d3 Mon Sep 17 00:00:00 2001 From: sdibernardo Date: Mon, 21 Jun 2021 13:07:42 +0200 Subject: [PATCH 01/50] Update pom.xml Removed duplicate --- pom.xml | 6 ------ 1 file changed, 6 deletions(-) diff --git a/pom.xml b/pom.xml index f3206df3..ae530f31 100644 --- a/pom.xml +++ b/pom.xml @@ -277,12 +277,6 @@ 7.15.0 compile - - org.camunda.bpm.model - camunda-bpmn-model - 7.15.0 - compile - From d2fd4c1c1dd108b6aa67b7ad4832d55b1f284f15 Mon Sep 17 00:00:00 2001 From: sdibernardo Date: Mon, 21 Jun 2021 13:13:23 +0200 Subject: [PATCH 02/50] Update pom.xml --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae530f31..692369ff 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ de.viadee viadeeProcessApplicationValidator - 3.0.6 + 3.0.7-SNAPSHOT viadee Process Application Validator From cbd93d0326c1f83138f9117e0cd86b9a121f918f Mon Sep 17 00:00:00 2001 From: Sascha Di Bernardo Date: Mon, 21 Jun 2021 16:59:31 +0200 Subject: [PATCH 03/50] Added header files + plugins --- .github/workflows/release-maven-snapshot.yml | 22 ------------- pom.xml | 4 +-- .../bpm/vPAV/constants/LinterConstants.java | 31 +++++++++++++++++++ .../processing/checker/LinterChecker.java | 31 +++++++++++++++++++ 4 files changed, 64 insertions(+), 24 deletions(-) delete mode 100644 .github/workflows/release-maven-snapshot.yml diff --git a/.github/workflows/release-maven-snapshot.yml b/.github/workflows/release-maven-snapshot.yml deleted file mode 100644 index 279b1dc6..00000000 --- a/.github/workflows/release-maven-snapshot.yml +++ /dev/null @@ -1,22 +0,0 @@ -name: Publish package to the Maven Central Repository -on: - release: - types: [created] -jobs: - publish: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - - name: Set up Maven Central Repository - uses: actions/setup-java@v2 - with: - java-version: '11' - distribution: 'adopt' - server-id: ossrh - server-username: MAVEN_USERNAME - server-password: MAVEN_PASSWORD - - name: Publish package - run: mvn --batch-mode deploy - env: - MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} - MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} diff --git a/pom.xml b/pom.xml index 692369ff..e3fac336 100644 --- a/pom.xml +++ b/pom.xml @@ -412,7 +412,7 @@ maven-site-plugin 3.9.1 - + org.jacoco jacoco-maven-plugin diff --git a/src/main/java/de/viadee/bpm/vPAV/constants/LinterConstants.java b/src/main/java/de/viadee/bpm/vPAV/constants/LinterConstants.java index 5ea2d283..173810a9 100644 --- a/src/main/java/de/viadee/bpm/vPAV/constants/LinterConstants.java +++ b/src/main/java/de/viadee/bpm/vPAV/constants/LinterConstants.java @@ -1,3 +1,34 @@ +/* + * BSD 3-Clause License + * + * Copyright © 2020, viadee Unternehmensberatung AG + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * * Neither the name of the copyright holder nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package de.viadee.bpm.vPAV.constants; public class LinterConstants { diff --git a/src/main/java/de/viadee/bpm/vPAV/processing/checker/LinterChecker.java b/src/main/java/de/viadee/bpm/vPAV/processing/checker/LinterChecker.java index 9faa8abb..9d820f7f 100644 --- a/src/main/java/de/viadee/bpm/vPAV/processing/checker/LinterChecker.java +++ b/src/main/java/de/viadee/bpm/vPAV/processing/checker/LinterChecker.java @@ -1,3 +1,34 @@ +/* + * BSD 3-Clause License + * + * Copyright © 2020, viadee Unternehmensberatung AG + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are met: + * + * * Redistributions of source code must retain the above copyright notice, this + * list of conditions and the following disclaimer. + * + * * Redistributions in binary form must reproduce the above copyright notice, + * this list of conditions and the following disclaimer in the documentation + * and/or other materials provided with the distribution. + * + * * Neither the name of the copyright holder nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" + * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE + * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE + * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE + * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL + * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR + * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER + * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, + * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ package de.viadee.bpm.vPAV.processing.checker; import de.viadee.bpm.vPAV.Messages; From 086a5dc42ea448ca5dc6818d24143c14c6d5aceb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 18:02:06 +0000 Subject: [PATCH 04/50] Bump mockito-core from 3.11.1 to 3.11.2 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.11.1 to 3.11.2. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.11.1...v3.11.2) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3fac336..0d2b536a 100644 --- a/pom.xml +++ b/pom.xml @@ -192,7 +192,7 @@ org.mockito mockito-core - 3.11.1 + 3.11.2 org.camunda.bpm From a0cef504d457bd4b267b7d82e4fbdf779f063628 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 18:02:09 +0000 Subject: [PATCH 05/50] Bump maven-javadoc-plugin from 3.2.0 to 3.3.0 Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.2.0 to 3.3.0. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.2.0...maven-javadoc-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3fac336..52841c31 100644 --- a/pom.xml +++ b/pom.xml @@ -415,7 +415,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.2.0 + 3.3.0 false From 1c09c88f8995ebf322db706e505e44ee52118e7a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jun 2021 18:02:13 +0000 Subject: [PATCH 06/50] Bump dependency-check-maven from 5.3.2 to 6.2.2 Bumps [dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 5.3.2 to 6.2.2. - [Release notes](https://github.com/jeremylong/DependencyCheck/releases) - [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/jeremylong/DependencyCheck/compare/v5.3.2...v6.2.2) --- updated-dependencies: - dependency-name: org.owasp:dependency-check-maven dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e3fac336..da481ef3 100644 --- a/pom.xml +++ b/pom.xml @@ -431,7 +431,7 @@ org.owasp dependency-check-maven - 5.3.2 + 6.2.2 owasp-dependency-check-suppressions.xml From 7538ea81afe95f63d736a9d18d49aff1b877a603 Mon Sep 17 00:00:00 2001 From: Sascha Di Bernardo Date: Fri, 25 Jun 2021 16:36:53 +0200 Subject: [PATCH 07/50] Fixed doc file --- docs/Checker/LinterChecker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Checker/LinterChecker.md b/docs/Checker/LinterChecker.md index 51b072ca..2017687a 100644 --- a/docs/Checker/LinterChecker.md +++ b/docs/Checker/LinterChecker.md @@ -1,5 +1,5 @@ --- -parent: Available Checkers title: LinterChecker +title: Linter Checker parent: Available Checkers --- LinterChecker ================================= From 70bf698b206a9bbe2b276f453f5532967cc89741 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Jun 2021 18:03:10 +0000 Subject: [PATCH 08/50] Bump spring.boot.version from 2.5.1 to 2.5.2 Bumps `spring.boot.version` from 2.5.1 to 2.5.2. Updates `spring-boot-dependencies` from 2.5.1 to 2.5.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.1...v2.5.2) Updates `spring-boot-starter-data-rest` from 2.5.1 to 2.5.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.1...v2.5.2) Updates `spring-boot-starter-actuator` from 2.5.1 to 2.5.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.1...v2.5.2) Updates `spring-boot-starter-web` from 2.5.1 to 2.5.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.1...v2.5.2) Updates `spring-boot-starter-test` from 2.5.1 to 2.5.2 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.1...v2.5.2) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4febccd7..19508858 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.8 - 2.5.1 + 2.5.2 From ea8acc1f66171e5e551e5662c529a495b906a6e1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jul 2021 18:02:51 +0000 Subject: [PATCH 09/50] Bump ant from 1.10.10 to 1.10.11 Bumps ant from 1.10.10 to 1.10.11. --- updated-dependencies: - dependency-name: org.apache.ant:ant dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19508858..15898a79 100644 --- a/pom.xml +++ b/pom.xml @@ -165,7 +165,7 @@ org.apache.ant ant - 1.10.10 + 1.10.11 org.apache.maven From ae1e50457777c95fffe7d80485b4ecb144e68ef5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Jul 2021 18:02:55 +0000 Subject: [PATCH 10/50] Bump commons-io from 2.10.0 to 2.11.0 Bumps commons-io from 2.10.0 to 2.11.0. --- updated-dependencies: - dependency-name: commons-io:commons-io dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 19508858..a35a14b3 100644 --- a/pom.xml +++ b/pom.xml @@ -218,7 +218,7 @@ commons-io commons-io - 2.10.0 + 2.11.0 org.apache.commons From f87628683ad7884c852015451aebafbe801319ff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Jul 2021 18:03:22 +0000 Subject: [PATCH 11/50] Bump spring.version from 5.3.8 to 5.3.9 Bumps `spring.version` from 5.3.8 to 5.3.9. Updates `spring-expression` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) Updates `spring-context` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) Updates `spring-test` from 5.3.8 to 5.3.9 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.8...v5.3.9) --- updated-dependencies: - dependency-name: org.springframework:spring-expression dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b23f3ff3..67ac5c4c 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ UTF-8 - 5.3.8 + 5.3.9 2.5.2 From 3df9c567dde04819cf5f7a65586b1728005ea3cf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Jul 2021 18:03:30 +0000 Subject: [PATCH 12/50] Bump spring.boot.version from 2.5.2 to 2.5.3 Bumps `spring.boot.version` from 2.5.2 to 2.5.3. Updates `spring-boot-dependencies` from 2.5.2 to 2.5.3 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.2...v2.5.3) Updates `spring-boot-starter-data-rest` from 2.5.2 to 2.5.3 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.2...v2.5.3) Updates `spring-boot-starter-actuator` from 2.5.2 to 2.5.3 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.2...v2.5.3) Updates `spring-boot-starter-web` from 2.5.2 to 2.5.3 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.2...v2.5.3) Updates `spring-boot-starter-test` from 2.5.2 to 2.5.3 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.2...v2.5.3) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 67ac5c4c..47d5bba5 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.9 - 2.5.2 + 2.5.3 From 013b9830b3b5ce7e18f47e7d6062c80427946099 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Aug 2021 18:03:14 +0000 Subject: [PATCH 13/50] Bump jaxb-impl from 3.0.2-b01 to 3.0.2 Bumps jaxb-impl from 3.0.2-b01 to 3.0.2. --- updated-dependencies: - dependency-name: com.sun.xml.bind:jaxb-impl dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47d5bba5..6f79802c 100644 --- a/pom.xml +++ b/pom.xml @@ -160,7 +160,7 @@ com.sun.xml.bind jaxb-impl - 3.0.2-b01 + 3.0.2 org.apache.ant From c9601d4e22bf10f34d5c7e38c338829c5af101ef Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Aug 2021 18:03:45 +0000 Subject: [PATCH 14/50] Bump maven-artifact from 3.8.1 to 3.8.2 Bumps [maven-artifact](https://github.com/apache/maven) from 3.8.1 to 3.8.2. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.1...maven-3.8.2) --- updated-dependencies: - dependency-name: org.apache.maven:maven-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6f79802c..2c04b544 100644 --- a/pom.xml +++ b/pom.xml @@ -208,7 +208,7 @@ org.apache.maven maven-artifact - 3.8.1 + 3.8.2 de.odysseus.juel From a4ee2edfc5875b2f8d2f5cd9a38c7bab0e2fbe0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Aug 2021 18:03:53 +0000 Subject: [PATCH 15/50] Bump maven-plugin-api from 3.8.1 to 3.8.2 Bumps [maven-plugin-api](https://github.com/apache/maven) from 3.8.1 to 3.8.2. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.1...maven-3.8.2) --- updated-dependencies: - dependency-name: org.apache.maven:maven-plugin-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6f79802c..67b118d3 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,7 @@ org.apache.maven maven-plugin-api - 3.8.1 + 3.8.2 org.apache.maven.plugin-tools From 0a353e031f77998bf97b2e42dd447a09c721f83e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Aug 2021 18:03:17 +0000 Subject: [PATCH 16/50] Bump spring.boot.version from 2.5.3 to 2.5.4 Bumps `spring.boot.version` from 2.5.3 to 2.5.4. Updates `spring-boot-dependencies` from 2.5.3 to 2.5.4 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.3...v2.5.4) Updates `spring-boot-starter-data-rest` from 2.5.3 to 2.5.4 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.3...v2.5.4) Updates `spring-boot-starter-actuator` from 2.5.3 to 2.5.4 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.3...v2.5.4) Updates `spring-boot-starter-web` from 2.5.3 to 2.5.4 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.3...v2.5.4) Updates `spring-boot-starter-test` from 2.5.3 to 2.5.4 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.3...v2.5.4) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6f79802c..c52c4ecc 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.9 - 2.5.3 + 2.5.4 From e2845e62024e7fd83ae406d8e3988c5ef3647642 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 20 Aug 2021 18:03:52 +0000 Subject: [PATCH 17/50] Bump gson from 2.8.7 to 2.8.8 Bumps [gson](https://github.com/google/gson) from 2.8.7 to 2.8.8. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/gson/compare/gson-parent-2.8.7...gson-parent-2.8.8) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6f79802c..1f1c8f47 100644 --- a/pom.xml +++ b/pom.xml @@ -243,7 +243,7 @@ com.google.code.gson gson - 2.8.7 + 2.8.8 net.time4j From c6471986d9279422ed692321f6299f945fb48063 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 26 Aug 2021 18:03:22 +0000 Subject: [PATCH 18/50] Bump mockito-core from 3.11.2 to 3.12.4 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.11.2 to 3.12.4. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.11.2...v3.12.4) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6f79802c..a76f68d7 100644 --- a/pom.xml +++ b/pom.xml @@ -192,7 +192,7 @@ org.mockito mockito-core - 3.11.2 + 3.12.4 org.camunda.bpm From 2cd9c7418e9e2a2aceb03ed438e6da15d18fbb2d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Sep 2021 09:30:52 +0000 Subject: [PATCH 19/50] Bump dependency-check-maven from 6.2.2 to 6.3.0 Bumps [dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 6.2.2 to 6.3.0. - [Release notes](https://github.com/jeremylong/DependencyCheck/releases) - [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/jeremylong/DependencyCheck/compare/v6.2.2...v6.3.0) --- updated-dependencies: - dependency-name: org.owasp:dependency-check-maven dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pom.xml b/pom.xml index 6f79802c..f9aadcd1 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.9 - 2.5.3 + 2.5.4 @@ -170,7 +170,7 @@ org.apache.maven maven-plugin-api - 3.8.1 + 3.8.2 org.apache.maven.plugin-tools @@ -208,7 +208,7 @@ org.apache.maven maven-artifact - 3.8.1 + 3.8.2 de.odysseus.juel @@ -431,7 +431,7 @@ org.owasp dependency-check-maven - 6.2.2 + 6.3.0 owasp-dependency-check-suppressions.xml From ed6cb916a12f291931d610849fb4da5042d49b3e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 1 Sep 2021 18:03:27 +0000 Subject: [PATCH 20/50] Bump dependency-check-maven from 6.3.0 to 6.3.1 Bumps [dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 6.3.0 to 6.3.1. - [Release notes](https://github.com/jeremylong/DependencyCheck/releases) - [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/jeremylong/DependencyCheck/compare/v6.3.0...v6.3.1) --- updated-dependencies: - dependency-name: org.owasp:dependency-check-maven dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c2ce107d..56ee4e06 100644 --- a/pom.xml +++ b/pom.xml @@ -431,7 +431,7 @@ org.owasp dependency-check-maven - 6.3.0 + 6.3.1 owasp-dependency-check-suppressions.xml From de78afaac39bf1c79856d91e8c2407046b0a1bcd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Sep 2021 18:02:59 +0000 Subject: [PATCH 21/50] Bump groovy from 3.0.8 to 3.0.9 Bumps [groovy](https://github.com/apache/groovy) from 3.0.8 to 3.0.9. - [Release notes](https://github.com/apache/groovy/releases) - [Commits](https://github.com/apache/groovy/commits) --- updated-dependencies: - dependency-name: org.codehaus.groovy:groovy dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c2ce107d..467abfb6 100644 --- a/pom.xml +++ b/pom.xml @@ -238,7 +238,7 @@ org.codehaus.groovy groovy - 3.0.8 + 3.0.9 com.google.code.gson From bd21e05f144b43aa42e3b934602f205f84b60052 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 8 Sep 2021 18:03:49 +0000 Subject: [PATCH 22/50] Bump maven-javadoc-plugin from 3.3.0 to 3.3.1 Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.3.0 to 3.3.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.3.0...maven-javadoc-plugin-3.3.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 69f87249..45e9b2d6 100644 --- a/pom.xml +++ b/pom.xml @@ -415,7 +415,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 3.3.0 + 3.3.1 false From b640dbb5aad9833e490c983387e8141e2b115272 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 15 Sep 2021 18:03:47 +0000 Subject: [PATCH 23/50] Bump spring.version from 5.3.9 to 5.3.10 Bumps `spring.version` from 5.3.9 to 5.3.10. Updates `spring-expression` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) Updates `spring-context` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) Updates `spring-test` from 5.3.9 to 5.3.10 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.9...v5.3.10) --- updated-dependencies: - dependency-name: org.springframework:spring-expression dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 45e9b2d6..86e4b7ad 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ UTF-8 - 5.3.9 + 5.3.10 2.5.4 From 69c3e76f83af1457b2c1004714828c7797dcd622 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Sep 2021 08:09:56 +0000 Subject: [PATCH 24/50] Bump spring.boot.version from 2.5.4 to 2.5.5 Bumps `spring.boot.version` from 2.5.4 to 2.5.5. Updates `spring-boot-dependencies` from 2.5.4 to 2.5.5 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.4...v2.5.5) Updates `spring-boot-starter-data-rest` from 2.5.4 to 2.5.5 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.4...v2.5.5) Updates `spring-boot-starter-actuator` from 2.5.4 to 2.5.5 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.4...v2.5.5) Updates `spring-boot-starter-web` from 2.5.4 to 2.5.5 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.4...v2.5.5) Updates `spring-boot-starter-test` from 2.5.4 to 2.5.5 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.4...v2.5.5) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 86e4b7ad..5870e2a1 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.10 - 2.5.4 + 2.5.5 From ae25f4c4bb354a7df7352427d3601f5d61360e26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 29 Sep 2021 18:04:52 +0000 Subject: [PATCH 25/50] Bump dependency-check-maven from 6.3.1 to 6.3.2 Bumps [dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 6.3.1 to 6.3.2. - [Release notes](https://github.com/jeremylong/DependencyCheck/releases) - [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/jeremylong/DependencyCheck/compare/v6.3.1...v6.3.2) --- updated-dependencies: - dependency-name: org.owasp:dependency-check-maven dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 5870e2a1..99e2ed75 100644 --- a/pom.xml +++ b/pom.xml @@ -431,7 +431,7 @@ org.owasp dependency-check-maven - 6.3.1 + 6.3.2 owasp-dependency-check-suppressions.xml From eb5153b003d17fb0c5e4a5a1e6bb12664c8b2923 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Oct 2021 18:05:05 +0000 Subject: [PATCH 26/50] Bump maven-artifact from 3.8.2 to 3.8.3 Bumps [maven-artifact](https://github.com/apache/maven) from 3.8.2 to 3.8.3. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.2...maven-3.8.3) --- updated-dependencies: - dependency-name: org.apache.maven:maven-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 99e2ed75..10c42d89 100644 --- a/pom.xml +++ b/pom.xml @@ -208,7 +208,7 @@ org.apache.maven maven-artifact - 3.8.2 + 3.8.3 de.odysseus.juel From 39fa21e8ad7bd4957142d28de13840584328b1e4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Oct 2021 18:05:12 +0000 Subject: [PATCH 27/50] Bump maven-plugin-api from 3.8.2 to 3.8.3 Bumps [maven-plugin-api](https://github.com/apache/maven) from 3.8.2 to 3.8.3. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.2...maven-3.8.3) --- updated-dependencies: - dependency-name: org.apache.maven:maven-plugin-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 99e2ed75..a2e976ef 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,7 @@ org.apache.maven maven-plugin-api - 3.8.2 + 3.8.3 org.apache.maven.plugin-tools From 8483cf4171fec2af0aec3b96b62d47f1a2504ea3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Oct 2021 18:03:33 +0000 Subject: [PATCH 28/50] Bump mockito-core from 3.12.4 to 4.0.0 Bumps [mockito-core](https://github.com/mockito/mockito) from 3.12.4 to 4.0.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v3.12.4...v4.0.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 99e2ed75..c4153b4a 100644 --- a/pom.xml +++ b/pom.xml @@ -192,7 +192,7 @@ org.mockito mockito-core - 3.12.4 + 4.0.0 org.camunda.bpm From 703441d8f4be1865427b8a8ab5b0cab998d679b5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:02:48 +0000 Subject: [PATCH 29/50] Bump camunda-bpmn-model from 7.15.0 to 7.16.0 Bumps camunda-bpmn-model from 7.15.0 to 7.16.0. --- updated-dependencies: - dependency-name: org.camunda.bpm.model:camunda-bpmn-model dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b70ca8e..7a560aea 100644 --- a/pom.xml +++ b/pom.xml @@ -274,7 +274,7 @@ org.camunda.bpm.model camunda-bpmn-model - 7.15.0 + 7.16.0 compile From f21fde891992e601ab396a095311b1e256c771bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:02:51 +0000 Subject: [PATCH 30/50] Bump camunda-engine from 7.15.0 to 7.16.0 Bumps camunda-engine from 7.15.0 to 7.16.0. --- updated-dependencies: - dependency-name: org.camunda.bpm:camunda-engine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b70ca8e..37159e81 100644 --- a/pom.xml +++ b/pom.xml @@ -197,7 +197,7 @@ org.camunda.bpm camunda-engine - 7.15.0 + 7.16.0 org.apache.commons From 471e05f5b70aa86679d83ab4f518cd553297ec0b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:02:53 +0000 Subject: [PATCH 31/50] Bump camunda-bpm-spring-boot-starter from 7.15.0 to 7.16.0 Bumps camunda-bpm-spring-boot-starter from 7.15.0 to 7.16.0. --- updated-dependencies: - dependency-name: org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b70ca8e..9acf5d83 100644 --- a/pom.xml +++ b/pom.xml @@ -268,7 +268,7 @@ org.camunda.bpm.springboot camunda-bpm-spring-boot-starter - 7.15.0 + 7.16.0 test From 04bc13c5599bab839dfefaeb3c9f9a2a18eb425a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:02:54 +0000 Subject: [PATCH 32/50] Bump camunda-bpm-spring-boot-starter-webapp from 7.15.0 to 7.16.0 Bumps camunda-bpm-spring-boot-starter-webapp from 7.15.0 to 7.16.0. --- updated-dependencies: - dependency-name: org.camunda.bpm.springboot:camunda-bpm-spring-boot-starter-webapp dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b70ca8e..754915ee 100644 --- a/pom.xml +++ b/pom.xml @@ -154,7 +154,7 @@ org.camunda.bpm.springboot camunda-bpm-spring-boot-starter-webapp - 7.15.0 + 7.16.0 compile From c14ffd009775b7a02c38b477974e71cab1fab250 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Oct 2021 18:02:58 +0000 Subject: [PATCH 33/50] Bump dependency-check-maven from 6.3.2 to 6.4.1 Bumps [dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 6.3.2 to 6.4.1. - [Release notes](https://github.com/jeremylong/DependencyCheck/releases) - [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/jeremylong/DependencyCheck/compare/v6.3.2...v6.4.1) --- updated-dependencies: - dependency-name: org.owasp:dependency-check-maven dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0b70ca8e..f2cf8447 100644 --- a/pom.xml +++ b/pom.xml @@ -431,7 +431,7 @@ org.owasp dependency-check-maven - 6.3.2 + 6.4.1 owasp-dependency-check-suppressions.xml From 61ffa524c2e58c57cccb6bbdbc0b478d1e64778d Mon Sep 17 00:00:00 2001 From: sdibernardo Date: Wed, 13 Oct 2021 10:57:13 +0200 Subject: [PATCH 34/50] Create release-maven-snapshot.yml --- .github/workflows/release-maven-snapshot.yml | 22 ++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .github/workflows/release-maven-snapshot.yml diff --git a/.github/workflows/release-maven-snapshot.yml b/.github/workflows/release-maven-snapshot.yml new file mode 100644 index 00000000..279b1dc6 --- /dev/null +++ b/.github/workflows/release-maven-snapshot.yml @@ -0,0 +1,22 @@ +name: Publish package to the Maven Central Repository +on: + release: + types: [created] +jobs: + publish: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Maven Central Repository + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + server-id: ossrh + server-username: MAVEN_USERNAME + server-password: MAVEN_PASSWORD + - name: Publish package + run: mvn --batch-mode deploy + env: + MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} + MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} From 78ee630343a359d049ab185cc740c506352dd0aa Mon Sep 17 00:00:00 2001 From: sdibernardo Date: Wed, 13 Oct 2021 10:57:26 +0200 Subject: [PATCH 35/50] Create maven.yml --- .github/workflows/maven.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .github/workflows/maven.yml diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 00000000..b02abab2 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,25 @@ +# This workflow will build a Java project with Maven +# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven + +name: Java CI with Maven + +on: + push: + branches: [ development, master ] + pull_request: + branches: [ development, master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Set up JDK 11 + uses: actions/setup-java@v2 + with: + java-version: '11' + distribution: 'adopt' + - name: Build with Maven + run: mvn -B package --file pom.xml From 7fa469ac79bffd0727ee3a96a6fcb30d7f55914e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Oct 2021 18:02:41 +0000 Subject: [PATCH 36/50] Bump spring.version from 5.3.10 to 5.3.11 Bumps `spring.version` from 5.3.10 to 5.3.11. Updates `spring-expression` from 5.3.10 to 5.3.11 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.11) Updates `spring-context` from 5.3.10 to 5.3.11 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.11) Updates `spring-test` from 5.3.10 to 5.3.11 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.10...v5.3.11) --- updated-dependencies: - dependency-name: org.springframework:spring-expression dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index c0d3b90a..74d2fd47 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ UTF-8 - 5.3.10 + 5.3.11 2.5.5 From 4c38da5fbc5d992197269d603c95b4d68c90f795 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 19 Oct 2021 18:04:17 +0000 Subject: [PATCH 37/50] Bump ant from 1.10.11 to 1.10.12 Bumps ant from 1.10.11 to 1.10.12. --- updated-dependencies: - dependency-name: org.apache.ant:ant dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 74d2fd47..f9153c36 100644 --- a/pom.xml +++ b/pom.xml @@ -165,7 +165,7 @@ org.apache.ant ant - 1.10.11 + 1.10.12 org.apache.maven From 02b5845279e5a231183ee67069f5ed24412f634e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Oct 2021 18:04:42 +0000 Subject: [PATCH 38/50] Bump spring.boot.version from 2.5.5 to 2.5.6 Bumps `spring.boot.version` from 2.5.5 to 2.5.6. Updates `spring-boot-dependencies` from 2.5.5 to 2.5.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.5...v2.5.6) Updates `spring-boot-starter-data-rest` from 2.5.5 to 2.5.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.5...v2.5.6) Updates `spring-boot-starter-actuator` from 2.5.5 to 2.5.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.5...v2.5.6) Updates `spring-boot-starter-web` from 2.5.5 to 2.5.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.5...v2.5.6) Updates `spring-boot-starter-test` from 2.5.5 to 2.5.6 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.5...v2.5.6) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f9153c36..1fee9715 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.11 - 2.5.5 + 2.5.6 From b9f6859080550b986f749526ecb5025e896fcadb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 26 Oct 2021 08:49:37 +0000 Subject: [PATCH 39/50] Bump spring.version from 5.3.11 to 5.3.12 Bumps `spring.version` from 5.3.11 to 5.3.12. Updates `spring-expression` from 5.3.11 to 5.3.12 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.11...v5.3.12) Updates `spring-context` from 5.3.11 to 5.3.12 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.11...v5.3.12) Updates `spring-test` from 5.3.11 to 5.3.12 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.11...v5.3.12) --- updated-dependencies: - dependency-name: org.springframework:spring-expression dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 1fee9715..2100342a 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ UTF-8 - 5.3.11 + 5.3.12 2.5.6 From f0281bf82ccda0c9afcae5f103fd916c1d5c1e2a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 1 Nov 2021 18:03:51 +0000 Subject: [PATCH 40/50] Bump gson from 2.8.8 to 2.8.9 Bumps [gson](https://github.com/google/gson) from 2.8.8 to 2.8.9. - [Release notes](https://github.com/google/gson/releases) - [Changelog](https://github.com/google/gson/blob/master/CHANGELOG.md) - [Commits](https://github.com/google/gson/compare/gson-parent-2.8.8...gson-parent-2.8.9) --- updated-dependencies: - dependency-name: com.google.code.gson:gson dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 2100342a..4f1c4dc9 100644 --- a/pom.xml +++ b/pom.xml @@ -243,7 +243,7 @@ com.google.code.gson gson - 2.8.8 + 2.8.9 net.time4j From 3c79931125d58765b813128ffd0d1d537939c506 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Nov 2021 18:04:08 +0000 Subject: [PATCH 41/50] Bump dependency-check-maven from 6.4.1 to 6.5.0 Bumps [dependency-check-maven](https://github.com/jeremylong/DependencyCheck) from 6.4.1 to 6.5.0. - [Release notes](https://github.com/jeremylong/DependencyCheck/releases) - [Changelog](https://github.com/jeremylong/DependencyCheck/blob/main/RELEASE_NOTES.md) - [Commits](https://github.com/jeremylong/DependencyCheck/compare/v6.4.1...v6.5.0) --- updated-dependencies: - dependency-name: org.owasp:dependency-check-maven dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4f1c4dc9..645b2e72 100644 --- a/pom.xml +++ b/pom.xml @@ -431,7 +431,7 @@ org.owasp dependency-check-maven - 6.4.1 + 6.5.0 owasp-dependency-check-suppressions.xml From 42758b3870165bbbb07467db71e6d1af06614489 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 11 Nov 2021 18:05:12 +0000 Subject: [PATCH 42/50] Bump spring.version from 5.3.12 to 5.3.13 Bumps `spring.version` from 5.3.12 to 5.3.13. Updates `spring-expression` from 5.3.12 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13) Updates `spring-context` from 5.3.12 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13) Updates `spring-test` from 5.3.12 to 5.3.13 - [Release notes](https://github.com/spring-projects/spring-framework/releases) - [Commits](https://github.com/spring-projects/spring-framework/compare/v5.3.12...v5.3.13) --- updated-dependencies: - dependency-name: org.springframework:spring-expression dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-context dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework:spring-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 645b2e72..3906ca08 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ UTF-8 - 5.3.12 + 5.3.13 2.5.6 From 20944ace9ed640a58d6133b13795acded10cb668 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Nov 2021 18:03:17 +0000 Subject: [PATCH 43/50] Bump cron-utils from 9.1.3 to 9.1.6 Bumps [cron-utils](https://github.com/jmrozanec/cron-utils) from 9.1.3 to 9.1.6. - [Release notes](https://github.com/jmrozanec/cron-utils/releases) - [Commits](https://github.com/jmrozanec/cron-utils/compare/9.1.3...9.1.6) --- updated-dependencies: - dependency-name: com.cronutils:cron-utils dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 645b2e72..c972aa7b 100644 --- a/pom.xml +++ b/pom.xml @@ -103,7 +103,7 @@ com.cronutils cron-utils - 9.1.3 + 9.1.6 org.springframework From 3d630c18b18b3d930ee874dfc95eea05350af45d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Nov 2021 18:03:22 +0000 Subject: [PATCH 44/50] Bump spring.boot.version from 2.5.6 to 2.6.0 Bumps `spring.boot.version` from 2.5.6 to 2.6.0. Updates `spring-boot-dependencies` from 2.5.6 to 2.6.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.6...v2.6.0) Updates `spring-boot-starter-data-rest` from 2.5.6 to 2.6.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.6...v2.6.0) Updates `spring-boot-starter-actuator` from 2.5.6 to 2.6.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.6...v2.6.0) Updates `spring-boot-starter-web` from 2.5.6 to 2.6.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.6...v2.6.0) Updates `spring-boot-starter-test` from 2.5.6 to 2.6.0 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.5.6...v2.6.0) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-minor - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3906ca08..3782c08c 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.13 - 2.5.6 + 2.6.0 From e4f8e91b4597ed47fd83783a273cbf6f71b09534 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 19 Nov 2021 18:03:32 +0000 Subject: [PATCH 45/50] Bump mockito-core from 4.0.0 to 4.1.0 Bumps [mockito-core](https://github.com/mockito/mockito) from 4.0.0 to 4.1.0. - [Release notes](https://github.com/mockito/mockito/releases) - [Commits](https://github.com/mockito/mockito/compare/v4.0.0...v4.1.0) --- updated-dependencies: - dependency-name: org.mockito:mockito-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3906ca08..e62ae715 100644 --- a/pom.xml +++ b/pom.xml @@ -192,7 +192,7 @@ org.mockito mockito-core - 4.0.0 + 4.1.0 org.camunda.bpm From 066034ee9c9b2727576560a0a833d44ec9db5171 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Nov 2021 18:04:05 +0000 Subject: [PATCH 46/50] Bump maven-artifact from 3.8.3 to 3.8.4 Bumps [maven-artifact](https://github.com/apache/maven) from 3.8.3 to 3.8.4. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.3...maven-3.8.4) --- updated-dependencies: - dependency-name: org.apache.maven:maven-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eee55881..f1176bf5 100644 --- a/pom.xml +++ b/pom.xml @@ -208,7 +208,7 @@ org.apache.maven maven-artifact - 3.8.3 + 3.8.4 de.odysseus.juel From 48f8c0a2eeffdd85148f0ad9ab69d231924ba1b6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Nov 2021 18:04:10 +0000 Subject: [PATCH 47/50] Bump maven-plugin-api from 3.8.3 to 3.8.4 Bumps [maven-plugin-api](https://github.com/apache/maven) from 3.8.3 to 3.8.4. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.8.3...maven-3.8.4) --- updated-dependencies: - dependency-name: org.apache.maven:maven-plugin-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index eee55881..604a655d 100644 --- a/pom.xml +++ b/pom.xml @@ -170,7 +170,7 @@ org.apache.maven maven-plugin-api - 3.8.3 + 3.8.4 org.apache.maven.plugin-tools From e8ebb930e53df74c32ee7037fa6c5f0f8619f898 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Nov 2021 18:04:02 +0000 Subject: [PATCH 48/50] Bump spring.boot.version from 2.6.0 to 2.6.1 Bumps `spring.boot.version` from 2.6.0 to 2.6.1. Updates `spring-boot-dependencies` from 2.6.0 to 2.6.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.6.0...v2.6.1) Updates `spring-boot-starter-data-rest` from 2.6.0 to 2.6.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.6.0...v2.6.1) Updates `spring-boot-starter-actuator` from 2.6.0 to 2.6.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.6.0...v2.6.1) Updates `spring-boot-starter-web` from 2.6.0 to 2.6.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.6.0...v2.6.1) Updates `spring-boot-starter-test` from 2.6.0 to 2.6.1 - [Release notes](https://github.com/spring-projects/spring-boot/releases) - [Commits](https://github.com/spring-projects/spring-boot/compare/v2.6.0...v2.6.1) --- updated-dependencies: - dependency-name: org.springframework.boot:spring-boot-dependencies dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-data-rest dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-actuator dependency-type: direct:development update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-web dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.springframework.boot:spring-boot-starter-test dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 860afce6..1b3646eb 100644 --- a/pom.xml +++ b/pom.xml @@ -84,7 +84,7 @@ UTF-8 5.3.13 - 2.6.0 + 2.6.1 From d629e733b007af128c3683005fd4ed91a375c41a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Nov 2021 18:04:10 +0000 Subject: [PATCH 49/50] Bump maven-plugin-annotations from 3.6.1 to 3.6.2 Bumps [maven-plugin-annotations](https://github.com/apache/maven-plugin-tools) from 3.6.1 to 3.6.2. - [Release notes](https://github.com/apache/maven-plugin-tools/releases) - [Commits](https://github.com/apache/maven-plugin-tools/compare/maven-plugin-tools-3.6.1...maven-plugin-tools-3.6.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugin-tools:maven-plugin-annotations dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 860afce6..8174cd43 100644 --- a/pom.xml +++ b/pom.xml @@ -175,7 +175,7 @@ org.apache.maven.plugin-tools maven-plugin-annotations - 3.6.1 + 3.6.2 provided From b3b935d8765089ab1ac1de11f418a955d7547aa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 10 Dec 2021 18:58:25 +0000 Subject: [PATCH 50/50] Bump log4j-core from 2.14.1 to 2.15.0 Bumps log4j-core from 2.14.1 to 2.15.0. --- updated-dependencies: - dependency-name: org.apache.logging.log4j:log4j-core dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b984a8ad..3d04174e 100644 --- a/pom.xml +++ b/pom.xml @@ -233,7 +233,7 @@ org.apache.logging.log4j log4j-core - 2.14.1 + 2.15.0 org.codehaus.groovy