File tree 4 files changed +7
-14
lines changed
plugins/project/src/main/kotlin
sandbox/src/jvmMain/kotlin
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"
117
117
kotlin-cryptography = " 0.4.0"
118
118
kotlin-json-schema = " 0.1.1"
119
119
json-sugar = " 0.7.0"
120
- json-schema-validator = " 0.4 .0"
120
+ json-schema-validator = " 0.5 .0"
121
121
pwall-json-schema = " 0.56"
122
122
uri-kmp = " 0.0.19"
123
123
urlencoder = " 1.5.0"
@@ -159,7 +159,7 @@ async-profiler = "3.0"
159
159
ap-loader-all = " 3.0-9"
160
160
openjdk-jmc = " 9.0.0"
161
161
airlift-aircompressor = " 2.0.2"
162
- airlift-security = " 316 "
162
+ airlift-security = " 323 "
163
163
directory-keystore = " 1.1.1"
164
164
maven-mima = " 3.0.0-alpha-3"
165
165
maven-archeologist = " 0.0.10"
Original file line number Diff line number Diff line change @@ -18,7 +18,6 @@ plugins {
18
18
com.google.devtools.ksp
19
19
dev.zacsweers.redacted
20
20
com.javiersc.kotlin.kopy
21
- org.jetbrains.kotlinx.atomicfu
22
21
id(" dev.suresh.plugin.common" )
23
22
id(" dev.suresh.plugin.kotlin.docs" )
24
23
// kotlin("plugin.atomicfu")
@@ -63,11 +62,6 @@ testing {
63
62
}
64
63
}
65
64
66
- atomicfu {
67
- transformJvm = true
68
- jvmVariant = " VH"
69
- }
70
-
71
65
ksp {
72
66
arg(" autoserviceKsp.verify" , " true" )
73
67
arg(" autoserviceKsp.verbose" , " true" )
Original file line number Diff line number Diff line change @@ -22,7 +22,6 @@ plugins {
22
22
com.google.devtools.ksp
23
23
dev.zacsweers.redacted
24
24
com.javiersc.kotlin.kopy
25
- org.jetbrains.kotlinx.atomicfu
26
25
// kotlin("plugin.compose")
27
26
// io.github.terrakok.`kmp-hierarchy`
28
27
// org.gradle.kotlin.`kotlin-dsl`
@@ -58,11 +57,6 @@ kotlin {
58
57
// explicitApiWarning()
59
58
}
60
59
61
- atomicfu {
62
- transformJvm = true
63
- jvmVariant = " VH"
64
- }
65
-
66
60
ksp {
67
61
arg(" autoserviceKsp.verify" , " true" )
68
62
arg(" autoserviceKsp.verbose" , " true" )
Original file line number Diff line number Diff line change 1
1
package dev.suresh
2
2
3
+ import com.javiersc.kotlin.kopy.Kopy
4
+
5
+ @Kopy data class Lang (val name : String )
6
+
3
7
fun main () {
4
8
println (" Hello, ${BuildConfig .name} ! 🏖" )
5
9
println (" Java: ${BuildConfig .java} , Kotlin: ${BuildConfig .kotlin} " )
6
10
println (" Runtime Version: ${JApp .runtimeVersion()} " )
11
+ println (Lang (" Java" ).copy { name = " Kotlin" })
7
12
}
You can’t perform that action at this time.
0 commit comments