Skip to content

Commit

Permalink
don't add kotlin stdlib into plugin zip
Browse files Browse the repository at this point in the history
  • Loading branch information
dkandalov committed Jun 10, 2021
1 parent f16a65f commit 18a7faa
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ plugins {
idea
java
kotlin("jvm").version("1.4.32")
id("org.jetbrains.intellij").version("0.6.5")
id("org.jetbrains.intellij").version("0.7.3")
}
repositories {
mavenCentral()
Expand All @@ -22,12 +22,10 @@ var SourceDirectorySet.sourceDirs: Iterable<File>

sourceRoots {
getByName("main") {
java.srcDirs("./src")
kotlin.srcDirs("./src")
resources.srcDirs("./resources")
}
getByName("test") {
java.srcDirs("./test")
kotlin.srcDirs("./test")
}
}
Expand Down
2 changes: 2 additions & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Don't add stdlib into plugin zip, see https://plugins.jetbrains.com/docs/intellij/kotlin.html#kotlin-standard-library
kotlin.stdlib.default.dependency=false

0 comments on commit 18a7faa

Please sign in to comment.