Update kotlin to 1.5.10

This commit is contained in:
Alexander Nozik 2021-06-04 18:21:12 +03:00
parent ddbb128692
commit 5cd86474de
4 changed files with 5 additions and 5 deletions

View File

@ -8,7 +8,7 @@ plugins {
} }
group = "ru.mipt.npm" group = "ru.mipt.npm"
version = "0.9.9" version = "0.9.10"
description = "Build tools for DataForge and kscience projects" description = "Build tools for DataForge and kscience projects"
@ -22,7 +22,7 @@ repositories {
maven("https://repo.kotlin.link") maven("https://repo.kotlin.link")
} }
val kotlinVersion = "1.5.0" val kotlinVersion = "1.5.10"
java { java {
targetCompatibility = JavaVersion.VERSION_1_8 targetCompatibility = JavaVersion.VERSION_1_8

View File

@ -11,9 +11,9 @@ object KScienceVersions {
const val coroutinesVersion = "1.5.0" const val coroutinesVersion = "1.5.0"
const val serializationVersion = "1.2.1" const val serializationVersion = "1.2.1"
const val atomicVersion = "0.16.1" const val atomicVersion = "0.16.1"
const val ktorVersion = "1.5.4" const val ktorVersion = "1.6.0"
const val htmlVersion = "0.7.3" const val htmlVersion = "0.7.3"
const val dateTimeVersion = "0.2.0" const val dateTimeVersion = "0.2.1"
val JVM_TARGET = JavaVersion.VERSION_11 val JVM_TARGET = JavaVersion.VERSION_11

View File

@ -59,6 +59,7 @@ class SerializationTargets(
) )
} }
@Deprecated("To be removed")
fun Project.bson( fun Project.bson(
version: String = KScienceVersions.Serialization.bsonVersion version: String = KScienceVersions.Serialization.bsonVersion
) { ) {

View File

@ -22,7 +22,6 @@ internal fun LanguageSettingsBuilder.applySettings(): Unit {
internal fun RepositoryHandler.applyRepos(): Unit { internal fun RepositoryHandler.applyRepos(): Unit {
mavenCentral() mavenCentral()
maven("https://repo.kotlin.link") maven("https://repo.kotlin.link")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-js-wrappers")
} }
internal fun Copy.fromJsDependencies(configurationName: String) = project.run { internal fun Copy.fromJsDependencies(configurationName: String) = project.run {