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)

View File

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

View File

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

View File

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