Skip to content

Commit

Permalink
build: Update mavenPublishing pom
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinah95 committed Nov 17, 2023
1 parent 1889627 commit 45c4793
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,18 @@ plugins {
apply(from = "${rootDir}/scripts/publish-module.gradle.kts")

mavenPublishing {
val artifactId = "kdriller"
coordinates(
Configuration.artifactGroup,
artifactId,
rootProject.extra.get("libVersion").toString()
)

pom {
version = rootProject.extra.get("libVersion").toString()
group = Configuration.artifactGroup
name.set(artifactId)
description.set(
"Kotlin Framework to analyse Git repositories"
)
}
}

Expand Down

0 comments on commit 45c4793

Please sign in to comment.