Skip to content
This repository has been archived by the owner on Jun 22, 2022. It is now read-only.

Commit

Permalink
Use kotlinx.datetime from Maven Central
Browse files Browse the repository at this point in the history
  • Loading branch information
Romain Boisselle committed Mar 15, 2021
1 parent f9a5eee commit 8e30c3f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 22 deletions.
16 changes: 4 additions & 12 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -3,32 +3,24 @@ plugins {
}

buildscript {
repositories {
maven(url = "https://kotlin.bintray.com/kotlinx")
}

dependencies {
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.14.4")
classpath("org.jetbrains.kotlinx:atomicfu-gradle-plugin:0.15.1")
}
}

allprojects {
group = "org.kodein.db"
version = "0.6.0-beta"
version = "0.6.1-beta"

repositories {
mavenLocal()
google()
maven(url = "https://kotlin.bintray.com/kotlinx")
maven(url = "https://dl.bintray.com/kodein-framework/kodein-dev")
maven(url = "https://dl.bintray.com/kodein-framework/Kodein-Memory")
jcenter()
}
}

val kotlinxAtomicFuVer by extra { "0.14.4" } // CAUTION: also change in buildscript!
val kotlinxAtomicFuVer by extra { "0.15.1" } // CAUTION: also change in buildscript!
val kotlinxSerializationVer by extra { "1.1.0" }
val kodeinLogVer by extra { "0.10.0" }
val kodeinLogVer by extra { "0.10.1" }
val kodeinMemoryVer by extra { "0.7.0" }

val androidNdkVer by extra { "21.3.6528147" } // CAUTION: also change in CI workflows!
Expand Down
4 changes: 2 additions & 2 deletions doc/antora.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: kodein-db
title: Kodein-DB
version: 0.6
prerelease: beta
display_version: 0.6.0 beta
display_version: 0.6.1 beta
nav:
- modules/ROOT/nav.adoc
- modules/core/nav.adoc
asciidoc:
attributes:
version: '0.6.0-beta'
version: '0.6.1-beta'
10 changes: 2 additions & 8 deletions doc/modules/core/pages/install.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ In your `build.gradle.kts` file, add the repository:
buildscript {
repositories {
mavenCentral()
// Needed until KotlinX.DateTime is published to Maven Central.
maven(url = "https://kotlin.bintray.com/kotlinx")
}
}
----
Expand Down Expand Up @@ -78,9 +76,7 @@ Add the repository:
----
buildscript {
repositories {
maven(url = "https://dl.bintray.com/kodein-framework/Kodein-DB")
// Needed until KotlinX.DateTime is published to MavenCentral.
maven(url = "https://kotlin.bintray.com/kotlinx")
mavenCentral()
}
}
----
Expand Down Expand Up @@ -138,9 +134,7 @@ Add the repository:
----
buildscript {
repositories {
maven(url = "https://dl.bintray.com/kodein-framework/Kodein-DB")
// Needed until KotlinX.DateTime is published to MavenCentral.
maven(url = "https://kotlin.bintray.com/kotlinx")
mavenCentral()
}
}
----
Expand Down

0 comments on commit 8e30c3f

Please sign in to comment.