diff --git a/CHANGELOG.md b/CHANGELOG.md index 0de19f5..31c559f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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] diff --git a/build.gradle.kts b/build.gradle.kts index 60eccd8..6a2d37d 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -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 diff --git a/src/main/kotlin/ru/mipt/npm/gradle/common.kt b/src/main/kotlin/ru/mipt/npm/gradle/common.kt index 124fcc7..9b33cb5 100644 --- a/src/main/kotlin/ru/mipt/npm/gradle/common.kt +++ b/src/main/kotlin/ru/mipt/npm/gradle/common.kt @@ -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")