From f0a769cd0cd3d1ec2c341773fad34b5955045e98 Mon Sep 17 00:00:00 2001 From: Lawrence Qiu Date: Fri, 2 Dec 2022 14:53:49 -0500 Subject: [PATCH] chore: Update README about maven migration (#1913) * chore: Update README about maven migration * chore: Update gradle references to maven in CONTRIBUTING.md * chore: Update CONTRIBUTING.md * chore: Update README.md --- CONTRIBUTING.md | 8 +------- README.md | 7 +++++++ 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 2ab6d62b1..f39ea3e17 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -24,13 +24,7 @@ use Github pull requests for this purpose. To build GAX: ```sh -./gradlew build -``` - -To install GAX into the local maven repository: - -```sh -./gradlew publishToMavenLocal +mvn clean install ``` ### The small print diff --git a/README.md b/README.md index 92eb4b47c..a0d1aa77a 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,13 @@ a high risk of diamond dependency problems, because google-cloud-java uses beta library which can change in breaking ways between versions. See [VERSIONING](#versioning) for more information. +> For new and existing Developers/ Contributors: +> +> In December 2022, gax-java's build tool has been migrated from gradle to maven. +> Gradle related files are no longer being maintained and will be eventually removed. +> +> The artifact coordinates in Maven Central (`{{ group_id }}:{{ artifact_id }}`) remain the same. + Quickstart ----------