-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Sylwester Zieliński
committed
Jan 9, 2024
1 parent
7ab6d78
commit 6b18639
Showing
3 changed files
with
173 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,9 +33,27 @@ plugins { | |
alias(libs.plugins.kotlin.multiplatform) | ||
alias(libs.plugins.kotlin.compose) | ||
alias(libs.plugins.android.library) | ||
alias(libs.plugins.nordic.nexus) | ||
kotlin("native.cocoapods") | ||
} | ||
|
||
group = "no.nordicsemi.kmm" | ||
|
||
nordicNexusPublishing { | ||
POM_ARTIFACT_ID = "ble" | ||
POM_NAME = "Nordic Kotlin Multiplatform Library for BLE." | ||
|
||
POM_DESCRIPTION = "Nordic Kotlin Multiplatform Library for BLE." | ||
POM_URL = "https://github.com/NordicSemiconductor/KMM-BLE-Library" | ||
POM_SCM_URL = "https://github.com/NordicSemiconductor/KMM-BLE-Library" | ||
POM_SCM_CONNECTION = "scm:[email protected]:NordicPlayground/KMM-BLE-Library.git" | ||
POM_SCM_DEV_CONNECTION = "scm:[email protected]:NordicPlayground/KMM-BLE-Library.git" | ||
|
||
POM_DEVELOPER_ID = "syzi" | ||
POM_DEVELOPER_NAME = "Sylwester Zieliński" | ||
POM_DEVELOPER_EMAIL = "[email protected]" | ||
} | ||
|
||
kotlin { | ||
androidTarget() | ||
|
||
|