Fixed Gradle Tests

This commit is contained in:
Jonah Bauer 2021-11-12 09:23:49 +01:00
parent f17c1660dd
commit bc08b52005
3 changed files with 9 additions and 0 deletions

View File

@ -38,3 +38,7 @@ test:
paths: paths:
- build - build
- .gradle - .gradle
artifacts:
when: always
reports:
junit: "**/build/test-results/test/**/TEST-*.xml"

View File

@ -40,4 +40,9 @@ subprojects {
testCompileOnly "org.projectlombok:lombok:$lombok" testCompileOnly "org.projectlombok:lombok:$lombok"
testAnnotationProcessor "org.projectlombok:lombok:$lombok" testAnnotationProcessor "org.projectlombok:lombok:$lombok"
} }
test {
useJUnitPlatform()
maxHeapSize = '256M'
}
} }