File tree Expand file tree Collapse file tree 4 files changed +16
-12
lines changed
examples/idea-examples/titanic Expand file tree Collapse file tree 4 files changed +16
-12
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,9 @@ private fun String.findVersion(): Version {
66
66
67
67
// these names of outdated dependencies will not show up in the table output
68
68
val dependencyUpdateExclusions = listOf (
69
- " klaxon" , // 5.6 requires Java 11
69
+ libs.klaxon.get().name, // 5.6 requires Java 11
70
+ libs.plugins.kover.get().pluginId, // Requires more work to be updated to 1.7.0+
71
+ libs.plugins.kotlinter.get().pluginId, // Updating requires major changes all across the project
70
72
)
71
73
72
74
// run `./gradlew dependencyUpdates` to check for updates
Original file line number Diff line number Diff line change 1
- import com.google.devtools.ksp.gradle.KspTaskJvm
2
1
import com.google.devtools.ksp.gradle.KspTask
2
+ import com.google.devtools.ksp.gradle.KspTaskJvm
3
3
import io.github.devcrocod.korro.KorroTask
4
- import nl.jolanrensen.docProcessor.defaultProcessors.*
4
+ import nl.jolanrensen.docProcessor.defaultProcessors.ARG_DOC_PROCESSOR_LOG_NOT_FOUND
5
5
import nl.jolanrensen.docProcessor.gradle.creatingProcessDocTask
6
6
import org.gradle.jvm.tasks.Jar
7
7
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
Original file line number Diff line number Diff line change @@ -14,10 +14,10 @@ application.mainClass.set("org.jetbrains.kotlinx.dataframe.examples.titanic.ml.T
14
14
dependencies {
15
15
// implementation("org.jetbrains.kotlinx:dataframe:X.Y.Z")
16
16
implementation(project(" :" ))
17
- implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-api:0.5.1 " )
18
- implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-impl:0.5.1 " )
19
- implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-tensorflow:0.5.1 " )
20
- implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.5.1 " )
17
+ implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-api:0.5.2 " )
18
+ implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-impl:0.5.2 " )
19
+ implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-tensorflow:0.5.2 " )
20
+ implementation(" org.jetbrains.kotlinx:kotlin-deeplearning-dataset:0.5.2 " )
21
21
}
22
22
23
23
dataframes {
Original file line number Diff line number Diff line change 1
1
[versions ]
2
2
ksp = " 1.9.21-1.0.15"
3
- kotlinJupyter = " 0.11.0-358"
4
- ktlint = " 3.4.5"
3
+ kotlinJupyter = " 0.11.0-358" # TODO
4
+ ktlint = " 3.4.5" # Updating requires major changes all across the project
5
5
6
6
# make sure to sync with :generator module
7
7
kotlin = " 1.9.0"
@@ -13,7 +13,9 @@ libsPublisher = "0.0.60-dev-30"
13
13
# dogfood Gradle / KSP plugins in tests and idea-examples modules
14
14
dataframe = " 0.12.1"
15
15
korro = " 0.1.5"
16
- kover = " 0.6.0-Beta"
16
+
17
+ # Requires more work to be updated to 1.7.0+
18
+ kover = " 0.6.1"
17
19
18
20
commonsCsv = " 1.10.0"
19
21
commonsCompress = " 1.25.0"
@@ -24,8 +26,8 @@ mariadb = "3.3.2"
24
26
h2db = " 2.2.224"
25
27
mysql = " 8.0.33"
26
28
postgresql = " 42.7.1"
27
- sqlite = " 3.42.0.1 "
28
- kotlinDatetime = " 0.4 .0"
29
+ sqlite = " 3.45.1.0 "
30
+ kotlinDatetime = " 0.5 .0"
29
31
openapi = " 2.1.20"
30
32
kotlinLogging = " 6.0.3"
31
33
sl4j = " 2.0.12"
You can’t perform that action at this time.
0 commit comments