Skip to content

bump tomcat from 9.0.80 to 9.0.87 #380

bump tomcat from 9.0.80 to 9.0.87

bump tomcat from 9.0.80 to 9.0.87 #380

Workflow file for this run

# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
name: Jbpm3-seam CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ 11 ]
name: Java ${{matrix.java}}
steps:
- uses: actions/checkout@v2
- name: Setup java
uses: actions/setup-java@v1
with:
java-version: ${{matrix.java}}
- name: Build with Maven
run: mvn -B -Dmaven.javadoc.skip=true clean package verify