Skip to content

Commit c16e0f0

Browse files
committed
Fixes for build on jitpack
1 parent b1b4495 commit c16e0f0

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

buildSrc/src/main/kotlin/live.app-conventions.gradle.kts

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,10 @@ plugins {
88
id("com.github.johnrengelman.shadow")
99
}
1010

11+
tasks.named<Jar>("jar") {
12+
archiveClassifier = "just"
13+
}
14+
1115
tasks {
1216
register<Sync>("release") {
1317
destinationDir = rootDir.resolve("artifacts/")

buildSrc/src/main/kotlin/live.kotlin-conventions.gradle.kts

-4
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,6 @@ java {
1313
}
1414
}
1515

16-
tasks.named<Jar>("jar") {
17-
archiveClassifier = "just"
18-
}
19-
2016
tasks.named<Test>("test") {
2117
useJUnitPlatform()
2218
}

jitpack.yml

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
jdk:
2+
- openjdk17
3+
install:
4+
- ./gradlew publishToMavenLocal

0 commit comments

Comments
 (0)