kotlin to 1.4.20-dev

This commit is contained in:
Alexander Nozik 2020-09-09 10:18:00 +03:00
parent b428387116
commit 385fbb2ac4
3 changed files with 5 additions and 2 deletions

View File

@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Add `publish` to expose publishing configuration
### Changed
-Publishing in bintray now is automatic
## [0.5.2]

View File

@ -6,16 +6,17 @@ plugins {
}
group = "ru.mipt.npm"
version = "0.6.0-dev-4"
version = "0.6.0-dev-5"
repositories {
gradlePluginPortal()
jcenter()
maven("https://kotlin.bintray.com/kotlinx")
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/kotlin/kotlin-dev")
}
val kotlinVersion = "1.4.0"
val kotlinVersion = "1.4.20-dev-3898-14"
java {
targetCompatibility = JavaVersion.VERSION_1_8

View File

@ -23,6 +23,7 @@ internal fun RepositoryHandler.applyRepos(): Unit {
mavenCentral()
jcenter()
maven("https://dl.bintray.com/kotlin/kotlin-eap")
maven("https://dl.bintray.com/kotlin/kotlin-dev")
maven("https://kotlin.bintray.com/kotlinx")
maven("https://kotlin.bintray.com/kotlin-js-wrappers/")
maven("https://dl.bintray.com/mipt-npm/kscience")