Maturity declarations.

This commit is contained in:
Alexander Nozik 2021-02-07 12:46:15 +03:00
parent 730ac69544
commit 81fb064d38
12 changed files with 32 additions and 9 deletions

View File

@ -2,7 +2,7 @@ plugins {
id("ru.mipt.npm.project") id("ru.mipt.npm.project")
} }
val dataforgeVersion by extra("0.3.0-dev-3") val dataforgeVersion by extra("0.3.0")
val bintrayRepo by extra("dataforge") val bintrayRepo by extra("dataforge")
val githubProject by extra("dataforge-core") val githubProject by extra("dataforge-core")
@ -13,10 +13,6 @@ allprojects {
version = dataforgeVersion version = dataforgeVersion
apply<org.jetbrains.dokka.gradle.DokkaPlugin>() apply<org.jetbrains.dokka.gradle.DokkaPlugin>()
repositories {
mavenLocal()
}
} }
apiValidation{ apiValidation{

View File

@ -29,3 +29,7 @@ kotlin {
} }
} }
} }
readme{
maturity = ru.mipt.npm.gradle.Maturity.DEVELOPMENT
}

View File

@ -23,3 +23,7 @@ kotlin {
} }
} }
} }
readme{
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
}

View File

@ -7,16 +7,19 @@ description = "YAML meta IO"
kscience { kscience {
useSerialization{ useSerialization{
yamlKt() yamlKt("0.9.0-dev-1")
} }
} }
repositories{
maven("https://dl.bintray.com/mamoe/yamlkt")
}
kotlin { kotlin {
sourceSets { sourceSets {
commonMain{ commonMain{
dependencies { dependencies {
api(project(":dataforge-io")) api(project(":dataforge-io"))
//api("net.mamoe.yamlkt:yamlkt:${ru.mipt.npm.gradle.KScienceVersions.Serialization.yamlKtVersion}")
} }
} }
} }

View File

@ -10,3 +10,7 @@ kscience {
} }
description = "Meta definition and basic operations on meta" description = "Meta definition and basic operations on meta"
readme{
maturity = ru.mipt.npm.gradle.Maturity.DEVELOPMENT
}

View File

@ -23,3 +23,7 @@ kotlin {
} }
} }
} }
readme{
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
}

View File

@ -13,3 +13,7 @@ kotlin {
} }
} }
} }
readme{
maturity = ru.mipt.npm.gradle.Maturity.PROTOTYPE
}

View File

@ -14,3 +14,7 @@ kotlin {
} }
} }
} }
readme{
maturity = ru.mipt.npm.gradle.Maturity.EXPERIMENTAL
}

View File

@ -10,7 +10,7 @@ pluginManagement {
maven("https://dl.bintray.com/mipt-npm/dev") maven("https://dl.bintray.com/mipt-npm/dev")
} }
val toolsVersion = "0.7.5" val toolsVersion = "0.7.6"
val kotlinVersion = "1.4.30" val kotlinVersion = "1.4.30"
plugins { plugins {