0.7.6; Update versions

This commit is contained in:
Alexander Nozik 2021-02-06 16:23:01 +03:00
parent b6e56dc1a0
commit 1fa05926af
4 changed files with 5 additions and 4 deletions

View File

@ -6,7 +6,7 @@ plugins {
}
group = "ru.mipt.npm"
version = "0.7.5"
version = "0.7.6"
repositories {
gradlePluginPortal()

View File

@ -15,7 +15,7 @@ enum class Maturity {
class KScienceReadmeExtension(val project: Project) {
var description: String = ""
var description: String = project.description ?: ""
var maturity: Maturity = Maturity.EXPERIMENTAL
set(value) {
field = value

View File

@ -12,12 +12,13 @@ object KScienceVersions {
const val serializationVersion = "1.1.0-RC"
const val atomicVersion = "0.15.1"
const val ktorVersion = "1.5.1"
const val htmlVersion = "0.7.2"
val JVM_TARGET = JavaVersion.VERSION_11
object Serialization{
const val xmlVersion = "0.80.1"
const val bsonVersion = "0.4.4"
const val yamlKtVersion = "0.8.0"
const val yamlKtVersion = "0.9.0"
}
}

View File

@ -21,7 +21,6 @@ internal fun LanguageSettingsBuilder.applySettings(): Unit {
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")
@ -29,6 +28,7 @@ internal fun RepositoryHandler.applyRepos(): Unit {
maven("https://dl.bintray.com/mipt-npm/kscience")
maven("https://dl.bintray.com/mipt-npm/dev")
maven("https://dl.bintray.com/mipt-npm/dataforge")
maven("https://repo.kotlin.link")
}
internal fun Copy.fromJsDependencies(configurationName: String) = project.afterEvaluate {