Skip to content

Commit

Permalink
collections module build file
Browse files Browse the repository at this point in the history
  • Loading branch information
morisil committed Sep 10, 2023
1 parent cfc1a3e commit d44ec4f
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions xemantic-osc-collections/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# xemantic-osc-collections

Thread-safer Kotlin `Map` and `Iterable` implementations,
which will not throw `ConcurrentModificationException`, offering lack
of synchronization in favor of eventual consistency, which is good
enough for OSC use cases.
12 changes: 12 additions & 0 deletions xemantic-osc-collections/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@
* If not, see <https://www.gnu.org/licenses/>.
*/

plugins {
alias(libs.plugins.kotlin.multiplatform)
alias(libs.plugins.dokka)
`maven-publish`
}

kotlin {

explicitApi()
Expand All @@ -42,6 +48,12 @@ kotlin {

sourceSets {

all {
languageSettings {
languageVersion = libs.versions.kotlinLanguageVersion.get()
}
}

val commonMain by getting

val commonTest by getting {
Expand Down

0 comments on commit d44ec4f

Please sign in to comment.