Skip to content

Commit

Permalink
Fix Module Artifact ID
Browse files Browse the repository at this point in the history
  • Loading branch information
Funkatronics authored Sep 20, 2023
1 parent da7f562 commit 374299f
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 374299f

Please sign in to comment.