diff options
-rw-r--r-- | .github/dependabot.yml | 11 | ||||
-rw-r--r-- | .github/workflows/github2gerrit.yaml | 33 | ||||
-rw-r--r-- | aai-core/pom.xml | 2 | ||||
-rw-r--r-- | aai-parent/pom.xml | 8 | ||||
-rw-r--r-- | pom.xml | 2 | ||||
-rw-r--r-- | releases/1.16.0-maven-release.yaml | 4 |
6 files changed, 54 insertions, 6 deletions
diff --git a/.github/dependabot.yml b/.github/dependabot.yml new file mode 100644 index 00000000..02362cd2 --- /dev/null +++ b/.github/dependabot.yml @@ -0,0 +1,11 @@ +--- +# Dependabot configured for weekly Maven updates + +version: 2 +updates: + # Enable version updates for Maven + - package-ecosystem: "maven" + directory: "/" + # Check the registry for updates weekly + schedule: + interval: "weekly" diff --git a/.github/workflows/github2gerrit.yaml b/.github/workflows/github2gerrit.yaml new file mode 100644 index 00000000..afa12927 --- /dev/null +++ b/.github/workflows/github2gerrit.yaml @@ -0,0 +1,33 @@ +--- +# SPDX-License-Identifier: Apache-2.0 +# Copyright 2024 The Linux Foundation <abelur@linux.com> + +name: call-github2gerrit-reusable-workflow + +# yamllint disable-line rule:truthy +on: + workflow_dispatch: + pull_request_target: + types: [opened, reopened, edited, synchronize] + branches: + - master + - main + +concurrency: + # yamllint disable-line rule:line-length + group: ${{ github.workflow }}-${{ github.run_id }} + cancel-in-progress: true + +jobs: + call-in-g2g-workflow: + permissions: + contents: read + pull-requests: write + uses: lfit/github2gerrit/.github/workflows/github2gerrit.yaml@main + with: + GERRIT_KNOWN_HOSTS: ${{ vars.GERRIT_KNOWN_HOSTS }} + GERRIT_SSH_USER_G2G: ${{ vars.GERRIT_SSH_USER_G2G }} + GERRIT_SSH_USER_G2G_EMAIL: ${{ vars.GERRIT_SSH_USER_G2G_EMAIL }} + ORGANIZATION: ${{ vars.ORGANIZATION }} + secrets: + GERRIT_SSH_PRIVKEY_G2G: ${{ secrets.GERRIT_SSH_PRIVKEY_G2G }} diff --git a/aai-core/pom.xml b/aai-core/pom.xml index 4e89c7fd..2a34d1ec 100644 --- a/aai-core/pom.xml +++ b/aai-core/pom.xml @@ -89,7 +89,7 @@ limitations under the License. <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-dependency-plugin</artifactId> - <version>2.8</version> + <version>3.8.1</version> </plugin> <plugin> <!-- explicitly define maven-deploy-plugin after other to force exec diff --git a/aai-parent/pom.xml b/aai-parent/pom.xml index 3abc96a9..1f45ee73 100644 --- a/aai-parent/pom.xml +++ b/aai-parent/pom.xml @@ -46,7 +46,7 @@ limitations under the License. <antlr.version>4.11.1</antlr.version> <commons.beanutils.version>1.9.4</commons.beanutils.version> <commons.cli.version>1.5.0</commons.cli.version> - <commons.compress.version>1.27.0</commons.compress.version> + <commons.compress.version>1.27.1</commons.compress.version> <commons.configuration2.version>2.10.1</commons.configuration2.version> <commons.io.version>2.16.1</commons.io.version> <commons.lang3.version>3.15.0</commons.lang3.version> @@ -64,7 +64,7 @@ limitations under the License. <jaxrs.version>2.1.1</jaxrs.version> <jcommander.version>1.78</jcommander.version> <jnr.ffi.version>2.2.12</jnr.ffi.version> - <jolt.version>0.1.7</jolt.version> + <jolt.version>0.1.8</jolt.version> <jopt.simple.version>5.0.4</jopt.simple.version> <jsonassert.version>1.5.1</jsonassert.version> <json.patch.version>1.9</json.patch.version> @@ -83,7 +83,7 @@ limitations under the License. <json.path.version>2.2.0</json.path.version> <json.version>20240303</json.version> <junit.version>4.12</junit.version> - <logback.version>1.4.10</logback.version> + <logback.version>1.4.14</logback.version> <slf4j.version>2.0.7</slf4j.version> <mockito.all.version>3.4.0</mockito.all.version> <mockito.core.version>3.4.0</mockito.core.version> @@ -426,7 +426,7 @@ limitations under the License. <dependency> <groupId>io.swagger.core.v3</groupId> <artifactId>swagger-core</artifactId> - <version>2.2.25</version> + <version>2.2.29</version> </dependency> <dependency> @@ -93,7 +93,7 @@ <plugin> <groupId>com.diffplug.spotless</groupId> <artifactId>spotless-maven-plugin</artifactId> - <version>1.18.0</version> + <version>1.20.0</version> <configuration> <java> <importOrder> diff --git a/releases/1.16.0-maven-release.yaml b/releases/1.16.0-maven-release.yaml new file mode 100644 index 00000000..b3511e19 --- /dev/null +++ b/releases/1.16.0-maven-release.yaml @@ -0,0 +1,4 @@ +distribution_type: maven +log_dir: aai-aai-common-maven-stage-master/1477/ +project: aai-common +version: 1.16.0 |