File tree Expand file tree Collapse file tree 3 files changed +4
-5
lines changed
Expand file tree Collapse file tree 3 files changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,6 @@ object Deps {
3030 const val kotlin_reflect = " org.jetbrains.kotlin:kotlin-reflect:${Versions .kotlin_reflect} "
3131 const val java_cose = " com.augustcellars.cose:cose-java:${Versions .java_cose} "
3232 const val json_validation = " com.github.fge:json-schema-validator:${Versions .json_validation} "
33- const val json_validation_rhino = " io.apisense:rhino-android:${Versions .json_validation_rhino} "
3433 const val jackson_cbor = " com.fasterxml.jackson.dataformat:jackson-dataformat-cbor:${Versions .jackson_cbor} "
3534 const val bouncy_castle = " org.bouncycastle:bcpkix-jdk15to18:${Versions .bouncy_castle} "
3635
Original file line number Diff line number Diff line change @@ -35,7 +35,6 @@ object Versions {
3535
3636 // Validation
3737 const val json_validation = " 2.2.6"
38- const val json_validation_rhino = " 1.0"
3938
4039 // Tests
4140 const val junit = " 4.13.1"
Original file line number Diff line number Diff line change @@ -43,12 +43,13 @@ android {
4343
4444dependencies {
4545 coreLibraryDesugaring Deps . desugar_jdk_libs
46-
46+
4747 implementation Deps . kotlin_stdlib
4848 implementation Deps . kotlin_reflect
4949 implementation Deps . java_cose
50- implementation Deps . json_validation
51- implementation Deps . json_validation_rhino
50+ implementation(Deps . json_validation) {
51+ exclude group : " org.mozilla" , module : " rhino"
52+ }
5253 implementation Deps . jackson_cbor
5354 implementation Deps . bouncy_castle
5455
You can’t perform that action at this time.
0 commit comments