Skip to content

Bump jackson.version from 2.13.2 to 2.18.2 #224

Bump jackson.version from 2.13.2 to 2.18.2

Bump jackson.version from 2.13.2 to 2.18.2 #224

Workflow file for this run

name: CI_Build
on:
push:
branches: [ develop, master ]
pull_request:
branches: [ develop, master ]
jobs:
build_and_test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/[email protected]
with:
distribution: 'adopt' # See 'Supported distributions' for available options
java-version: '11'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: Build and test
# The *test* command executes each default lifecycle phase in order: validate -> compile -> test.
run: mvn --batch-mode clean test