Compare commits
2 Commits
feature/ge
...
dev
| Author | SHA1 | Date | |
|---|---|---|---|
| a865fcf497 | |||
| a1c0b481ef |
@@ -7,30 +7,16 @@ plugins {
|
||||
|
||||
allprojects {
|
||||
group = "space.kscience"
|
||||
version = "0.4.0-dev-7"
|
||||
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven("https://repo.kotlin.link")
|
||||
}
|
||||
version = "0.4.0-dev-8"
|
||||
}
|
||||
|
||||
ksciencePublish {
|
||||
pom("https://github.com/SciProgCentre/maps-kt") {
|
||||
pom("https://github.com/SciProgCentre/controls-kt") {
|
||||
useApache2Licence()
|
||||
useSPCTeam()
|
||||
}
|
||||
repository("spc","https://maven.sciprog.center/kscience")
|
||||
sonatype("https://oss.sonatype.org")
|
||||
}
|
||||
|
||||
subprojects {
|
||||
repositories {
|
||||
google()
|
||||
mavenCentral()
|
||||
maven("https://repo.kotlin.link")
|
||||
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
|
||||
}
|
||||
central()
|
||||
}
|
||||
|
||||
readme.readmeTemplate = file("docs/templates/README-TEMPLATE.md")
|
||||
|
||||
@@ -19,7 +19,6 @@ repositories {
|
||||
}
|
||||
|
||||
kotlin {
|
||||
jvmToolchain(17)
|
||||
jvm()
|
||||
sourceSets {
|
||||
val jvmMain by getting {
|
||||
@@ -28,6 +27,7 @@ kotlin {
|
||||
implementation(projects.mapsKtGeojson)
|
||||
implementation(projects.mapsKtGeotools)
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(compose.materialIconsExtended)
|
||||
|
||||
implementation("io.ktor:ktor-client-cio")
|
||||
implementation(spclibs.logback.classic)
|
||||
|
||||
@@ -10,7 +10,6 @@ val ktorVersion: String by rootProject.extra
|
||||
|
||||
kotlin {
|
||||
jvm()
|
||||
jvmToolchain(17)
|
||||
sourceSets {
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
|
||||
@@ -8,12 +8,12 @@ plugins {
|
||||
|
||||
kotlin {
|
||||
jvm()
|
||||
jvmToolchain(17)
|
||||
sourceSets {
|
||||
commonMain {
|
||||
dependencies {
|
||||
implementation(compose.desktop.currentOs)
|
||||
implementation(compose.components.resources)
|
||||
implementation(compose.materialIconsExtended)
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -8,7 +8,6 @@ val ktorVersion: String by rootProject.extra
|
||||
|
||||
kotlin {
|
||||
jvm()
|
||||
jvmToolchain(17)
|
||||
sourceSets {
|
||||
val jvmMain by getting {
|
||||
dependencies {
|
||||
|
||||
@@ -2,4 +2,6 @@ kotlin.code.style=official
|
||||
|
||||
org.gradle.jvmargs=-Xmx4096m
|
||||
|
||||
toolsVersion=0.17.1-kotlin-2.1.20
|
||||
org.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
|
||||
|
||||
toolsVersion=0.19.2-kotlin-2.2.20
|
||||
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,5 +1,5 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
||||
|
||||
@@ -7,7 +7,7 @@ The core interfaces of KMath.
|
||||
|
||||
## Artifact:
|
||||
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-compose:0.4.0-dev-7`.
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-compose:0.4.0-dev-8`.
|
||||
|
||||
**Gradle Kotlin DSL:**
|
||||
```kotlin
|
||||
@@ -17,6 +17,6 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("space.kscience:maps-kt-compose:0.4.0-dev-7")
|
||||
implementation("space.kscience:maps-kt-compose:0.4.0-dev-8")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -8,7 +8,7 @@ plugins {
|
||||
|
||||
kscience {
|
||||
jvm()
|
||||
wasm()
|
||||
wasmJs()
|
||||
|
||||
useCoroutines()
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@ The core interfaces of KMath.
|
||||
|
||||
## Artifact:
|
||||
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-core:0.4.0-dev-7`.
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-core:0.4.0-dev-8`.
|
||||
|
||||
**Gradle Kotlin DSL:**
|
||||
```kotlin
|
||||
@@ -19,6 +19,6 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("space.kscience:maps-kt-core:0.4.0-dev-7")
|
||||
implementation("space.kscience:maps-kt-core:0.4.0-dev-8")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -3,15 +3,15 @@ plugins {
|
||||
`maven-publish`
|
||||
}
|
||||
|
||||
kscience{
|
||||
kscience {
|
||||
jvm()
|
||||
js()
|
||||
native()
|
||||
wasm()
|
||||
wasmJs()
|
||||
|
||||
useSerialization()
|
||||
|
||||
dependencies{
|
||||
dependencies {
|
||||
api(projects.trajectoryKt)
|
||||
}
|
||||
}
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Artifact:
|
||||
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-features:0.4.0-dev-7`.
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-features:0.4.0-dev-8`.
|
||||
|
||||
**Gradle Kotlin DSL:**
|
||||
```kotlin
|
||||
@@ -16,6 +16,6 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("space.kscience:maps-kt-features:0.4.0-dev-7")
|
||||
implementation("space.kscience:maps-kt-features:0.4.0-dev-8")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -10,7 +10,7 @@ val kmathVersion: String by rootProject.extra
|
||||
kscience {
|
||||
jvm()
|
||||
// js()
|
||||
wasm{
|
||||
wasmJs{
|
||||
browser {
|
||||
testTask {
|
||||
enabled = false
|
||||
|
||||
@@ -6,7 +6,7 @@ GeoJson format support
|
||||
|
||||
## Artifact:
|
||||
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-geojson:0.4.0-dev-7`.
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-geojson:0.4.0-dev-8`.
|
||||
|
||||
**Gradle Kotlin DSL:**
|
||||
```kotlin
|
||||
@@ -16,6 +16,6 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("space.kscience:maps-kt-geojson:0.4.0-dev-7")
|
||||
implementation("space.kscience:maps-kt-geojson:0.4.0-dev-8")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -8,7 +8,7 @@ description = "GeoJson format support"
|
||||
kscience{
|
||||
jvm()
|
||||
// js()
|
||||
wasm()
|
||||
wasmJs()
|
||||
|
||||
useSerialization {
|
||||
json()
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
|
||||
## Artifact:
|
||||
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-scheme:0.4.0-dev-7`.
|
||||
The Maven coordinates of this project are `space.kscience:maps-kt-scheme:0.4.0-dev-8`.
|
||||
|
||||
**Gradle Kotlin DSL:**
|
||||
```kotlin
|
||||
@@ -16,6 +16,6 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("space.kscience:maps-kt-scheme:0.4.0-dev-7")
|
||||
implementation("space.kscience:maps-kt-scheme:0.4.0-dev-8")
|
||||
}
|
||||
```
|
||||
|
||||
@@ -8,7 +8,7 @@ plugins {
|
||||
kscience {
|
||||
jvm()
|
||||
// js()
|
||||
wasm()
|
||||
wasmJs()
|
||||
|
||||
commonMain {
|
||||
api(projects.mapsKtFeatures)
|
||||
|
||||
@@ -30,8 +30,8 @@ dependencyResolutionManagement {
|
||||
repositories {
|
||||
mavenLocal()
|
||||
maven("https://repo.kotlin.link")
|
||||
google()
|
||||
mavenCentral()
|
||||
gradlePluginPortal()
|
||||
}
|
||||
|
||||
versionCatalogs {
|
||||
@@ -41,6 +41,9 @@ dependencyResolutionManagement {
|
||||
}
|
||||
}
|
||||
|
||||
plugins {
|
||||
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
||||
}
|
||||
|
||||
include(
|
||||
":trajectory-kt",
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
|
||||
## Artifact:
|
||||
|
||||
The Maven coordinates of this project are `space.kscience:trajectory-kt:0.4.0-dev-7`.
|
||||
The Maven coordinates of this project are `space.kscience:trajectory-kt:0.4.0-dev-8`.
|
||||
|
||||
**Gradle Kotlin DSL:**
|
||||
```kotlin
|
||||
@@ -15,7 +15,7 @@ repositories {
|
||||
}
|
||||
|
||||
dependencies {
|
||||
implementation("space.kscience:trajectory-kt:0.4.0-dev-7")
|
||||
implementation("space.kscience:trajectory-kt:0.4.0-dev-8")
|
||||
}
|
||||
```
|
||||
|
||||
|
||||
@@ -11,9 +11,9 @@ kscience{
|
||||
jvm()
|
||||
js()
|
||||
native()
|
||||
wasm()
|
||||
wasmJs()
|
||||
|
||||
useContextReceivers()
|
||||
useContextParameters()
|
||||
useSerialization{
|
||||
json()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user