Skip to content

Complete Java 17 migration and SpringBoot 3 #21

Complete Java 17 migration and SpringBoot 3

Complete Java 17 migration and SpringBoot 3 #21

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: Java CI with Maven
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'oracle' # See 'Supported distributions' for available options
java-version: 17
- name: Buld externalwar with Maven
run: mvn -B package --file externalwar/pom.xml
- name: Build swagger-documentation with Maven
run: mvn -B package --file swagger-documentation/pom.xml
- name: Build logbacklogging with Maven
run: mvn -B package --file logbacklogging/pom.xml
- name: Build restendpointget with Maven
run: mvn -B package --file restendpointget/pom.xml