We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1e5a14 commit 2e2afc1Copy full SHA for 2e2afc1
plugin/build.gradle.kts
@@ -24,8 +24,10 @@ val sourcesJar by tasks.registering(Jar::class) {
24
}
25
26
tasks.jar {
27
- from(project(":common").sourceSets["main"].allSource)
28
- from(project(":lldevs").sourceSets["main"].allSource)
+ dependsOn(project(":common").tasks.jar)
+ dependsOn(project(":lldevs").tasks.jar)
29
+ from(configurations.runtimeClasspath.get().map(::zipTree))
30
+ duplicatesStrategy = DuplicatesStrategy.WARN
31
32
33
publishing {
0 commit comments