We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f0f03e9 commit 8b37c52Copy full SHA for 8b37c52
jitpack.yml
@@ -0,0 +1,2 @@
1
+jdk:
2
+ - openjdk17
library/build.gradle.kts
@@ -18,8 +18,14 @@ publishing {
18
publications {
19
create<MavenPublication>("maven") {
20
groupId = "com.lagradost"
21
- artifactId= "nicehttp"
22
- version= "0.4.15"
+ artifactId = "nicehttp"
+ version = "0.4.15"
23
+ from(components["java"])
24
+ }
25
+ create<MavenPublication>("jitpack") {
26
+ groupId = "com.github.Blatzar" // jipack uses the GitHub username as groupId
27
28
29
from(components["java"])
30
}
31
0 commit comments