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 7b3a4a0 commit 5fb4ff8Copy full SHA for 5fb4ff8
2 files changed
api/build.gradle.kts
@@ -4,3 +4,12 @@ dependencies {
4
annotationProcessor("org.projectlombok:lombok:1.18.42")
5
}
6
7
+publishing {
8
+ publications {
9
+ create<MavenPublication>("mavenJava") {
10
+ from(components["java"])
11
+ artifactId = "api"
12
+ }
13
14
+}
15
+
build.gradle.kts
@@ -9,7 +9,7 @@ allprojects {
apply(plugin = "java")
apply(plugin = "maven-publish")
- group = if (System.getenv("JITPACK") != null) "com.github.NighterDevelopment" else "github.nighter"
+ group = "github.nighter"
version = "1.6.1"
repositories {
0 commit comments