Skip to content

Commit 0bdddde

Browse files
committed
build(gradle): fix sources download in intellij idea
1 parent 0c8c524 commit 0bdddde

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

build.gradle.kts

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,21 @@ plugins {
1111

1212
application
1313
kotlin("jvm") version "1.9.25"
14+
id("idea")
1415
id("org.openjfx.javafxplugin") version "0.1.0"
1516
id("com.github.johnrengelman.shadow") version "6.1.0"
1617

1718
id("com.github.ben-manes.versions") version "0.47.0"
1819
id("se.patrikerdes.use-latest-versions") version "0.2.18"
1920
}
2021

22+
idea {
23+
module {
24+
isDownloadSources = true
25+
isDownloadJavadoc = true
26+
}
27+
}
28+
2129
val backend = gradle.includedBuilds.last()
2230

2331
val versionFromBackend by lazy {

0 commit comments

Comments
 (0)