From 77e768bbb053ead0ff1ba4c901a73aa296cd8923 Mon Sep 17 00:00:00 2001 From: JordonPhillips Date: Fri, 14 May 2021 16:29:12 +0200 Subject: [PATCH] Update java group name This updates the java group name to `software.amazon.smithy.typescript` so that publishing can be isolated from base smithy. --- build.gradle.kts | 2 +- smithy-typescript-integ-tests/codegen/build.gradle | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/build.gradle.kts b/build.gradle.kts index 7e010548393..54cd963dba5 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -24,7 +24,7 @@ plugins { } allprojects { - group = "software.amazon.smithy" + group = "software.amazon.smithy.typescript" version = "0.3.0" } diff --git a/smithy-typescript-integ-tests/codegen/build.gradle b/smithy-typescript-integ-tests/codegen/build.gradle index a7fe87abae1..22effdaa80d 100644 --- a/smithy-typescript-integ-tests/codegen/build.gradle +++ b/smithy-typescript-integ-tests/codegen/build.gradle @@ -21,8 +21,8 @@ buildscript { mavenCentral() } dependencies { - classpath 'software.amazon.smithy:smithy-typescript-codegen:0.3.0' - classpath 'software.amazon.smithy:smithy-aws-typescript-codegen:0.3.0' + classpath 'software.amazon.smithy.typescript:smithy-typescript-codegen:0.3.0' + classpath 'software.amazon.smithy.typescript:smithy-aws-typescript-codegen:0.3.0' classpath "software.amazon.smithy:smithy-model:1.7.2" } }