Build(deps): bump com.fasterxml.jackson.core:jackson-databind from 2.20.0 to 2.22.0 #461
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # SPDX-License-Identifier: Apache-2.0 | |
| # Copyright (c) 2018-2026 BioInception PVT LTD | |
| name: maven | |
| on: | |
| push: | |
| branches: [ main, master ] | |
| pull_request: | |
| branches: [ main, master ] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4.3.1 | |
| - name: Set up JDK 25 | |
| uses: actions/setup-java@v4.8.0 | |
| with: | |
| distribution: temurin | |
| java-version: '25' | |
| cache: maven | |
| - name: Build and test | |
| run: mvn -U -B clean verify | |
| - name: Package | |
| run: mvn -B -DskipTests=true package | |
| - name: Upload fat JAR and launchers | |
| uses: actions/upload-artifact@v4.6.2 | |
| with: | |
| name: smsd-jar-and-launchers | |
| path: | | |
| target/*-jar-with-dependencies.jar | |
| src/scripts/ |