Skip to content

Commit

Permalink
feat: change by TheRedMagic
Browse files Browse the repository at this point in the history
  • Loading branch information
StillLutto committed Dec 10, 2024
1 parent e9c1843 commit ce1a73b
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,12 +45,26 @@ publishing {

allprojects {
apply(plugin = "java")
apply(plugin = "java-library")
apply(plugin = "maven-publish")

repositories {
mavenCentral()
maven("https://repo.papermc.io/repository/maven-public/")
}

publishing {
publications {
register<MavenPublication>("maven") {
groupId = projectGroupId
artifactId = projectArtifactId
version = projectVersion

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

dependencies {
implementation("org.jetbrains.kotlin:kotlin-stdlib")
implementation("net.kyori:adventure-api:4.17.0")
Expand Down

0 comments on commit ce1a73b

Please sign in to comment.