From 621fe32a6ee4423b0dca3d7d6b828fbcb4418b0f Mon Sep 17 00:00:00 2001 From: Nate Anderson Date: Mon, 8 Jan 2024 16:34:34 -0800 Subject: [PATCH] chore: switch to released version of client protos Release-As: 0.5.0 --- build.gradle.kts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 0c16eb3..c64e470 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,6 @@ version = "0.1.0-SNAPSHOT" repositories { mavenCentral() google() - maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") } android { @@ -64,7 +63,7 @@ kotlin { val jvmMain by getting { dependencies { implementation(kotlin("stdlib-jdk8")) - implementation("software.momento.kotlin:client-protos-jvm:0.1.0-SNAPSHOT") + implementation("software.momento.kotlin:client-protos-jvm:0.100.0") runtimeOnly("io.grpc:grpc-netty:1.57.2") } } @@ -75,7 +74,7 @@ kotlin { } val androidMain by getting { dependencies { - implementation("software.momento.kotlin:client-protos-android:0.1.0-SNAPSHOT") + implementation("software.momento.kotlin:client-protos-android:0.100.0") runtimeOnly("io.grpc:grpc-okhttp:1.57.2") } }