diff --git a/gradle/init-codeartifact.gradle b/gradle/init-codeartifact.gradle deleted file mode 100644 index 7f879e0d840..00000000000 --- a/gradle/init-codeartifact.gradle +++ /dev/null @@ -1,14 +0,0 @@ -// Add code artifact as a repository (used for CI/CD) -// `./gradlew --init-script gradle/init-codeartifact.gradle -q showRepos` -allprojects { - repositories { - maven { - name = "awsCodeArtifact" - url = project.findProperty("codeartifact.url") - credentials { - username = "aws" - password = project.findProperty("codeartifact.token") ?: System.getenv("CODEARTIFACT_TOKEN") - } - } - } -}