Small Fixes

-Fixed: Unit Test Generator is now Silenced. Because 4k lines.
-Fixed: Reverted to JavaSetupV1 for build because java14 support.
-Added: Java18 support for build
This commit is contained in:
Speiger 2022-06-14 09:03:20 +02:00
parent fb7c417394
commit c37746cd84
2 changed files with 3 additions and 5 deletions

View File

@ -11,18 +11,16 @@ jobs:
strategy:
fail-fast: false
matrix:
jdk: [8, 11, 14, 16, 17]
jdk: [8, 11, 14, 16, 17, 18]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v1
- name: Set up JDK ${{ matrix.jdk }}
uses: actions/setup-java@v3
with:
java-version: ${{ matrix.jdk }}
distribution: temurin
cache: gradle
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@e6e38bacfdf1a337459f332974bb2327a31aaf4b

View File

@ -79,7 +79,7 @@ task generateTestSource(type: JavaExec) {
description = 'Builds the sourcecode for the Tests'
classpath = sourceSets.builder.runtimeClasspath
main = 'speiger.src.builder.PrimitiveCollectionsBuilder'
args = ['tests']
args = ['tests', 'silent']
}
task javadocJar(type: Jar) {