Skip to content

Bump render version from 4.1.0 to 4.2.0 after moving to scijava 38.0.… #1122

Bump render version from 4.1.0 to 4.2.0 after moving to scijava 38.0.…

Bump render version from 4.1.0 to 4.2.0 after moving to scijava 38.0.… #1122

Workflow file for this run

# This workflow will build a Java project with Maven, and cache/restore any dependencies to improve the workflow execution time
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Maven build
on:
push:
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'zulu'
cache: maven
- name: Build with Maven
run: mvn --no-transfer-progress -Dproject.build.sourceEncoding=UTF-8 package --file pom.xml