github.com/GoogleContainerTools/skaffold@v1.39.18/examples/jib-gradle/README.md (about)

     1  ### Example: Jib (Gradle)
     2  
     3  [![Open in Cloud Shell](https://gstatic.com/cloudssh/images/open-btn.svg)](https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https://github.com/GoogleContainerTools/skaffold&cloudshell_open_in_editor=README.md&cloudshell_workspace=examples/jib-gradle)
     4  
     5  [Jib](https://github.com/GoogleContainerTools/jib) is one of the supported builders in Skaffold.
     6  It builds Docker and OCI images
     7  for your Java applications and is available as plugins for Maven and Gradle.
     8  
     9  The way you configure it in `skaffold.yaml` is the following build stanza:
    10  
    11  ```yaml
    12  build:
    13       artifacts:
    14       - image: skaffold-example
    15         context: .
    16         jib: {}
    17  ```