Skip to content

Commit

Permalink
Fix core name
Browse files Browse the repository at this point in the history
  • Loading branch information
Desoroxxx committed Oct 7, 2023
1 parent 292d621 commit 2838ec5
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ buildConfig {
buildConfigField("dev.redstudio.redcore.logging.RedLogger", "RED_LOGGER", "new RedLogger(NAME, \"https://linkify.cz/RedCoreBugReport\", LOGGER)")
}

tasks.named<Jar>("jar") {
archiveBaseName = "Red-Core"
}

tasks.named<Jar>("sourcesJar") {
archiveBaseName = "Red-Core"
}

publishing.publications.register("redCore", MavenPublication::class) {
from(components["java"])

Expand Down

0 comments on commit 2838ec5

Please sign in to comment.