diff --git a/build.gradle b/build.gradle index 62cb259..a9e5a45 100644 --- a/build.gradle +++ b/build.gradle @@ -146,3 +146,11 @@ publishing { tasks.withType(JavaCompile).configureEach { options.encoding = 'UTF-8' // Use the UTF-8 charset for Java compilation } + +// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior. +idea { + module { + downloadSources = true + downloadJavadoc = true + } +}