Merge branch '3.0.x'

This commit is contained in:
Ryan Baxter
2023-09-25 16:13:40 +08:00
2 changed files with 7 additions and 2 deletions

View File

@@ -4,13 +4,13 @@ runs:
using: "composite"
steps:
- name: run 'package' on the project
- name: run 'install' on the project
shell: bash
run: |
./mvnw install -B \
-Dskip.build.image=true \
-DskipTests -DskipITs \
-T 1C -q
-T 1C -U -q
- name: find all classpath entries
shell: bash

View File

@@ -22,6 +22,11 @@ runs:
- name: cache local maven repository
uses: ./.github/workflows/composites/cache
- name: build project
shell: bash
run: |
./mvnw clean install -Dskip.build.image=true -DskipITs -DskipTests -T1C -U -B -q
- name: build controllers project
uses: ./.github/workflows/composites/build-controllers-project