From 5d672f3d9fd164fb7cb01fc6accd57c9874079a3 Mon Sep 17 00:00:00 2001 From: Oleg Date: Sun, 10 Mar 2024 10:50:51 +0400 Subject: [PATCH] Use bom release version. Correct comments --- build.gradle | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index 49191399e..91ac098a2 100644 --- a/build.gradle +++ b/build.gradle @@ -180,15 +180,15 @@ tasks.register('integrationTest', Test) { } dependencies { - api platform("com.exactpro.th2:bom:4.6.0-update-bom-8129602206-434846f-SNAPSHOT") + api platform("com.exactpro.th2:bom:4.6.0") api('com.exactpro.th2:grpc-common:4.4.0-dev') { - because('protobuf transport is main now, this dependnecy should be moved to grpc, mq protobuf modules after splitting') + because('protobuf transport is main now, this dependency should be moved to grpc, mq protobuf modules after splitting') } api("com.exactpro.th2:cradle-core:$cradleVersion") { - because('cradle is included into common library now, this dependnecy should be moved to a cradle module after splitting') + because('cradle is included into common library now, this dependency should be moved to a cradle module after splitting') } api('io.netty:netty-buffer') { - because('th2 transport protocol is included into common library now, this dependnecy should be moved to a th2 transport module after splitting') + because('th2 transport protocol is included into common library now, this dependency should be moved to a th2 transport module after splitting') } jmh 'org.openjdk.jmh:jmh-core:0.9'