From c4a63179ecbfb9af9d23ee476ce57e22b7c1db06 Mon Sep 17 00:00:00 2001 From: Diego Molina Date: Tue, 23 Apr 2024 18:26:49 +0200 Subject: [PATCH] [build] Switching to a different command to pin maven deps --- Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Rakefile b/Rakefile index 587fdd518cd47..741b322e360d7 100644 --- a/Rakefile +++ b/Rakefile @@ -972,7 +972,7 @@ namespace :java do task :update do # Make sure things are in a good state to start with args = ['--action_env=RULES_JVM_EXTERNAL_REPIN=1'] - Bazel.execute('run', args, '@unpinned_maven//:pin') + Bazel.execute('run', args, '@maven//:pin') file_path = 'java/maven_deps.bzl' content = File.read(file_path) @@ -996,7 +996,7 @@ namespace :java do File.write(file_path, content) args = ['--action_env=RULES_JVM_EXTERNAL_REPIN=1'] - Bazel.execute('run', args, '@unpinned_maven//:pin') + Bazel.execute('run', args, '@maven//:pin') end desc 'Update Java changelog'