Skip to content

Commit

Permalink
refactored
Browse files Browse the repository at this point in the history
  • Loading branch information
anil.senocak committed Dec 4, 2023
1 parent 2cd6ef7 commit 90cfe4a
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions lib/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
group = "com.github.senocak"
version = "0.1"

plugins {
alias(libs.plugins.jvm)

Expand Down Expand Up @@ -27,6 +30,14 @@ tasks.named<Test>(name = "test") {
useJUnitPlatform()
}

repositories {
mavenCentral()
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "com.github.senocak"
artifactId = "regexb"
version = "0.1"

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

0 comments on commit 90cfe4a

Please sign in to comment.