only:cleaner java 11 requirement
This commit is contained in:
parent
0a4f19ae77
commit
1883528a8a
|
@ -8,6 +8,10 @@ allprojects {
|
||||||
|
|
||||||
plugins.withType(JavaPlugin) {
|
plugins.withType(JavaPlugin) {
|
||||||
dependencies {
|
dependencies {
|
||||||
|
// let's be vocal that 1.8 is not enough
|
||||||
|
sourceCompatibility = '11'
|
||||||
|
targetCompatibility = '11'
|
||||||
|
|
||||||
implementation global_libs.annotations
|
implementation global_libs.annotations
|
||||||
testImplementation global_libs.junit5
|
testImplementation global_libs.junit5
|
||||||
testImplementation global_libs.junit5engine
|
testImplementation global_libs.junit5engine
|
||||||
|
|
Loading…
Reference in New Issue