From 5b2ff0db393c118e9c02ba30eb255215a05b8a07 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 15 Aug 2022 15:18:15 +0000 Subject: [PATCH 01/13] Bump maven-javadoc-plugin from 3.4.0 to 3.4.1 Bumps [maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.4.0...maven-javadoc-plugin-3.4.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] Signed-off-by: Dennis Labordus --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 90d17de..fb3026a 100644 --- a/pom.xml +++ b/pom.xml @@ -250,7 +250,7 @@ SPDX-License-Identifier: Apache-2.0 org.apache.maven.plugins maven-javadoc-plugin - 3.4.0 + 3.4.1 attach-javadocs From 48c57cab8327f2e1336319ca18fff95c9ed395f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Aug 2022 15:19:21 +0000 Subject: [PATCH 02/13] Bump slf4j-simple from 1.7.36 to 2.0.0 Bumps [slf4j-simple](https://github.com/qos-ch/slf4j) from 1.7.36 to 2.0.0. - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_1.7.36...v_2.0.0) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-simple dependency-type: direct:development 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 fb3026a..157d129 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ SPDX-License-Identifier: Apache-2.0 2.11.2.Final 3.0 - 1.7.36 + 2.0.0 4.9.2 1.5.2.Final 0.9.1 From a783a41c93884284cfd3db3e76eba135d89eb68d Mon Sep 17 00:00:00 2001 From: Dennis Labordus Date: Tue, 23 Aug 2022 14:21:01 +0200 Subject: [PATCH 03/13] Fixed GitHub Actions. Signed-off-by: Dennis Labordus --- .github/dependabot.yml | 2 +- .github/workflows/automate-projects.yml | 38 ++++++----------- .github/workflows/build-project.yml | 7 ++-- .github/workflows/release-project.yml | 24 ++++++----- .github/workflows/reuse.yml | 9 ++-- .github/workflows/sonarcloud-analysis.yml | 50 ++++++++++++++++------- 6 files changed, 71 insertions(+), 59 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index c3b2e4a..d9c5541 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2021 Alliander N.V. +# SPDX-FileCopyrightText: 2022 Alliander N.V. # # SPDX-License-Identifier: Apache-2.0 diff --git a/.github/workflows/automate-projects.yml b/.github/workflows/automate-projects.yml index bcb7268..3c61af0 100644 --- a/.github/workflows/automate-projects.yml +++ b/.github/workflows/automate-projects.yml @@ -1,10 +1,10 @@ -# SPDX-FileCopyrightText: 2021 Alliander N.V. +# SPDX-FileCopyrightText: 2022 Alliander N.V. # # SPDX-License-Identifier: Apache-2.0 name: Add issues and pull request to project boards -on: [issues, pull_request, pull_request_target] +on: [ issues, pull_request, pull_request_target ] jobs: github-actions-automate-projects: @@ -12,31 +12,17 @@ jobs: if: ${{ (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }} steps: - - name: add-new-issues-to-repository-based-project-column - uses: docker://takanabe/github-actions-automate-projects:v0.0.1 - if: github.event_name == 'issues' && github.event.action == 'opened' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GITHUB_PROJECT_URL: https://github.com/com-pas/compas-cim-mapping/projects/2 - GITHUB_PROJECT_COLUMN_NAME: To do - - name: add-new-pull-request-to-repository-based-project-column - uses: docker://takanabe/github-actions-automate-projects:v0.0.1 - if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.action == 'opened' - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - GITHUB_PROJECT_URL: https://github.com/com-pas/compas-cim-mapping/projects/2 - GITHUB_PROJECT_COLUMN_NAME: To do - name: add-new-issues-to-organization-based-project-column - uses: docker://takanabe/github-actions-automate-projects:v0.0.1 if: github.event_name == 'issues' && github.event.action == 'opened' - env: - GITHUB_TOKEN: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} - GITHUB_PROJECT_URL: https://github.com/orgs/com-pas/projects/1 - GITHUB_PROJECT_COLUMN_NAME: To do + uses: alex-page/github-project-automation-plus@v0.8.1 + with: + project: CoMPAS Issues Overview Board + column: To do + repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} - name: add-new-pull-request-to-organization-based-project-column - uses: docker://takanabe/github-actions-automate-projects:v0.0.1 if: (github.event_name == 'pull_request' || github.event_name == 'pull_request_target') && github.event.action == 'opened' - env: - GITHUB_TOKEN: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} - GITHUB_PROJECT_URL: https://github.com/orgs/com-pas/projects/2 - GITHUB_PROJECT_COLUMN_NAME: To do + uses: alex-page/github-project-automation-plus@v0.8.1 + with: + project: CoMPAS Pull Request Overview Board + column: To do + repo-token: ${{ secrets.ORG_GITHUB_ACTION_SECRET }} diff --git a/.github/workflows/build-project.yml b/.github/workflows/build-project.yml index fd82244..614fbf5 100644 --- a/.github/workflows/build-project.yml +++ b/.github/workflows/build-project.yml @@ -22,9 +22,7 @@ jobs: steps: - name: Checkout uses: actions/checkout@v3 - - name: Set up Docker Buildx - id: buildx - uses: docker/setup-buildx-action@v2 + - name: Cache Docker Register uses: actions/cache@v3 with: @@ -37,6 +35,9 @@ jobs: key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 - name: Set up JDK 17 uses: actions/setup-java@v3 with: diff --git a/.github/workflows/release-project.yml b/.github/workflows/release-project.yml index e34cef1..ff3e633 100644 --- a/.github/workflows/release-project.yml +++ b/.github/workflows/release-project.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2021 Alliander N.V. +# SPDX-FileCopyrightText: 2022 Alliander N.V. # # SPDX-License-Identifier: Apache-2.0 @@ -12,17 +12,12 @@ jobs: push_to_registry: name: Build and publish runs-on: ubuntu-latest + timeout-minutes: 15 + steps: - name: Checkout uses: actions/checkout@v3 - - name: Set up Docker Buildx - id: buildx - uses: docker/setup-buildx-action@v2 - - name: Login to Docker Hub - uses: docker/login-action@v2 - with: - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_TOKEN }} + - name: Cache Docker Register uses: actions/cache@v3 with: @@ -38,13 +33,22 @@ jobs: - name: Extract tag name id: extract_tagname shell: bash - # Extra the tagname form the git reference, value of GITHUB_REF will be something like refs/tags/. + # Extract the tag name from the git reference, value of GITHUB_REF will be something like refs/tags/. run: echo "##[set-output name=tagname;]$(echo ${GITHUB_REF##*/})" + - name: Set up JDK 17 uses: actions/setup-java@v3 with: distribution: 'zulu' java-version: '17' + - name: Set up Docker Buildx + id: buildx + uses: docker/setup-buildx-action@v2 + - name: Login to Docker Hub + uses: docker/login-action@v2 + with: + username: ${{ secrets.DOCKER_HUB_USERNAME }} + password: ${{ secrets.DOCKER_HUB_TOKEN }} - name: Create custom Maven Settings.xml uses: whelk-io/maven-settings-xml-action@v20 diff --git a/.github/workflows/reuse.yml b/.github/workflows/reuse.yml index 5317feb..9ebd56d 100644 --- a/.github/workflows/reuse.yml +++ b/.github/workflows/reuse.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2021 Alliander N.V. +# SPDX-FileCopyrightText: 2022 Alliander N.V. # # SPDX-License-Identifier: Apache-2.0 @@ -10,6 +10,7 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 - - name: REUSE Compliance Check - uses: fsfe/reuse-action@v1 + - name: Checkout + uses: actions/checkout@v3 + - name: REUSE Compliance Check + uses: fsfe/reuse-action@v1 diff --git a/.github/workflows/sonarcloud-analysis.yml b/.github/workflows/sonarcloud-analysis.yml index e5889e9..0c66235 100644 --- a/.github/workflows/sonarcloud-analysis.yml +++ b/.github/workflows/sonarcloud-analysis.yml @@ -1,4 +1,4 @@ -# SPDX-FileCopyrightText: 2021 Alliander N.V. +# SPDX-FileCopyrightText: 2022 Alliander N.V. # # SPDX-License-Identifier: Apache-2.0 @@ -25,14 +25,11 @@ jobs: if: ${{ (github.event_name != 'pull_request_target' && github.actor != 'dependabot[bot]') || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }} steps: - - uses: actions/checkout@v3 + - name: Checkout + uses: actions/checkout@v3 with: fetch-depth: 0 - - name: Set up JDK 17 - uses: actions/setup-java@v3 - with: - distribution: 'zulu' - java-version: '17' + - name: Cache SonarCloud packages uses: actions/cache@v3 with: @@ -46,20 +43,43 @@ jobs: key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} restore-keys: ${{ runner.os }}-m2 + - name: Set up JDK 17 + uses: actions/setup-java@v3 + with: + distribution: 'zulu' + java-version: '17' + + - name: Set Common Sonar Variables + id: sonar_env + run: | + echo "##[set-output name=sonar_opts;]$(echo -Dsonar.host.url=https://sonarcloud.io \ + -Dsonar.projectKey=com-pas_compas-cim-mapping \ + -Dsonar.organization=com-pas )" - name: Create custom Maven Settings.xml uses: whelk-io/maven-settings-xml-action@v20 with: output_file: custom_maven_settings.xml servers: '[{ "id": "github-packages-compas", "username": "OWNER", "password": "${{ secrets.GITHUB_TOKEN }}" }]' - - name: Build and analyze + - name: Build and analyze (Pull Request) + if: ${{ github.event_name == 'pull_request' || (github.actor == 'dependabot[bot]' && github.event_name == 'pull_request_target') }} + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} + run: | + ./mvnw -B -s custom_maven_settings.xml -Psonar \ + ${{ steps.sonar_env.outputs.sonar_opts }} \ + -Dsonar.pullrequest.branch=${{ github.ref_name }} \ + -Dsonar.pullrequest.key=${{ github.event.pull_request.number }} \ + -Dsonar.pullrequest.base=${{ github.base_ref }} \ + -Dsonar.scm.revision=${{ github.event.pull_request.head.sha }} \ + clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar + - name: Build and analyze (Push) + if: ${{ github.event_name == 'push' }} env: - GITHUB_USERNAME: "OWNER" GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} run: | - ./mvnw -s custom_maven_settings.xml -B -Psonar \ - -Dsonar.projectKey=com-pas_compas-cim-mapping \ - -Dsonar.organization=com-pas \ - -Dsonar.host.url=https://sonarcloud.io \ - -Dsonar.pullrequest.key=${{ github.event.pull_request.number }} \ - clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar + ./mvnw -B -s custom_maven_settings.xml -Psonar \ + ${{ steps.sonar_env.outputs.sonar_opts }} \ + -Dsonar.branch.name=${{ github.ref_name }} \ + clean verify org.sonarsource.scanner.maven:sonar-maven-plugin:sonar From 99815021f47ed2a35bf767f42abcc6a1239ea78b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Aug 2022 15:20:05 +0000 Subject: [PATCH 04/13] Bump quarkus.platform.version from 2.11.2.Final to 2.11.3.Final Bumps `quarkus.platform.version` from 2.11.2.Final to 2.11.3.Final. Updates `quarkus-universe-bom` from 2.11.2.Final to 2.11.3.Final - [Release notes](https://github.com/quarkusio/quarkus-platform/releases) - [Commits](https://github.com/quarkusio/quarkus-platform/compare/2.11.2.Final...2.11.3.Final) Updates `quarkus-maven-plugin` from 2.11.2.Final to 2.11.3.Final --- updated-dependencies: - dependency-name: io.quarkus:quarkus-universe-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-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 157d129..e0fade1 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.9.1 - 2.11.2.Final + 2.11.3.Final 3.0 2.0.0 4.9.2 From a012891add360846300217c04537ace15df636c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 1 Sep 2022 15:26:20 +0000 Subject: [PATCH 05/13] Bump quarkus.platform.version from 2.11.3.Final to 2.12.0.Final Bumps `quarkus.platform.version` from 2.11.3.Final to 2.12.0.Final. Updates `quarkus-universe-bom` from 2.11.3.Final to 2.12.0.Final - [Release notes](https://github.com/quarkusio/quarkus-platform/releases) - [Commits](https://github.com/quarkusio/quarkus-platform/compare/2.11.3.Final...2.12.0.Final) Updates `quarkus-maven-plugin` from 2.11.3.Final to 2.12.0.Final --- updated-dependencies: - dependency-name: io.quarkus:quarkus-universe-bom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: io.quarkus:quarkus-maven-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 e0fade1..0631a4f 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.9.1 - 2.11.3.Final + 2.12.0.Final 3.0 2.0.0 4.9.2 From 2bc655cacfdbfc4b5430072159cde3c33a3eaaa5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Sep 2022 15:26:29 +0000 Subject: [PATCH 06/13] Bump quarkus.platform.version from 2.12.0.Final to 2.12.1.Final Bumps `quarkus.platform.version` from 2.12.0.Final to 2.12.1.Final. Updates `quarkus-universe-bom` from 2.12.0.Final to 2.12.1.Final - [Release notes](https://github.com/quarkusio/quarkus-platform/releases) - [Commits](https://github.com/quarkusio/quarkus-platform/compare/2.12.0.Final...2.12.1.Final) Updates `quarkus-maven-plugin` from 2.12.0.Final to 2.12.1.Final --- updated-dependencies: - dependency-name: io.quarkus:quarkus-universe-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-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 0631a4f..a5096c8 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.9.1 - 2.12.0.Final + 2.12.1.Final 3.0 2.0.0 4.9.2 From 06c41137ad9dc368c6850ed4c012bb8400a509d7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 8 Sep 2022 15:25:43 +0000 Subject: [PATCH 07/13] Bump compas.core.version from 0.9.1 to 0.9.2 Bumps `compas.core.version` from 0.9.1 to 0.9.2. Updates `scl2007b4` from 0.9.1 to 0.9.2 Updates `jaxrs-commons` from 0.9.1 to 0.9.2 --- updated-dependencies: - dependency-name: org.lfenergy.compas.core:scl2007b4 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.lfenergy.compas.core:jaxrs-commons 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 a5096c8..f39c90e 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ SPDX-License-Identifier: Apache-2.0 3.0.0-M7 3.2.0 - 0.9.1 + 0.9.2 2.12.1.Final 3.0 From 1562dbb9764d0c86711cf103a168aefc7127cc72 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 13 Sep 2022 15:27:58 +0000 Subject: [PATCH 08/13] Bump quarkus.platform.version from 2.12.1.Final to 2.12.2.Final Bumps `quarkus.platform.version` from 2.12.1.Final to 2.12.2.Final. Updates `quarkus-universe-bom` from 2.12.1.Final to 2.12.2.Final - [Release notes](https://github.com/quarkusio/quarkus-platform/releases) - [Commits](https://github.com/quarkusio/quarkus-platform/compare/2.12.1.Final...2.12.2.Final) Updates `quarkus-maven-plugin` from 2.12.1.Final to 2.12.2.Final --- updated-dependencies: - dependency-name: io.quarkus:quarkus-universe-bom dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: io.quarkus:quarkus-maven-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 f39c90e..f22499b 100644 --- a/pom.xml +++ b/pom.xml @@ -25,7 +25,7 @@ SPDX-License-Identifier: Apache-2.0 0.9.2 - 2.12.1.Final + 2.12.2.Final 3.0 2.0.0 4.9.2 From 41c8856fb489a1806a1ad56a025acede1f7da2c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Sep 2022 15:56:52 +0000 Subject: [PATCH 09/13] Bump powsybl.version from 4.9.2 to 4.10.0 Bumps `powsybl.version` from 4.9.2 to 4.10.0. Updates `powsybl-cgmes-conversion` from 4.9.2 to 4.10.0 Updates `powsybl-triple-store-impl-rdf4j` from 4.9.2 to 4.10.0 --- updated-dependencies: - dependency-name: com.powsybl:powsybl-cgmes-conversion dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: com.powsybl:powsybl-triple-store-impl-rdf4j 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 f22499b..ccc6daa 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ SPDX-License-Identifier: Apache-2.0 2.12.2.Final 3.0 2.0.0 - 4.9.2 + 4.10.0 1.5.2.Final 0.9.1 From bd43c0e3417d053144651f4c2306b6e44f8e5e5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Sep 2022 15:27:15 +0000 Subject: [PATCH 10/13] Bump slf4j-simple from 2.0.0 to 2.0.1 Bumps [slf4j-simple](https://github.com/qos-ch/slf4j) from 2.0.0 to 2.0.1. - [Release notes](https://github.com/qos-ch/slf4j/releases) - [Commits](https://github.com/qos-ch/slf4j/compare/v_2.0.0...v_2.0.1) --- updated-dependencies: - dependency-name: org.slf4j:slf4j-simple 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 ccc6daa..60b7c5b 100644 --- a/pom.xml +++ b/pom.xml @@ -27,7 +27,7 @@ SPDX-License-Identifier: Apache-2.0 2.12.2.Final 3.0 - 2.0.0 + 2.0.1 4.10.0 1.5.2.Final 0.9.1 From e591bf2eb306b10d720d857c0782dec9e9b78786 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Sep 2022 15:27:21 +0000 Subject: [PATCH 11/13] Bump compas.core.version from 0.9.2 to 0.9.3 Bumps `compas.core.version` from 0.9.2 to 0.9.3. Updates `scl2007b4` from 0.9.2 to 0.9.3 Updates `jaxrs-commons` from 0.9.2 to 0.9.3 --- updated-dependencies: - dependency-name: org.lfenergy.compas.core:scl2007b4 dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: org.lfenergy.compas.core:jaxrs-commons 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 ccc6daa..9f9704c 100644 --- a/pom.xml +++ b/pom.xml @@ -23,7 +23,7 @@ SPDX-License-Identifier: Apache-2.0 3.0.0-M7 3.2.0 - 0.9.2 + 0.9.3 2.12.2.Final 3.0 From 341ccc78bb3b74608c4e1cac8fc71c761cc4b994 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Sep 2022 15:15:59 +0000 Subject: [PATCH 12/13] Bump maven-jar-plugin from 3.2.2 to 3.3.0 Bumps [maven-jar-plugin](https://github.com/apache/maven-jar-plugin) from 3.2.2 to 3.3.0. - [Release notes](https://github.com/apache/maven-jar-plugin/releases) - [Commits](https://github.com/apache/maven-jar-plugin/compare/maven-jar-plugin-3.2.2...maven-jar-plugin-3.3.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-jar-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 ccc6daa..ae75a34 100644 --- a/pom.xml +++ b/pom.xml @@ -161,7 +161,7 @@ SPDX-License-Identifier: Apache-2.0 org.apache.maven.plugins maven-jar-plugin - 3.2.2 + 3.3.0 From e515a37132aee15c1eb4a8b9a987cfaba5565165 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Sep 2022 15:33:17 +0000 Subject: [PATCH 13/13] Bump powsybl.version from 4.10.0 to 4.10.1 Bumps `powsybl.version` from 4.10.0 to 4.10.1. Updates `powsybl-cgmes-conversion` from 4.10.0 to 4.10.1 Updates `powsybl-triple-store-impl-rdf4j` from 4.10.0 to 4.10.1 --- updated-dependencies: - dependency-name: com.powsybl:powsybl-cgmes-conversion dependency-type: direct:production update-type: version-update:semver-patch - dependency-name: com.powsybl:powsybl-triple-store-impl-rdf4j 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 1c31e19..e1024d1 100644 --- a/pom.xml +++ b/pom.xml @@ -28,7 +28,7 @@ SPDX-License-Identifier: Apache-2.0 2.12.2.Final 3.0 2.0.1 - 4.10.0 + 4.10.1 1.5.2.Final 0.9.1