2022-09-06 13:32:13 +03:00
|
|
|
import space.kscience.gradle.useApache2Licence
|
|
|
|
import space.kscience.gradle.useSPCTeam
|
|
|
|
|
2022-07-09 17:47:42 +03:00
|
|
|
plugins {
|
2022-09-06 13:32:13 +03:00
|
|
|
id("space.kscience.gradle.project")
|
2022-07-09 17:47:42 +03:00
|
|
|
}
|
|
|
|
|
2024-06-04 11:06:50 +03:00
|
|
|
val kmathVersion: String by extra("0.4.0")
|
2023-02-06 17:19:51 +03:00
|
|
|
|
2022-07-17 10:21:11 +03:00
|
|
|
allprojects {
|
2024-06-04 11:06:50 +03:00
|
|
|
group = "space.kscience"
|
2024-07-06 09:54:06 +03:00
|
|
|
version = "0.4.0-dev"
|
2023-02-06 10:37:22 +03:00
|
|
|
|
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
2023-04-06 10:03:38 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2023-02-06 10:37:22 +03:00
|
|
|
}
|
2022-07-17 10:21:11 +03:00
|
|
|
}
|
|
|
|
|
2023-05-06 15:39:58 +03:00
|
|
|
ksciencePublish {
|
2022-09-06 13:32:13 +03:00
|
|
|
pom("https://github.com/SciProgCentre/maps-kt") {
|
|
|
|
useApache2Licence()
|
|
|
|
useSPCTeam()
|
2022-07-17 10:05:06 +03:00
|
|
|
}
|
2023-11-15 16:43:13 +03:00
|
|
|
repository("spc","https://maven.sciprog.center/kscience")
|
|
|
|
sonatype("https://oss.sonatype.org")
|
2022-07-17 10:05:06 +03:00
|
|
|
}
|
|
|
|
|
2022-07-16 21:34:19 +03:00
|
|
|
subprojects {
|
|
|
|
repositories {
|
|
|
|
google()
|
|
|
|
mavenCentral()
|
2022-09-06 13:32:13 +03:00
|
|
|
maven("https://repo.kotlin.link")
|
2022-07-16 21:34:19 +03:00
|
|
|
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
2022-07-09 17:47:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-12 11:52:54 +03:00
|
|
|
readme.readmeTemplate = file("docs/templates/README-TEMPLATE.md")
|
|
|
|
|
2022-07-16 21:34:19 +03:00
|
|
|
|