Skip to content

Commit

Permalink
Fix group
Browse files Browse the repository at this point in the history
  • Loading branch information
mickael-menu committed Jan 22, 2024
1 parent 6aa61bc commit 9bec4b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ plugins {
kotlin("plugin.parcelize")
}

group = property("pom.groupId") as String

android {
resourcePrefix = "readium_"

Expand Down Expand Up @@ -54,7 +56,7 @@ kotlin {

mavenPublishing {
coordinates(
groupId = property("pom.groupId") as String,
groupId = group.toString(),
artifactId = property("pom.artifactId") as String,
version = property("pom.version") as String
)
Expand Down
4 changes: 0 additions & 4 deletions settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,3 @@ project(":readium:shared")
include(":readium:streamer")
project(":readium:streamer")
.name = "readium-streamer"

if (System.getenv("JITPACK") == null) {
include("test-app")
}

0 comments on commit 9bec4b9

Please sign in to comment.