Skip to content

Commit a1c0b48

Browse files
committed
Update versions
1 parent 585d174 commit a1c0b48

File tree

17 files changed

+26
-33
lines changed

17 files changed

+26
-33
lines changed

build.gradle.kts

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ plugins {
77

88
allprojects {
99
group = "space.kscience"
10-
version = "0.4.0-dev-7"
10+
version = "0.4.0-dev-8"
1111

1212
repositories {
1313
mavenLocal()
@@ -16,21 +16,12 @@ allprojects {
1616
}
1717

1818
ksciencePublish {
19-
pom("https://github.com/SciProgCentre/maps-kt") {
19+
pom("https://github.com/SciProgCentre/controls-kt") {
2020
useApache2Licence()
2121
useSPCTeam()
2222
}
2323
repository("spc","https://maven.sciprog.center/kscience")
24-
sonatype("https://oss.sonatype.org")
25-
}
26-
27-
subprojects {
28-
repositories {
29-
google()
30-
mavenCentral()
31-
maven("https://repo.kotlin.link")
32-
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
33-
}
24+
central()
3425
}
3526

3627
readme.readmeTemplate = file("docs/templates/README-TEMPLATE.md")

demo/maps/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ kotlin {
2828
implementation(projects.mapsKtGeojson)
2929
implementation(projects.mapsKtGeotools)
3030
implementation(compose.desktop.currentOs)
31+
implementation(compose.materialIconsExtended)
3132

3233
implementation("io.ktor:ktor-client-cio")
3334
implementation(spclibs.logback.classic)

demo/scheme/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ kotlin {
1414
dependencies {
1515
implementation(compose.desktop.currentOs)
1616
implementation(compose.components.resources)
17+
implementation(compose.materialIconsExtended)
1718
}
1819
}
1920

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ kotlin.code.style=official
22

33
org.gradle.jvmargs=-Xmx4096m
44

5-
toolsVersion=0.17.1-kotlin-2.1.20
5+
toolsVersion=0.19.2-kotlin-2.2.20
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.0-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

maps-kt-compose/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ The core interfaces of KMath.
77

88
## Artifact:
99

10-
The Maven coordinates of this project are `space.kscience:maps-kt-compose:0.4.0-dev-7`.
10+
The Maven coordinates of this project are `space.kscience:maps-kt-compose:0.4.0-dev-8`.
1111

1212
**Gradle Kotlin DSL:**
1313
```kotlin
@@ -17,6 +17,6 @@ repositories {
1717
}
1818

1919
dependencies {
20-
implementation("space.kscience:maps-kt-compose:0.4.0-dev-7")
20+
implementation("space.kscience:maps-kt-compose:0.4.0-dev-8")
2121
}
2222
```

maps-kt-compose/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88

99
kscience {
1010
jvm()
11-
wasm()
11+
wasmJs()
1212

1313
useCoroutines()
1414

maps-kt-core/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The core interfaces of KMath.
99

1010
## Artifact:
1111

12-
The Maven coordinates of this project are `space.kscience:maps-kt-core:0.4.0-dev-7`.
12+
The Maven coordinates of this project are `space.kscience:maps-kt-core:0.4.0-dev-8`.
1313

1414
**Gradle Kotlin DSL:**
1515
```kotlin
@@ -19,6 +19,6 @@ repositories {
1919
}
2020

2121
dependencies {
22-
implementation("space.kscience:maps-kt-core:0.4.0-dev-7")
22+
implementation("space.kscience:maps-kt-core:0.4.0-dev-8")
2323
}
2424
```

maps-kt-core/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ kscience{
77
jvm()
88
js()
99
native()
10-
wasm()
10+
wasmJs()
1111

1212
useSerialization()
1313

maps-kt-features/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
## Artifact:
88

9-
The Maven coordinates of this project are `space.kscience:maps-kt-features:0.4.0-dev-7`.
9+
The Maven coordinates of this project are `space.kscience:maps-kt-features:0.4.0-dev-8`.
1010

1111
**Gradle Kotlin DSL:**
1212
```kotlin
@@ -16,6 +16,6 @@ repositories {
1616
}
1717

1818
dependencies {
19-
implementation("space.kscience:maps-kt-features:0.4.0-dev-7")
19+
implementation("space.kscience:maps-kt-features:0.4.0-dev-8")
2020
}
2121
```

0 commit comments

Comments
 (0)