Skip to content

Commit

Permalink
Fixed zip archive setup. #243
Browse files Browse the repository at this point in the history
  • Loading branch information
czyzby committed Nov 1, 2020
1 parent 5b1d944 commit 8be1a94
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -167,9 +167,15 @@ subprojects {
main {
distributionBaseName.set(libVersion)
contents {
into("lib").from(tasks.jar)
into("src").from(tasks["sourcesJar"])
into("doc").from(tasks["dokkaZip"])
into("lib") {
from(tasks.jar)
}
into("doc") {
from(tasks["dokkaZip"])
}
into("src") {
from(tasks["sourcesJar"])
}
}
}
}
Expand Down

0 comments on commit 8be1a94

Please sign in to comment.