Skip to content

Commit

Permalink
Merge pull request #5 from solana-mobile/fix-maven-artifact-naming
Browse files Browse the repository at this point in the history
Correct Maven Artifact Names
  • Loading branch information
Funkatronics authored Jan 9, 2024
2 parents c60cc3a + 796d6b4 commit 2fda810
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ plugins {
}

val artifactId: String by project
val moduleArtifactId = "$artifactId-core"

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

mavenPublishing {
coordinates(group as String, artifactId, version as String)
coordinates(group as String, moduleArtifactId, version as String)
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kotlin.js.compiler=ir
# Group name and project version, used when publishing. For official releases, the version should be
# provided to Gradle via '-P version="1.0"'.
group=com.solanamobile
artifactId=web3-core
artifactId=web3
version=main-SNAPSHOT

SONATYPE_HOST=S01
Expand Down

0 comments on commit 2fda810

Please sign in to comment.