Skip to content

Commit

Permalink
feat: add publishing block
Browse files Browse the repository at this point in the history
  • Loading branch information
UwUAroze committed Oct 26, 2024
1 parent a90cd96 commit 53c5f4a
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 @@ -17,6 +17,18 @@ dependencies {
tasks.test {
useJUnitPlatform()
}

publishing {
publications {
create<MavenPublication>("mavenJava") {
from(components["java"])
groupId = "me.aroze"
artifactId = "Color-Names"
version = "1.0-SNAPSHOT"
}
}
}

kotlin {
jvmToolchain(21)
}

0 comments on commit 53c5f4a

Please sign in to comment.