Skip to content
OkBuck is a gradle plugin that lets developers utilize the Buck build system on a gradle project.
Java Shell Kotlin XSLT Starlark Groovy Scala
Branch: master
Clone or download

Latest commit

Latest commit db9549a Jun 8, 2020

Files

Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
.idea/codeStyles Cleanup inspections etc. (#697) Aug 21, 2018
android-lint-cli Fix argument size bug while linting (#860) Jul 12, 2019
another-app Add support for composing api deps in external_deps. (#832) Mar 27, 2019
app Run GJF on all java files (#780) Jan 2, 2019
buildSrc Publish v0.50.10 Jun 8, 2020
config
dummy-transform Move transform out of experimental and remove some dead code (#723) Sep 12, 2018
dummylibrary Format sample projects java code with gjf May 17, 2018
gradle/wrapper Upgrade Gradle to 5.2.1 (#816) Feb 13, 2019
java-app Added Visibility configuration support to OkBuck. (#708) Sep 6, 2018
kotlin-app Add `friend_paths` to kotlin rules (#821) Feb 25, 2019
libraries Populate provided deps only if the versionless artifact is not presen… Nov 8, 2019
manifest-merger-cli Run GJF on all java files (#780) Jan 2, 2019
tooling Optimize travis builds (#891) Nov 8, 2019
transform-cli Move okbuck cache to workspace (#712) Sep 9, 2018
.buckconfig Enable download.in_build buckconfig if downloadInBuck is set (#793) Jan 8, 2019
.buckjavaargs Cleanup project and dependencies (#243) Nov 13, 2016
.bucklogging.properties Cleanup project and dependencies (#243) Nov 13, 2016
.gitignore move 3rdparty deps to .okbuck/ext Sep 10, 2018
.travis.yml Optimize travis builds (#891) Nov 8, 2019
.watchmanconfig Fix watchman config default ignores. (#586) Feb 19, 2018
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md Sep 12, 2018
CONTRIBUTING.md Create CONTRIBUTING.md Sep 12, 2018
LICENSE Fix Windows build (#808) Feb 12, 2019
PULL_REQUEST_TEMPLATE.md Create PULL_REQUEST_TEMPLATE.md Sep 12, 2018
README-zh.md Publish v0.50.10 Jun 8, 2020
README.md Publish v0.50.10 Jun 8, 2020
Usage.md Fix broken buckconfig link in Usage.md (#582) Jan 31, 2018
buckw Fixup watch directories and update extension defaults to latest Sep 11, 2018
build.gradle Integration tests support (#871) Aug 22, 2019
dependencies.gradle Add support for exported with versioned deps (#894) Jan 5, 2020
gradle.properties Jetifier support (#749) Nov 5, 2018
gradlew Upgrade Gradle to 5.2.1 (#816) Feb 13, 2019
gradlew.bat Upgrade Gradle to 5.2.1 (#816) Feb 13, 2019
lint.xml
plugin Make plugin able to publish to maven local Sep 27, 2016
settings.gradle Populate provided deps only if the versionless artifact is not presen… Nov 8, 2019

README.md

OkBuck

Build Status Download

OkBuck is a gradle plugin that lets developers utilize the Buck build system on a gradle project.

Wiki, 中文版

Installation

These are needed to build with buck Installation instructions for: Android NDK, Watchman

Configuration

Set the ANDROID_NDK environment variable to point to your android ndk installation

In root project build.gradle file:

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.uber:okbuck:0.50.10'
    }
}

repositories {
    jcenter()
}

apply plugin: 'com.uber.okbuck'

After applying the plugin, the following tasks will be added to the root project

  • buckWrapper will create a buck wrapper script and various configuration files to invoke buck commands
  • okbuck will generate BUCK files

Buck Wrapper

Run the buck wrapper task

./gradlew :buckWrapper

This creates a buckw wrapper similar to the gradle wrapper

Invoking buck commands via the buck wrapper has several advantages

  • Downloads/installs/updates buck
  • Minimal overhead to decide when to run okbuck before invoking buck (using watchman)
  • Handles gracefully, the cases when okbuck task fails/is stopped abruptly

Please make sure you have watchman installed for buckw to run okbuck only when needed. A new okbuck run is typically needed when gradle configuration or Android manifest files change. If watchman is not installed, the okbuck task in always run before invoking any buck commands.

Usage

# List all buck targets
./buckw targets //...

# Build a target
./buckw build <target>

# Install an apk target
./buckw install --run <apk-target>

# Generate an Intellij project
./buckw project

See the Usage page for complete details on how to configure OkBuck and Buck.

Buck Http Cache

To speed up your builds even more, you can use an implementation of Buck's HTTP Cache API to take advantage of building once and using the same build artifacts on all machines.

Contributors

We'd love for you to contribute to our open source projects. Before we can accept your contributions, we kindly ask you to sign our Uber Contributor License Agreement.

  • If you find a bug, open an issue or submit a fix via a pull request.
  • If you have a feature request, open an issue or submit an implementation via a pull request
  • If you want to contribute, submit a pull request.

License

Copyright (c) 2016 Uber Technologies, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
You can’t perform that action at this time.