Skip to content

Commit a3432c8

Browse files
committed
fix gradle source set names
1 parent c70bd43 commit a3432c8

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ dependencies {
1111

1212
val sourcesJar by tasks.registering(Jar::class) {
1313
archiveClassifier.set("sources")
14-
from(sourceSets["common"].allSource)
14+
from(sourceSets["main"].allSource)
1515
}
1616

1717
publishing {

jitpack.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
install:
2+
- ./gradlew clean build publishToMavenLocal

lldevs/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ dependencies {
1212

1313
val sourcesJar by tasks.registering(Jar::class) {
1414
archiveClassifier.set("sources")
15-
from(sourceSets["lldevs"].allSource)
15+
from(sourceSets["main"].allSource)
1616
}
1717

1818
publishing {

plugin/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ dependencies {
1414

1515
val sourcesJar by tasks.registering(Jar::class) {
1616
archiveClassifier.set("sources")
17-
from(sourceSets["plugin"].allSource)
17+
from(sourceSets["main"].allSource)
1818
}
1919

2020
publishing {

0 commit comments

Comments
 (0)