2021-02-23 21:47:18 +03:00
|
|
|
plugins {
|
|
|
|
kotlin("jvm")
|
|
|
|
kotlin("jupyter.api")
|
|
|
|
id("com.github.johnrengelman.shadow") version "6.1.0"
|
|
|
|
}
|
|
|
|
|
|
|
|
repositories {
|
2021-08-20 20:24:41 +03:00
|
|
|
jcenter()
|
2021-02-23 21:47:18 +03:00
|
|
|
mavenCentral()
|
|
|
|
maven("https://repo.kotlin.link")
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
implementation(project(":demo:playground"))
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<org.jetbrains.kotlin.gradle.dsl.KotlinJvmCompile> {
|
|
|
|
kotlinOptions {
|
|
|
|
jvmTarget = ru.mipt.npm.gradle.KScienceVersions.JVM_TARGET.toString()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
extensions.findByType<JavaPluginExtension>()?.apply {
|
|
|
|
targetCompatibility = ru.mipt.npm.gradle.KScienceVersions.JVM_TARGET
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.withType<Test> {
|
|
|
|
useJUnitPlatform()
|
|
|
|
}
|
|
|
|
|
|
|
|
tasks.processJupyterApiResources {
|
2021-08-20 20:24:41 +03:00
|
|
|
libraryProducers = listOf("playground.VisionForgePlayGroundForJupyter")
|
2021-03-01 21:09:53 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
tasks.findByName("shadowJar")?.dependsOn("processJupyterApiResources")
|