Skip to content

Commit

Permalink
Fix jitpack error
Browse files Browse the repository at this point in the history
  • Loading branch information
Taskeren committed Sep 8, 2022
1 parent c2819ff commit a1615aa
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ plugins {
`maven-publish`
}

group = "cn.taskeren.brigadierx"
group = "com.github.taskeren"
version = "1.2-SNAPSHOT"

repositories {
Expand All @@ -23,4 +23,16 @@ dependencies {

tasks.test {
useJUnitPlatform()
}

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.taskeren"
artifactId = "brigadierX"
version = "1.2.2"

from(components["java"])
}
}
}

0 comments on commit a1615aa

Please sign in to comment.