Added idea way to fetch javadocs and sources.

master
Tomasz Półgrabia 2025-01-20 22:11:21 +01:00
parent 5e95d24fa7
commit dd3408f122
2 changed files with 11 additions and 0 deletions

View File

@ -1 +1,4 @@
.gradle
*.ipr
*.iws
.idea

View File

@ -1,4 +1,5 @@
plugins {
id 'idea'
id "org.jetbrains.kotlin.jvm" version "2.1.0"
}
@ -6,6 +7,13 @@ repositories {
mavenCentral()
}
idea {
module {
downloadJavadoc = true
downloadSources = true
}
}
kotlin {
jvmToolchain(17)
}