commit | 5666be187ccafa49913dce6ab31b73cbd5b6d9c9 | [log] [tgz] |
---|---|---|
author | Colin Marc <colinmarc@gmail.com> | Tue May 03 15:50:01 2016 +0000 |
committer | Kristina Chodorow <kchodorow@google.com> | Tue May 03 21:31:26 2016 +0000 |
tree | 4071b98c14ecd1a4ef7de5ff5ef5965ecab8707b | |
parent | f07b76e5fc9a07cbc0b2b45d5bfe8eb4b1ec2e03 [diff] |
Add a //file target to external jar repositories Fixes https://github.com/bazelbuild/bazel/issues/990. It's sometimes useful to be able to access the file pulled down with maven_jar; for example, scala macro jars don't work with ijar, so it's necessary to pull them into the compile-time classpath unharmed. -- Change-Id: I1d9e1cb30ea6fa56c18cbfcc68ee9b203524dfd4 Reviewed-on: https://bazel-review.googlesource.com/#/c/3550 MOS_MIGRATED_REVID=121379551
{Fast, Correct} - Choose two
Bazel is a build tool that builds code quickly and reliably. It is used to build the majority of Google‘s software, and thus it has been designed to handle build problems present in Google’s development environment, including:
A massive, shared code repository, in which all software is built from source. Bazel has been built for speed, using both caching and parallelism to achieve this. Bazel is critical to Google's ability to continue to scale its software development practices as the company grows.
An emphasis on automated testing and releases. Bazel has been built for correctness and reproducibility, meaning that a build performed on a continuous build machine or in a release pipeline will generate bitwise-identical outputs to those generated on a developer's machine.
Language and platform diversity. Bazel's architecture is general enough to support many different programming languages within Google, and can be used to build both client and server software targeting multiple architectures from the same underlying codebase.
Find more background about Bazel in our FAQ.