May be add this in your build.gradle file
tasks.withType(JavaCompile).configureEach {
options.compilerArgs.add("--module-source-path")
options.compilerArgs.add(files("src/main/java").asPath)
options.compilerArgs.add("--module-path=${classpath.asPath}")
}
Thanks,