Bump ch.qos.logback:logback-classic from 1.4.9 to 1.4.11 (#649) #920
This file contains 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
name: CI | |
on: | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
strategy: | |
matrix: | |
java: ['17' ] | |
# Kotlin needs access to java.util | |
include: | |
- java: '17' | |
maven-opts: --add-opens java.base/java.util=ALL-UNNAMED | |
runs-on: 'ubuntu-latest' | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: ${{ matrix.java }} | |
distribution: 'zulu' | |
cache: 'maven' | |
- name: print Java version | |
run: java -version | |
- name: Build | |
env: | |
MAVEN_OPTS: ${{ matrix.maven-opts }} | |
run: mvn -B clean package biz.aQute.bnd:bnd-resolver-maven-plugin:resolve --file pom.xml |