Build migration

This commit is contained in:
Alexander Nozik 2019-12-22 20:29:32 +03:00
parent 4eb07949b4
commit be2bca24b1
4 changed files with 15 additions and 12 deletions

View File

@ -1,3 +1,6 @@
[![JetBrains Research](https://jb.gg/badges/research.svg)](https://confluence.jetbrains.com/display/ALL/JetBrains+on+GitHub)
[ ![Download](https://api.bintray.com/packages/mipt-npm/dataforge/dataforge-meta/images/download.svg) ](https://bintray.com/mipt-npm/dataforge/dataforge-meta/_latestVersion)
[![DOI](https://zenodo.org/badge/148831678.svg)](https://zenodo.org/badge/latestdoi/148831678) [![DOI](https://zenodo.org/badge/148831678.svg)](https://zenodo.org/badge/latestdoi/148831678)

View File

@ -1,12 +1,12 @@
import scientifik.ScientifikExtension
plugins { plugins {
id("scientifik.mpp") version "0.2.7" apply false val toolsVersion = "0.3.1"
id("scientifik.jvm") version "0.2.7" apply false id("scientifik.mpp") version toolsVersion apply false
id("scientifik.publish") version "0.2.7" apply false id("scientifik.jvm") version toolsVersion apply false
id("scientifik.publish") version toolsVersion apply false
} }
val dataforgeVersion by extra("0.1.5-dev-4") val dataforgeVersion by extra("0.1.5-dev-5")
val bintrayRepo by extra("dataforge") val bintrayRepo by extra("dataforge")
val githubProject by extra("dataforge-core") val githubProject by extra("dataforge-core")
@ -22,7 +22,4 @@ allprojects {
subprojects { subprojects {
apply(plugin = "scientifik.publish") apply(plugin = "scientifik.publish")
afterEvaluate {
extensions.findByType<ScientifikExtension>()?.apply { withDokka() }
}
} }

View File

@ -1,13 +1,12 @@
import scientifik.useSerialization
plugins { plugins {
id("scientifik.mpp") id("scientifik.mpp")
} }
description = "IO module" description = "IO module"
scientifik { useSerialization()
withSerialization()
//withIO()
}
val ioVersion by rootProject.extra("0.2.0-npm-dev-4") val ioVersion by rootProject.extra("0.2.0-npm-dev-4")

View File

@ -1,9 +1,13 @@
import scientifik.useSerialization
plugins { plugins {
id("scientifik.jvm") id("scientifik.jvm")
} }
description = "YAML meta IO" description = "YAML meta IO"
useSerialization()
dependencies { dependencies {
api(project(":dataforge-io")) api(project(":dataforge-io"))
api("org.yaml:snakeyaml:1.25") api("org.yaml:snakeyaml:1.25")