Skip to content
This repository has been archived by the owner on Jan 14, 2025. It is now read-only.

Commit

Permalink
Add version and group to fix publication
Browse files Browse the repository at this point in the history
  • Loading branch information
kpgalligan committed Apr 30, 2024
1 parent bac0cc1 commit 6666283
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
14 changes: 14 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,17 @@ plugins {
alias(libs.plugins.kotlinMultiplatform) apply false
alias(libs.plugins.jetbrainsCompose) apply false
}

val GROUP: String by project
val VERSION_NAME: String by project

allprojects {
group = GROUP
version = VERSION_NAME

extensions.findByType<org.jetbrains.kotlin.gradle.dsl.KotlinMultiplatformExtension>()?.apply {
sourceSets.all {
languageSettings.optIn("kotlin.RequiresOptIn")
}
}
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ POM_LICENCE_NAME=The Apache Software License, Version 2.0
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt
POM_LICENCE_DIST=repo

POM_DEVELOPER_ID=kpgalligan
POM_DEVELOPER_ID=faogustavo
POM_DEVELOPER_NAME=Gustavo Valvassori
POM_DEVELOPER_ORG=Touchlab
POM_DEVELOPER_URL=https://touchlab.co/

0 comments on commit 6666283

Please sign in to comment.