fix(deps): update dependency org.elasticmq:elasticmq-rest-sqs_2.13 to v1.6.12 (#13618)

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
This commit is contained in:
renovate[bot] 2025-03-31 14:28:49 +03:00 committed by GitHub
parent 4bd998f253
commit a8cc005b3a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 2 deletions

View File

@ -119,7 +119,7 @@ val DEPENDENCIES = listOf(
"org.objenesis:objenesis:3.4",
"javax.validation:validation-api:2.0.1.Final",
"org.snakeyaml:snakeyaml-engine:2.9",
"org.elasticmq:elasticmq-rest-sqs_2.13:1.6.11"
"org.elasticmq:elasticmq-rest-sqs_2.13:1.6.12"
)
javaPlatform {

View File

@ -268,7 +268,8 @@ public class AdditionalLibraryIgnoredTypesConfigurer implements IgnoredTypesConf
.allowClass("org.h2.util.Task")
.allowClass("org.h2.store.FileLock")
.allowClass("org.h2.engine.DatabaseCloser")
.allowClass("org.h2.engine.OnExitDatabaseCloser");
.allowClass("org.h2.engine.OnExitDatabaseCloser")
.allowClass("org.h2.server.web.WebServlet");
builder
.ignoreClass("com.carrotsearch.hppc.")