Skip to content

Commit 2f79926

Browse files
committed
chore: dataframe plugin support
1 parent 0e97536 commit 2f79926

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ native-image. These plugins handle configuring the most common build tasks, incl
3838
* `kopy`
3939
* `power-assert`
4040
* `atomicfu`
41+
* `dataframe`
4142
* And many other common build tasks
4243

4344
These plugins help you focus on writing code, not configuring your build. They provide a solid foundation for your

gradle/libs.versions.toml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ org-name = "suresh.dev"
2020
org-url = "https://suresh.dev"
2121

2222
# Dependency Versions
23-
bc-plugins = "2.20.0"
23+
bc-plugins = "2.21.0"
2424
kotlinx-kover = "0.9.3"
2525
kotlin-dokka = "2.1.0"
2626
kotlinx-io = "0.8.0"
@@ -153,7 +153,7 @@ micrometer = "1.16.0"
153153
swagger-ui = "5.17.14"
154154
hoplite = "3.0.0.RC1"
155155
config4k = "0.7.0"
156-
shedlock = "7.0.0"
156+
shedlock = "7.1.0"
157157
sherlock = "1.0.3"
158158
sqids = "0.1.0"
159159
tsid = "2.1.4"
@@ -223,7 +223,7 @@ compose-adaptive = "1.3.0-alpha01"
223223
compose-icons = "1.7.3"
224224
compose-fontawesome = "1.1.1"
225225
kobweb = "0.23.3"
226-
summon = "0.4.9.1"
226+
summon = "0.4.9.4"
227227
detekt = "2.0.0-alpha.1"
228228
detekt-compose-rules = "0.4.27"
229229
antdesign = "1.0.0"
@@ -263,7 +263,7 @@ graalvm-nativeimage = "0.11.3"
263263
github-depgraph = "0.1.0"
264264
github-changelog = "2.2.0"
265265
buildkonfig = "0.17.1"
266-
gmazzo-buildconfig = "5.7.1"
266+
gmazzo-buildconfig = "6.0.0"
267267
cyclonedx-plugin = "1.10.0"
268268
modulegraph = "0.13.0"
269269
exposed-plugin = "0.2.1"
@@ -780,6 +780,7 @@ kotlin-noarg = { id = "org.jetbrains.kotlin.plugin.noarg
780780
kotlin-atomicfu = { id = "org.jetbrains.kotlin.plugin.atomicfu" , version.ref = "kotlin"}
781781
kotlin-js-plainobjects = { id = "org.jetbrains.kotlin.plugin.js-plain-objects" , version.ref = "kotlin"}
782782
kotlin-compose-compiler = { id = "org.jetbrains.kotlin.plugin.compose" , version.ref = "kotlin"}
783+
kotlin-dataframe = { id = "org.jetbrains.kotlin.plugin.dataframe" , version.ref = "kotlin"}
783784
kotlin-dsl = { id = "org.gradle.kotlin.kotlin-dsl" , version.ref = "gradle-kotlin-dsl"}
784785
kotlin-ksp = { id = "com.google.devtools.ksp" , version.ref = "kotlin-ksp"}
785786
kotlinx-atomicfu = { id = "org.jetbrains.kotlinx.atomicfu" , version.ref = "kotlinx-atomicfu"}

plugins/project/build.gradle.kts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ dependencies {
9191
implementation(libs.plugins.kotlin.powerassert.dep)
9292
implementation(libs.plugins.kotlin.js.plainobjects.dep)
9393
implementation(libs.plugins.kotlin.ksp.dep)
94+
implementation(libs.plugins.kotlin.dataframe.dep)
9495
implementation(libs.plugins.kotlinx.atomicfu.dep)
9596
implementation(libs.plugins.kotlinx.serialization.dep)
9697
implementation(libs.plugins.kotlinx.kover.dep)

0 commit comments

Comments
 (0)