From 712bb24ba610ff277aa361f8b4caa7eae82ac765 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 27 Apr 2026 13:48:12 -0500 Subject: [PATCH 1/2] MODWRKFLOW-58: Switch to Maven GitHub Workflows. Explicitly enable `allow-snapshots-release` because Spring-Module-Core currently only has snapshot releases. Rename `Jenkinsfile` to `Jenkinsfile-disabled` to disable Jenkins. For reference, the process is described here: - https://github.com/folio-org/.github/blob/master/README-maven.md --- .github/workflows/maven.yml | 22 ++++++++++++++++++++++ Jenkinsfile => Jenkinsfile.disabled | 0 2 files changed, 22 insertions(+) create mode 100644 .github/workflows/maven.yml rename Jenkinsfile => Jenkinsfile.disabled (100%) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml new file mode 100644 index 00000000..043fabf4 --- /dev/null +++ b/.github/workflows/maven.yml @@ -0,0 +1,22 @@ +name: Maven central workflow + +on: + push: + pull_request: + workflow_dispatch: + +permissions: + contents: read + +jobs: + maven: + uses: folio-org/.github/.github/workflows/maven.yml@v1 + # Only handle push events from the main branch or tags, to decrease PR noise + if: github.ref_name == github.event.repository.default_branch || github.event_name != 'push' || github.ref_type == 'tag' + secrets: inherit + + # Set settings due to this maven project acting as a library or dependency to other FOLIO modules. + with: + + # The spring-module-core dependency currently only has snapshot releases. + allow-snapshots-release: true diff --git a/Jenkinsfile b/Jenkinsfile.disabled similarity index 100% rename from Jenkinsfile rename to Jenkinsfile.disabled From 2ebb3ad40d186b4b9d4afd89f0036322a620a0d2 Mon Sep 17 00:00:00 2001 From: Kevin Day Date: Mon, 27 Apr 2026 13:55:39 -0500 Subject: [PATCH 2/2] MODWRKFLOW-58: Use consistent file naming for Jenkinsfile-disabled. --- Jenkinsfile.disabled => Jenkinsfile-disabled | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Jenkinsfile.disabled => Jenkinsfile-disabled (100%) diff --git a/Jenkinsfile.disabled b/Jenkinsfile-disabled similarity index 100% rename from Jenkinsfile.disabled rename to Jenkinsfile-disabled