From 2ddba7286efd1b67411a9c1cd8899592e32aedb3 Mon Sep 17 00:00:00 2001 From: Oleg Date: Thu, 4 Jul 2024 16:27:07 +0400 Subject: [PATCH] Update gradle to 8.4 --- gradle/wrapper/gradle-wrapper.properties | 2 +- .../kotlin/com/exactpro/th2/codec/json/ConstantMessageType.kt | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 2b20ca3..81e64d2 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,5 +1,5 @@ #Mon May 25 11:22:24 MSK 2020 -distributionUrl=https\://services.gradle.org/distributions/gradle-7.6-all.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-all.zip distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStorePath=wrapper/dists diff --git a/src/test/kotlin/com/exactpro/th2/codec/json/ConstantMessageType.kt b/src/test/kotlin/com/exactpro/th2/codec/json/ConstantMessageType.kt index 486374e..dcf56f7 100644 --- a/src/test/kotlin/com/exactpro/th2/codec/json/ConstantMessageType.kt +++ b/src/test/kotlin/com/exactpro/th2/codec/json/ConstantMessageType.kt @@ -88,6 +88,10 @@ class ConstantMessageType { init(object : IPipelineCodecContext { override fun get(alias: DictionaryAlias): InputStream = getResourceAsStream(alias) + @Deprecated( + "Dictionary types will be removed in future releases of infra", + replaceWith = ReplaceWith("get(alias)") + ) override fun get(type: DictionaryType): InputStream = TODO("Not yet implemented") override fun getDictionaryAliases(): Set = TODO("Not yet implemented")