app-gradle-plugin/src/main/java/com/google/cloud/tools/gradle/appengine/core/DeployDispatchTask.java [35:43]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setGcloud(Gcloud gcloud) {
    this.gcloud = gcloud;
  }

  /** Task entrypoint : deploy dispatch.yaml. */
  @TaskAction
  public void deployAction() throws AppEngineException {
    gcloud
        .newDeployment(CloudSdkOperations.getDefaultHandler(getLogger()))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



app-gradle-plugin/src/main/java/com/google/cloud/tools/gradle/appengine/core/DeployQueueTask.java [34:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public void setGcloud(Gcloud gcloud) {
    this.gcloud = gcloud;
  }

  /** Task entrypoint : deploy queue.yaml. */
  @TaskAction
  public void deployAction() throws AppEngineException {
    gcloud
        .newDeployment(CloudSdkOperations.getDefaultHandler(getLogger()))
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



