Merge pull request #399 from mipt-npm/commandertvis/jupyter

Avoid using `kapt` in `kmath-jupyter`
This commit is contained in:
Alexander Nozik 2021-08-05 15:40:46 +03:00 committed by GitHub
commit ff1fee022c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 8 deletions

View File

@ -20,3 +20,7 @@ readme {
kotlin.sourceSets.all {
languageSettings.useExperimentalAnnotation("space.kscience.kmath.misc.UnstableKMathAPI")
}
tasks.processJupyterApiResources {
libraryProducers = listOf("space.kscience.kmath.jupyter.KMathJupyter")
}

View File

@ -5,18 +5,13 @@ pluginManagement {
gradlePluginPortal()
}
val toolsVersion = "0.10.2"
val kotlinVersion = "1.5.21"
plugins {
id("ru.mipt.npm.gradle.project") version toolsVersion
id("ru.mipt.npm.gradle.mpp") version toolsVersion
id("ru.mipt.npm.gradle.jvm") version toolsVersion
kotlin("multiplatform") version kotlinVersion
kotlin("jvm") version kotlinVersion
kotlin("plugin.allopen") version kotlinVersion
id("org.jetbrains.kotlinx.benchmark") version "0.3.1"
kotlin("jupyter.api") version "0.10.0-131-1"
id("ru.mipt.npm.gradle.project") version "0.10.2"
kotlin("multiplatform") version kotlinVersion
kotlin("plugin.allopen") version kotlinVersion
}
}