Skip to content

Commit b93f93b

Browse files
committed
Fix JitPack build
1 parent 4126e19 commit b93f93b

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

enchanting-bundler/build.gradle.kts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
plugins {
22
alias(libs.plugins.shadow)
3+
`maven-publish`
34
}
45

56
dependencies {
@@ -33,3 +34,14 @@ tasks.assemble {
3334
artifacts {
3435
add("default", tasks.shadowJar)
3536
}
37+
38+
publishing {
39+
publications {
40+
create<MavenPublication>("maven") {
41+
from(components["shadow"])
42+
}
43+
}
44+
repositories {
45+
mavenLocal()
46+
}
47+
}

0 commit comments

Comments
 (0)