commit | b0924cafe7397bb520f3a8be622314e6e4932513 | [log] [tgz] |
---|---|---|
author | David Ostrovsky <david@ostrovsky.org> | Tue Nov 01 08:12:59 2016 +0100 |
committer | David Ostrovsky <david.ostrovsky@gmail.com> | Thu Nov 03 15:00:04 2016 +0000 |
tree | f04464799a1a13d4559a060d7688705c475ed6cb | |
parent | 13a2fc45613e8681c83d62f10711d0e9f8f9b836 [diff] |
Buck: Remove no-op gwt_jar attribute in prebuilt_jar If there is a prebuilt jar that defines a different binary jar from the gwt jar, building a normal java binary will use the binary jar, and building a gwt binary will use the gwt jar. If a target defines them both to be the same there's no need to define the gwt jar, as it will default to being the binary jar. The actual use case where it is needed when there is an alternative GWT implementation of a Java library. Specifically, when there is one implementation that contains JSNI, and one implementation that contains an implementation that cannot be translated to JS by the GWT compiler: prebuilt_jar( name = 'guava', binary_jar = 'guava-17.0.jar', source_jar = 'guava-17.0-sources.jar', gwt_jar = 'guava-gwt-17.0.jar', visibility = [ 'PUBLIC', ], ) Change-Id: Ibbc7ea56aad6885625e652b2dedbcdfe038735d7
Gerrit is a code review and project management tool for Git based projects.
Gerrit makes reviews easier by showing changes in a side-by-side display, and allowing inline comments to be added by any reviewer.
Gerrit simplifies Git based project maintainership by permitting any authorized user to submit changes to the master Git repository, rather than requiring all approved changes to be merged in by hand by the project maintainer.
For information about how to install and use Gerrit, refer to the documentation.
Our canonical Git repository is located on googlesource.com. There is a mirror of the repository on Github.
Please report bugs on the issue tracker.
Gerrit is the work of hundreds of contributors. We appreciate your help!
Please read the contribution guidelines.
Note that we do not accept Pull Requests via the Github mirror.
The IRC channel on freenode is #gerrit. An archive is available at: echelog.com.
The Developer Mailing list is repo-discuss on Google Groups.
Gerrit is provided under the Apache License 2.0.
Install Buck and run the following:
git clone --recursive https://gerrit.googlesource.com/gerrit cd gerrit && buck build release
The instruction how to configure GerritForge/BinTray repositories is here
On Debian/Ubuntu run:
apt-get update & apt-get install gerrit=<version>-<release>
NOTE: release is a counter that starts with 1 and indicates the number of packages that have been released with the same version of the software.
On CentOS/RedHat run:
yum clean all && yum install gerrit-<version>[-<release>]
On Fedora run:
dnf clean all && dnf install gerrit-<version>[-<release>]
Docker images of Gerrit are available on DockerHub
To run a CentOS 7 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-centos7[:version]
To run a Ubuntu 15.04 based Gerrit image:
docker run -p 8080:8080 gerritforge/gerrit-ubuntu15.04[:version]
NOTE: release is optional. Last released package of the version is installed if the release number is omitted.