File tree Expand file tree Collapse file tree 4 files changed +7
-14
lines changed
plugins/project/src/main/kotlin
sandbox/src/jvmMain/kotlin Expand file tree Collapse file tree 4 files changed +7
-14
lines changed Original file line number Diff line number Diff line change @@ -117,7 +117,7 @@ kotlinx-jsonpath = "3.0.2"
117117kotlin-cryptography = " 0.4.0"
118118kotlin-json-schema = " 0.1.1"
119119json-sugar = " 0.7.0"
120- json-schema-validator = " 0.4 .0"
120+ json-schema-validator = " 0.5 .0"
121121pwall-json-schema = " 0.56"
122122uri-kmp = " 0.0.19"
123123urlencoder = " 1.5.0"
@@ -159,7 +159,7 @@ async-profiler = "3.0"
159159ap-loader-all = " 3.0-9"
160160openjdk-jmc = " 9.0.0"
161161airlift-aircompressor = " 2.0.2"
162- airlift-security = " 316 "
162+ airlift-security = " 323 "
163163directory-keystore = " 1.1.1"
164164maven-mima = " 3.0.0-alpha-3"
165165maven-archeologist = " 0.0.10"
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ plugins {
1818 com.google.devtools.ksp
1919 dev.zacsweers.redacted
2020 com.javiersc.kotlin.kopy
21- org.jetbrains.kotlinx.atomicfu
2221 id(" dev.suresh.plugin.common" )
2322 id(" dev.suresh.plugin.kotlin.docs" )
2423 // kotlin("plugin.atomicfu")
@@ -63,11 +62,6 @@ testing {
6362 }
6463}
6564
66- atomicfu {
67- transformJvm = true
68- jvmVariant = " VH"
69- }
70-
7165ksp {
7266 arg(" autoserviceKsp.verify" , " true" )
7367 arg(" autoserviceKsp.verbose" , " true" )
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ plugins {
2222 com.google.devtools.ksp
2323 dev.zacsweers.redacted
2424 com.javiersc.kotlin.kopy
25- org.jetbrains.kotlinx.atomicfu
2625 // kotlin("plugin.compose")
2726 // io.github.terrakok.`kmp-hierarchy`
2827 // org.gradle.kotlin.`kotlin-dsl`
@@ -58,11 +57,6 @@ kotlin {
5857 // explicitApiWarning()
5958}
6059
61- atomicfu {
62- transformJvm = true
63- jvmVariant = " VH"
64- }
65-
6660ksp {
6761 arg(" autoserviceKsp.verify" , " true" )
6862 arg(" autoserviceKsp.verbose" , " true" )
Original file line number Diff line number Diff line change 11package dev.suresh
22
3+ import com.javiersc.kotlin.kopy.Kopy
4+
5+ @Kopy data class Lang (val name : String )
6+
37fun main () {
48 println (" Hello, ${BuildConfig .name} ! 🏖" )
59 println (" Java: ${BuildConfig .java} , Kotlin: ${BuildConfig .kotlin} " )
610 println (" Runtime Version: ${JApp .runtimeVersion()} " )
11+ println (Lang (" Java" ).copy { name = " Kotlin" })
712}
You can’t perform that action at this time.
0 commit comments