Skip to content
This repository has been archived by the owner on Sep 12, 2021. It is now read-only.

Commit

Permalink
Excluded kotlin runtime
Browse files Browse the repository at this point in the history
  • Loading branch information
Karlatemp committed Oct 1, 2020
1 parent ff63a4d commit cc73e44
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ dependencies {
implementation(ktor("http"))
}

shadowJar {
dependencyFilter.exclude {
return [
'org.jetbrains.kotlin',
'org.jetbrains.kotlinx',
'org.slf4j'
].contains(it.moduleGroup)
}
}

compileKotlin {
kotlinOptions {
jvmTarget = '1.8'
Expand Down

0 comments on commit cc73e44

Please sign in to comment.