/* * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0 */ val smithyVersion: String by project buildscript { val smithyVersion: String by project repositories { mavenLocal() mavenCentral() } dependencies { "classpath"("software.amazon.smithy:smithy-cli:$smithyVersion") } } plugins { `java-library` } java { sourceCompatibility = JavaVersion.VERSION_17 targetCompatibility = JavaVersion.VERSION_17 } tasks.withType { options.encoding = "UTF-8" } repositories { mavenLocal() mavenCentral() } dependencies { implementation(project(":smithy-typescript-codegen")) }