Slackbot
10/11/2023, 4:01 PMOleg Nenashev
10/11/2023, 7:07 PMOleg Nenashev
10/11/2023, 7:08 PMAndrea Di Lisio
10/12/2023, 2:22 PMtoolchains
directive was causing some extra headaches. I’ve replaced that with:
compileJava {
sourceCompatibility = JavaVersion.VERSION_1_8
targetCompatibility = JavaVersion.VERSION_1_8
}
It looks good 👍
Out of curiosity, is there any reason why you would suggest switching to testcontainers as opposed to the above approach ? On this project I’d anyway need to target version 1.8 (either with toolchains
or targetCompatibility
)… So I don’t really care about the extra build.gradle
configOleg Nenashev
10/12/2023, 2:34 PMOleg Nenashev
10/12/2023, 2:34 PMAndrea Di Lisio
10/13/2023, 7:19 AM