diff --git a/build.gradle.kts b/build.gradle.kts index aeea28c..529f941 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -227,4 +227,12 @@ tasks.register("prepareChangelog") { var changelog = File("Changelog.md").readText(StandardCharsets.UTF_8) changelog = changelog.replace(Regex("[^^](#(#|\\n|.)+)|(^#.+)"), "") println(changelog.trim()) +} + +// IDEA no longer automatically downloads sources/javadoc jars for dependencies, so we need to explicitly enable the behavior. +idea { + module { + isDownloadSources = true + isDownloadJavadoc = true + } } \ No newline at end of file