Skip to content

Bump maven-source-plugin from 3.2.0 to 3.3.0 #150

Bump maven-source-plugin from 3.2.0 to 3.3.0

Bump maven-source-plugin from 3.2.0 to 3.3.0 #150

Workflow file for this run

name: Java CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 8, 11, 12, 13, 14, 15, 16, 17 ]
steps:
- uses: actions/checkout@v2
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v2
with:
distribution: 'adopt'
java-version: ${{ matrix.java }}
- name: Build with Maven
run: mvn -B package --file pom.xml
- uses: actions/upload-artifact@v2
with:
name: jdk-${{ matrix.java }}
path: ./radiobrowser4j/target/radiobrowser4j-*.jar