Relative Content

Tag Archive for javagradle

How to depend java 21 compiled class on java 17 project (Gradle)

HelloWorld/ ├── core └── api/ ├── stable └── preview HelloWorld project is java 17 project We cant upgrade project java version due to our almost client.. api/preview project uses Java 21 external library So, I did it preview/build.gradle java { toolchain.languageVersion = JavaLanguageVersion.of(21) // due to java 21 external library } and core/build.gradle dependencies { […]

How to depend java 21 compiled class on java 17 project (Gradle)

HelloWorld/ ├── core └── api/ ├── stable └── preview HelloWorld project is java 17 project We cant upgrade project java version due to our almost client.. api/preview project uses Java 21 external library So, I did it preview/build.gradle java { toolchain.languageVersion = JavaLanguageVersion.of(21) // due to java 21 external library } and core/build.gradle dependencies { […]

Symbol not found/accessible from another gradle subproject, modular java

I am building a couple modular java projects, and have them setup as gradle subprojects. They’re both modular java, and I want one(linrboot) to reference a class in the other(linr), but VSCode is saying it’s not accessible while the build fails cause it can’t find the symbol. I’m sure there’s just something basic I’m missing.