Skip to content

Commit

Permalink
Add publishing section for JitPack
Browse files Browse the repository at this point in the history
  • Loading branch information
Archy-X committed Jun 19, 2024
1 parent 1d50730 commit b1beb4c
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,16 @@ tasks.withType<JavaCompile> {
options.compilerArgs.add("-parameters")
options.isFork = true
options.forkOptions.executable = "javac"
}

publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.Archy-X"
artifactId = "AuraMobs"
version = project.property("projectVersion") as String

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

0 comments on commit b1beb4c

Please sign in to comment.