Skip to content

Commit

Permalink
- Version update for new features
Browse files Browse the repository at this point in the history
  • Loading branch information
Areeb-Gillani committed Aug 17, 2024
1 parent 97e6d7d commit 03e8841
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,23 @@ plugins {
}

group = "io.github.areebgillani"
version = "0.0.3"
version = "0.0.4"
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.github.areebgillani"
groupId = project.group.toString()
artifactId = rootProject.name
version = "0.0.3"

version = project.version.toString()
from(components["java"])
}
}
}
tasks.publishToMavenLocal {
dependsOn(tasks.build)
onlyIf {
true
}
}
repositories {
mavenCentral()
}
Expand Down

0 comments on commit 03e8841

Please sign in to comment.