File tree 5 files changed +7
-11
lines changed
5 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -4,9 +4,6 @@ buildscript {
4
4
repositories {
5
5
mavenCentral()
6
6
}
7
- dependencies {
8
- classpath(libs.atomicfu)
9
- }
10
7
}
11
8
12
9
plugins {
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ SONATYPE_HOST=S01
33
33
RELEASE_SIGNING_ENABLED =true
34
34
35
35
GROUP =com.sebastianneubauer.jsontree
36
- VERSION_NAME =2.4.0
36
+ VERSION_NAME =2.4.1
37
37
38
38
POM_INCEPTION_YEAR =2023
39
39
POM_URL =https://github.com/snappdevelopment/JsonTree
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ agp = "8.5.2"
9
9
kotlin = " 2.0.20"
10
10
publish = " 0.29.0"
11
11
api-validator = " 0.16.3"
12
- atomicfu = " 0.25.0 "
12
+ atomicfu = " 0.26.1 "
13
13
androidx-activity-compose = " 1.9.2"
14
14
kotlinx-serialization-json = " 1.7.3"
15
15
kotlinx-coroutines = " 1.9.0"
@@ -25,7 +25,7 @@ kotlinx-coroutines-swing = { module = "org.jetbrains.kotlinx:kotlinx-coroutines-
25
25
kotlinx-coroutines-test = { module = " org.jetbrains.kotlinx:kotlinx-coroutines-test" , version.ref = " kotlinx-coroutines" }
26
26
27
27
detekt-formatting = { module = " io.gitlab.arturbosch.detekt:detekt-formatting" , version.ref = " detekt" }
28
- atomicfu = { module = " org.jetbrains.kotlinx:atomicfu-gradle-plugin " , version.ref = " atomicfu" }
28
+ atomicfu = { module = " org.jetbrains.kotlinx:atomicfu" , version.ref = " atomicfu" }
29
29
30
30
[plugins ]
31
31
android-library = { id = " com.android.library" , version.ref = " agp" }
Original file line number Diff line number Diff line change @@ -56,7 +56,9 @@ kotlin {
56
56
implementation(compose.components.resources)
57
57
implementation(compose.components.uiToolingPreview)
58
58
implementation(libs.kotlinx.coroutines.core)
59
- implementation (libs.kotlinx.serialization.json)
59
+ implementation(libs.kotlinx.serialization.json)
60
+ // needs to be added as a workaround not get atomicfus code stripped
61
+ implementation(libs.atomicfu)
60
62
}
61
63
}
62
64
Original file line number Diff line number Diff line change @@ -93,6 +93,7 @@ kotlin {
93
93
compilations[" main" ].compilerOptions.options.freeCompilerArgs.add(" -Xexport-kdoc" )
94
94
}
95
95
96
+ jvmToolchain(17 )
96
97
}
97
98
98
99
android {
@@ -107,10 +108,6 @@ android {
107
108
manifest.srcFile(" src/androidMain/AndroidManifest.xml" )
108
109
res.srcDirs(" src/androidMain/res" )
109
110
}
110
- compileOptions {
111
- sourceCompatibility = JavaVersion .VERSION_17
112
- targetCompatibility = JavaVersion .VERSION_17
113
- }
114
111
buildTypes {
115
112
getByName(" release" ) {
116
113
isMinifyEnabled = true
You can’t perform that action at this time.
0 commit comments