Bazel: Difference between revisions
Jump to navigation
Jump to search
(One intermediate revision by the same user not shown) | |||
Line 29: | Line 29: | ||
* [https://bazel.build/about/intro Bazel » Intro] | * [https://bazel.build/about/intro Bazel » Intro] | ||
* [https://bazel.build/docs/bazel-and-java Bazel » Java] | * [https://bazel.build/docs/bazel-and-java Bazel » Java] | ||
| valign="top" | | | valign="top" | | ||
Line 49: | Line 48: | ||
* [[Conan]] | * [[Conan]] | ||
* [[NPM]] | * [[NPM]] | ||
* [[Yarn]] | |||
* [[Ant]] | * [[Ant]] | ||
* [[Ivy]] | * [[Ivy]] |
Latest revision as of 21:00, 18 January 2024
Install
Ubuntu
sudo apt install apt-transport-https curl gnupg
curl -fsSL https://bazel.build/bazel-release.pub.gpg\
| sudo gpg --dearmor -o /usr/share/keyrings/bazel-archive-keyring.gpg
echo "deb [arch=$(dpkg --print-architecture)\
signed-by=/usr/share/keyrings/bazel-archive-keyring.gpg]\
https://storage.googleapis.com/bazel-apt stable jdk1.8" | sudo tee /etc/apt/sources.list.d/bazel.list
sudo apt update && sudo apt list --upgradeable
sudo apt upgrade && sudo apt install bazel
bazel --version
References
| ||