@@ -7,9 +7,9 @@ import kotlin.time.DurationUnit.MILLISECONDS
77plugins {
88 signing
99 `maven- publish`
10- kotlin(" multiplatform" ) version " 2.1 .0"
10+ kotlin(" multiplatform" ) version " 2.3 .0"
1111// kotlin("jupyter.api") version "0.11.0-225"
12- id(" com.github.ben-manes.versions" ) version " 0.52 .0"
12+ id(" com.github.ben-manes.versions" ) version " 0.53 .0"
1313 id(" io.github.gradle-nexus.publish-plugin" ) version " 2.0.0"
1414}
1515
@@ -82,8 +82,8 @@ kotlin {
8282// }
8383 val commonMain by getting {
8484 dependencies {
85- implementation(kotlin(" stdlib-common:2.1 .0" ))
86- implementation(kotlin(" reflect:2.1 .0" ))
85+ implementation(kotlin(" stdlib-common:2.3 .0" ))
86+ implementation(kotlin(" reflect:2.3 .0" ))
8787
8888 implementation(" com.ionspin.kotlin:bignum:0.3.10" )
8989
@@ -99,17 +99,17 @@ kotlin {
9999 // TODO: Figure out how to package viz.js directly for Kotlin Jupyter
100100 // https://github.com/mipt-npm/kmath/issues/449#issuecomment-1009660734
101101 implementation(" guru.nidi:graphviz-kotlin:0.18.1" )
102- implementation(" org.graalvm.js:js:24.2.2 " )
102+ implementation(" org.graalvm.js:js:25.0.1 " )
103103
104104 implementation(" org.jetbrains.lets-plot:platf-awt-jvm:4.4.1" )
105- implementation(" org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.11.0 " )
105+ implementation(" org.jetbrains.lets-plot:lets-plot-kotlin-jvm:4.12.1 " )
106106
107107// https://arxiv.org/pdf/1908.10693.pdf
108108// implementation("com.datadoghq:sketches-java:0.7.0")
109109
110110 // Cache PMF/CDF lookups for common queries
111111
112- implementation(" org.apache.datasketches:datasketches-java:8 .0.0" )
112+ implementation(" org.apache.datasketches:datasketches-java:9 .0.0" )
113113
114114// implementation("com.github.analog-garage:dimple:master-SNAPSHOT")
115115
@@ -146,7 +146,7 @@ kotlin {
146146 implementation(" org.junit.jupiter:junit-jupiter:5.13.1" )
147147
148148 implementation(" junit:junit:4.13.2" )
149- implementation(" org.jetbrains:annotations:26.0.2" )
149+ implementation(" org.jetbrains:annotations:26.0.2-1 " )
150150 implementation(" org.slf4j:slf4j-simple:2.1.0-alpha1" )
151151
152152 // http://www.ti.inf.uni-due.de/fileadmin/public/tools/grez/grez-manual.pdf
@@ -199,34 +199,34 @@ kotlin {
199199 * Adapted from: https://dev.to/kotlin/how-to-build-and-publish-a-kotlin-multiplatform-library-going-public-4a8k
200200 */
201201
202- publishing {
203- publications {
204- withType<MavenPublication > {
205- artifact(javadocJar.get())
206- pom {
207- url = " https://github.com/breandan/kaliningraph"
208- name = " Kaliningraph"
209- description = " A purely functional algebraic graph library"
210- licenses {
211- license {
212- name = " The Apache Software License, Version 2.0"
213- url = " https://www.apache.org/licenses/LICENSE-2.0.txt"
214- distribution = " repo"
215- }
216- }
217- developers {
218- developer {
219- id = " Breandan Considine"
220- name = " Breandan Considine"
221- 222- organization = " McGill University"
223- }
224- }
225- scm { url = " https://github.com/breandan/kaliningraph" }
226- }
227- }
228- }
229- }
202+ // publishing {
203+ // publications {
204+ // withType<MavenPublication> {
205+ // artifact(javadocJar.get())
206+ // pom {
207+ // url = "https://github.com/breandan/kaliningraph"
208+ // name = "Kaliningraph"
209+ // description = "A purely functional algebraic graph library"
210+ // licenses {
211+ // license {
212+ // name = "The Apache Software License, Version 2.0"
213+ // url = "https://www.apache.org/licenses/LICENSE-2.0.txt"
214+ // distribution = "repo"
215+ // }
216+ // }
217+ // developers {
218+ // developer {
219+ // id = "Breandan Considine"
220+ // name = "Breandan Considine"
221+ 222+ // organization = "McGill University"
223+ // }
224+ // }
225+ // scm { url = "https://github.com/breandan/kaliningraph" }
226+ // }
227+ // }
228+ // }
229+ // }
230230}
231231
232232data class TestDuration (val name : String , val duration : Duration ) {
0 commit comments