snark/build.gradle.kts

26 lines
587 B
Plaintext
Raw Permalink Normal View History

2022-09-03 11:54:34 +03:00
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
2022-06-30 20:51:01 +03:00
plugins {
2022-09-03 11:54:34 +03:00
id("space.kscience.gradle.project")
2022-06-30 20:51:01 +03:00
}
allprojects {
group = "space.kscience"
version = "0.1.0-dev-1"
2022-09-03 11:54:34 +03:00
if (name != "snark-gradle-plugin") {
tasks.withType<KotlinCompile> {
2022-06-30 20:51:01 +03:00
kotlinOptions {
2022-09-03 11:54:34 +03:00
freeCompilerArgs = freeCompilerArgs + "-Xcontext-receivers"
2022-06-30 20:51:01 +03:00
}
}
}
}
2022-09-03 11:54:34 +03:00
val dataforgeVersion by extra("0.6.0-dev-15")
2022-07-03 16:39:43 +03:00
2022-09-03 11:54:34 +03:00
ksciencePublish {
github("SciProgCentre", "snark")
2022-07-03 16:39:43 +03:00
space("https://maven.pkg.jetbrains.space/mipt-npm/p/sci/maven")
// sonatype()
}