Skip to content

Commit

Permalink
Merge pull request #17 from Funkatronics/fix-module-artifact-naming
Browse files Browse the repository at this point in the history
Fix Module Artifact ID
  • Loading branch information
Funkatronics committed Sep 20, 2023
2 parents da7f562 + 374299f commit 08ef283
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions okiodriver/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ plugins {
id("com.vanniktech.maven.publish")
}

val baseArtifactId: String by project
val artifactId: String = "$baseArtifactId-okiodriver"
val artifactId: String by project
val moduleArtifactId = "$artifactId-okiodriver"

kotlin {
jvm {
Expand Down Expand Up @@ -34,5 +34,5 @@ kotlin {
}

mavenPublishing {
coordinates(group as String, artifactId, version as String)
coordinates(group as String, moduleArtifactId, version as String)
}

0 comments on commit 08ef283

Please sign in to comment.