GoogleCloudPlatform / app-gradle-plugin

The library has moved to https://github.com/GoogleCloudPlatform/appengine-plugins/tree/main/app-gradle-plugin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get an error in Cloud Build

lutics opened this issue · comments

I need support for the following issues

With this plug-in,
./gradlew appengineDeploy

Is working on my terminal but, I get an error in Cloud Build

here is the logs

Beginning deployment of service [default]...
#============================================================#
#= Uploading 1 file to Google Cloud Storage                 =#
#============================================================#
File upload done.
Updating service [default]...
.......failed.
ERROR: (gcloud.app.deploy) Error Response: [3] The following errors occurred while copying files to App Engine:
File https://storage.googleapis.com/blahblah/a2d0fd03ad6e7c27c6ce161961028e649d19c4d5 failed with: Conflicting SHA1 sum for file. Expected "c953061a_266b3dee_2bc0df13_799620c2_249eac31" but received "a2d0fd03_ad6e7c27_c6ce1619_61028e64_9d19c4d5".

Details: [
  [
    {
      "@type": "type.googleapis.com/google.rpc.ResourceInfo",
      "description": "Conflicting SHA1 sum for file. Expected \"c953061a_266b3dee_2bc0df13_799620c2_249eac31\" but received \"a2d0fd03_ad6e7c27_c6ce1619_61028e64_9d19c4d5\".",
      "resourceName": "https://storage.googleapis.com/blahblah/a2d0fd03ad6e7c27c6ce161961028e649d19c4d5",
      "resourceType": "file"
    }
  ]
]

:appengineDeploy FAILED

here is the cloudbuild.yaml

steps:
  - id : Deploy
    name: 'gcr.io/cloud-builders/gradle'
    args: ['appengineDeploy']
    dir: 'backend'
commented
  1. What version of the appengine-gradle-plugin are you using?
  2. Does this happen repeatedly?
  3. @vilasj might be able to route any issues related to the cloud sdk/gcloud
  4. @imjasonh, I don't think this is a cloud build issue, but maybe something about the environment is weird?

The gradle builder being used doesn't have gcloud installed (GoogleCloudPlatform/cloud-builders#418), which might be causing some of this problem. That failure message is utterly baffling to me though.

@loosebazooka

  1. Here is my test Gradle file
buildscript {
    ext {
        kotlinVersion = '1.3.11'
        springBootVersion = '2.1.1.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
        classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
        classpath "com.google.cloud.tools:appengine-gradle-plugin:+"
    }
}

apply plugin: 'kotlin'
apply plugin: 'kotlin-spring'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'war'
apply plugin: "com.google.cloud.tools.appengine-standard"

group = 'GROUP'
version = '0.0.1'

compileKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}
compileTestKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation('org.springframework.boot:spring-boot-starter-actuator')
    implementation('org.springframework.boot:spring-boot-starter-web')

    implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
    implementation("org.jetbrains.kotlin:kotlin-reflect")

    implementation 'com.google.firebase:firebase-admin:6.6.0'
}

// https://github.com/GoogleCloudPlatform/app-gradle-plugin/blob/master/USER_GUIDE.md
appengine {
    tools {
        serviceAccountKeyFile = rootProject.file("[KEY FILE PATH]")
    }
    deploy {
        projectId = "[SOME PROJECT ID]"
        version = "GCLOUD_CONFIG"

        stopPreviousVersion = true
        promote = true
    }
}

sourceCompatibility = 1.8
  1. Yes, Always

and here is cloud build's full log

FETCHSOURCE
Initialized empty Git repository in /workspace/.git/
From [GIT REPO]
 * branch            3aabf59bd859b7c7990a2304d9f6d9db095cd4a2 -> FETCH_HEAD
HEAD is now at 3aabf59 21
BUILD
Already have image (with digest): gcr.io/cloud-builders/gradle
Download https://repo.maven.apache.org/maven2/com/google/cloud/tools/appengine-gradle-plugin/maven-metadata.xml
Download https://repo.maven.apache.org/maven2/com/google/cloud/tools/appengine-gradle-plugin/2.0.0-rc3/appengine-gradle-plugin-2.0.0-rc3.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-gradle-plugin/2.1.1.RELEASE/spring-boot-gradle-plugin-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-tools/2.1.1.RELEASE/spring-boot-tools-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-parent/2.1.1.RELEASE/spring-boot-parent-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-dependencies/2.1.1.RELEASE/spring-boot-dependencies-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.9.7/jackson-bom-2.9.7.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.1.1/jackson-parent-2.9.1.1.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/33/oss-parent-33.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.31.Final/netty-bom-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/7/oss-parent-7.pom
Download https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/Californium-SR3/reactor-bom-Californium-SR3.pom
Download https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-bom/2.11.1/log4j-bom-2.11.1.pom
Download https://repo.maven.apache.org/maven2/org/apache/logging/logging-parent/1/logging-parent-1.pom
Download https://repo.maven.apache.org/maven2/org/apache/apache/18/apache-18.pom
Download https://repo.maven.apache.org/maven2/org/eclipse/jetty/jetty-bom/9.4.12.v20180830/jetty-bom-9.4.12.v20180830.pom
Download https://repo.maven.apache.org/maven2/org/glassfish/jersey/jersey-bom/2.27/jersey-bom-2.27.pom
Download https://repo.maven.apache.org/maven2/net/java/jvnet-parent/4/jvnet-parent-4.pom
Download https://repo.maven.apache.org/maven2/org/junit/junit-bom/5.3.2/junit-bom-5.3.2.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-framework-bom/5.1.3.RELEASE/spring-framework-bom-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/data/spring-data-releasetrain/Lovelace-SR3/spring-data-releasetrain-Lovelace-SR3.pom
Download https://repo.maven.apache.org/maven2/org/springframework/data/build/spring-data-build/2.1.3.RELEASE/spring-data-build-2.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/integration/spring-integration-bom/5.1.1.RELEASE/spring-integration-bom-5.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/security/spring-security-bom/5.1.2.RELEASE/spring-security-bom-5.1.2.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/session/spring-session-bom/Bean-SR1/spring-session-bom-Bean-SR1.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-allopen/1.3.11/kotlin-allopen-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.11/kotlin-gradle-plugin-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.1.1.RELEASE/spring-boot-loader-tools-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.pom
Download https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/47/commons-parent-47.pom
Download https://repo.maven.apache.org/maven2/org/apache/apache/19/apache-19.pom
Download https://repo.maven.apache.org/maven2/io/spring/gradle/dependency-management-plugin/1.0.6.RELEASE/dependency-management-plugin-1.0.6.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.3.11/kotlin-gradle-plugin-api-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.11/kotlin-stdlib-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.3.11/kotlin-native-utils-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.3.11/kotlin-compiler-embeddable-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-annotation-processing-gradle/1.3.11/kotlin-annotation-processing-gradle-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.3.11/kotlin-android-extensions-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.3.11/kotlin-compiler-runner-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.3.11/kotlin-scripting-compiler-embeddable-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.11/kotlin-reflect-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.3.11/kotlin-gradle-plugin-model-1.3.11.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/tools/appengine-plugins-core/0.6.6/appengine-plugins-core-0.6.6.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.1.3.RELEASE/spring-core-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.11/kotlin-stdlib-common-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.11/kotlin-script-runtime-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1.3.11/kotlin-build-common-1.3.11.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.3.11/kotlin-daemon-client-1.3.11.pom
Download https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.pom
Download https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/25.1-jre/guava-parent-25.1-jre.pom
Download https://repo.maven.apache.org/maven2/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
Download https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.7/gson-2.7.pom
Download https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.7/gson-parent-2.7.pom
Download https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.pom
Download https://repo.maven.apache.org/maven2/org/glassfish/json/1.0.4/json-1.0.4.pom
Download https://repo.maven.apache.org/maven2/net/java/jvnet-parent/3/jvnet-parent-3.pom
Download https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.21/snakeyaml-1.21.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.1.3.RELEASE/spring-jcl-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.pom
Download https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.pom
Download https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.3/error_prone_parent-2.1.3.pom
Download https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.pom
Download https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.pom
Download https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-parent/1.14/animal-sniffer-parent-1.14.pom
Download https://repo.maven.apache.org/maven2/org/codehaus/mojo/mojo-parent/34/mojo-parent-34.pom
Download https://repo.maven.apache.org/maven2/org/codehaus/codehaus-parent/4/codehaus-parent-4.pom
Download https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-gradle-plugin/2.1.1.RELEASE/spring-boot-gradle-plugin-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-allopen/1.3.11/kotlin-allopen-1.3.11.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/tools/appengine-gradle-plugin/2.0.0-rc3/appengine-gradle-plugin-2.0.0-rc3.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-loader-tools/2.1.1.RELEASE/spring-boot-loader-tools-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/io/spring/gradle/dependency-management-plugin/1.0.6.RELEASE/dependency-management-plugin-1.0.6.RELEASE.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/tools/appengine-plugins-core/0.6.6/appengine-plugins-core-0.6.6.jar
Download https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.18/commons-compress-1.18.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-api/1.3.11/kotlin-gradle-plugin-api-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin-model/1.3.11/kotlin-gradle-plugin-model-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-native-utils/1.3.11/kotlin-native-utils-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-annotation-processing-gradle/1.3.11/kotlin-annotation-processing-gradle-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-android-extensions/1.3.11/kotlin-android-extensions-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.3.11/kotlin-compiler-embeddable-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.3.11/kotlin-reflect-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.3.11/kotlin-stdlib-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-runner/1.3.11/kotlin-compiler-runner-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-scripting-compiler-embeddable/1.3.11/kotlin-scripting-compiler-embeddable-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-core/5.1.3.RELEASE/spring-core-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.3.11/kotlin-stdlib-common-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.3.11/kotlin-script-runtime-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-build-common/1.3.11/kotlin-build-common-1.3.11.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-client/1.3.11/kotlin-daemon-client-1.3.11.jar
Download https://repo.maven.apache.org/maven2/com/google/guava/guava/25.1-jre/guava-25.1-jre.jar
Download https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.21/snakeyaml-1.21.jar
Download https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.7/gson-2.7.jar
Download https://repo.maven.apache.org/maven2/org/glassfish/javax.json/1.0.4/javax.json-1.0.4.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-jcl/5.1.3.RELEASE/spring-jcl-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/com/google/code/findbugs/jsr305/3.0.2/jsr305-3.0.2.jar
Download https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/2.0.0/checker-qual-2.0.0.jar
Download https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.3/error_prone_annotations-2.1.3.jar
Download https://repo.maven.apache.org/maven2/com/google/j2objc/j2objc-annotations/1.1/j2objc-annotations-1.1.jar
Download https://repo.maven.apache.org/maven2/org/codehaus/mojo/animal-sniffer-annotations/1.14/animal-sniffer-annotations-1.14.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-gradle-plugin/1.3.11/kotlin-gradle-plugin-1.3.11.jar
WARNING: You are a using release candidate 2.0.0-rc3. Behavior of this plugin has changed since 1.3.5. Please see release notes at: https://github.com/GoogleCloudPlatform/app-gradle-plugin.
Missing a feature? Can't get it to work?, please file a bug at: https://github.com/GoogleCloudPlatform/app-gradle-plugin/issues.
:discoverMainScriptsExtensions
:compileKotlin
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.1.1.RELEASE/spring-boot-starter-actuator-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starters/2.1.1.RELEASE/spring-boot-starters-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.11/kotlin-stdlib-jdk8-1.3.11.pom
Download https://repo.maven.apache.org/maven2/com/google/firebase/firebase-admin/6.6.0/firebase-admin-6.6.0.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.1.1.RELEASE/spring-boot-starter-web-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.1.1.RELEASE/spring-boot-starter-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.1.1/micrometer-core-1.1.1.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.1.1.RELEASE/spring-boot-actuator-autoconfigure-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.1.1.RELEASE/spring-boot-starter-json-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.13.Final/hibernate-validator-6.0.13.Final.pom
Download https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator-parent/6.0.13.Final/hibernate-validator-parent-6.0.13.Final.pom
Download https://repo.maven.apache.org/maven2/org/jboss/arquillian/arquillian-bom/1.1.11.Final/arquillian-bom-1.1.11.Final.pom
Download https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/shrinkwrap-bom/1.2.3/shrinkwrap-bom-1.2.3.pom
Download https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/resolver/shrinkwrap-resolver-bom/2.2.0/shrinkwrap-resolver-bom-2.2.0.pom
Download https://repo.maven.apache.org/maven2/org/jboss/shrinkwrap/descriptors/shrinkwrap-descriptors-bom/2.0.0-alpha-8/shrinkwrap-descriptors-bom-2.0.0-alpha-8.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-web/5.1.3.RELEASE/spring-web-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.1.3.RELEASE/spring-webmvc-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.1.1.RELEASE/spring-boot-starter-tomcat-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.11/kotlin-stdlib-jdk7-1.3.11.pom
Download https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client/1.25.0/google-api-client-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client-parent/1.25.0/google-api-client-parent-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.25.0/google-http-client-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-parent/1.25.0/google-http-client-parent-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api/api-common/1.7.0/api-common-1.7.0.pom
Download https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.11.0/google-auth-library-oauth2-http-0.11.0.pom
Download https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-parent/0.11.0/google-auth-library-parent-0.11.0.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage/1.43.0/google-cloud-storage-1.43.0.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-clients/0.61.0-alpha/google-cloud-clients-0.61.0-alpha.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-bom/0.61.0-alpha/google-cloud-bom-0.61.0-alpha.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-firestore/0.61.0-beta/google-cloud-firestore-0.61.0-beta.pom
Download https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.pom
Download https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/20.0/guava-parent-20.0.pom
Download https://repo.maven.apache.org/maven2/org/json/json/20160810/json-20160810.pom
Download https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.pom
Download https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.25/slf4j-parent-1.7.25.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.31.Final/netty-codec-http-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.31.Final/netty-parent-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.31.Final/netty-handler-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.31.Final/netty-transport-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client-gson/1.25.0/google-api-client-gson-1.25.0.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.1.1.RELEASE/spring-boot-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.1.1.RELEASE/spring-boot-starter-logging-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.pom
Download https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.1.1.RELEASE/spring-boot-autoconfigure-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.1.1.RELEASE/spring-boot-actuator-2.1.1.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-context/5.1.3.RELEASE/spring-context-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.7/jackson-datatype-jsr310-2.9.7.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.9.7/jackson-modules-java8-2.9.7.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.9.7/jackson-base-2.9.7.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.7/jackson-databind-2.9.7.pom
Download https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.pom
Download https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.7/jackson-datatype-jdk8-2.9.7.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.7/jackson-module-parameter-names-2.9.7.pom
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.13/tomcat-embed-core-9.0.13.pom
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.13/tomcat-embed-websocket-9.0.13.pom
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.13/tomcat-embed-el-9.0.13.pom
Download https://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/24/oss-parent-24.pom
Download https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.pom
Download https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/15/jboss-parent-15.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.1.3.RELEASE/spring-beans-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.1.3.RELEASE/spring-aop-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.1.3.RELEASE/spring-expression-5.1.3.RELEASE.pom
Download https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client/1.25.0/google-oauth-client-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client-parent/1.25.0/google-oauth-client-parent-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson2/1.25.0/google-http-client-jackson2-1.25.0.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.25.0/google-http-client-gson-1.25.0.pom
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.pom
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-client/4.5.6/httpcomponents-client-4.5.6.pom
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-parent/10/httpcomponents-parent-10.pom
Download https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/0.11.0/google-auth-library-credentials-0.11.0.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core/1.43.0/google-cloud-core-1.43.0.pom
Download https://repo.maven.apache.org/maven2/com/google/apis/google-api-services-storage/v1-rev135-1.24.1/google-api-services-storage-v1-rev135-1.24.1.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-http/1.43.0/google-cloud-core-http-1.43.0.pom
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-grpc/1.43.0/google-cloud-core-grpc-1.43.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-firestore-v1beta1/0.26.0/proto-google-cloud-firestore-v1beta1-0.26.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/google-api-grpc/0.26.0/google-api-grpc-0.26.0.pom
Download https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value/1.4/auto-value-1.4.pom
Download https://repo.maven.apache.org/maven2/com/google/auto/auto-parent/3/auto-parent-3.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.13.1/grpc-netty-shaded-1.13.1.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.13.1/grpc-stub-1.13.1.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-auth/1.13.1/grpc-auth-1.13.1.pom
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.15.0/opencensus-api-0.15.0.pom
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-grpc-util/0.15.0/opencensus-contrib-grpc-util-0.15.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api/gax-grpc/1.30.0/gax-grpc-1.30.0.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.31.Final/netty-codec-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.31.Final/netty-buffer-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.31.Final/netty-resolver-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.pom
Download https://repo.maven.apache.org/maven2/ch/qos/logback/logback-parent/1.2.3/logback-parent-1.2.3.pom
Download https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.pom
Download https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.11.1/log4j-to-slf4j-2.11.1.pom
Download https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j/2.11.1/log4j-2.11.1.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-parent/2.9.0/jackson-parent-2.9.0.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/oss-parent/28/oss-parent-28.pom
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.7/jackson-core-2.9.7.pom
Download https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5.pom
Download https://repo.maven.apache.org/maven2/com/google/code/gson/gson-parent/2.8.5/gson-parent-2.8.5.pom
Download https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1.pom
Download https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.6.0/protobuf-java-util-3.6.0.pom
Download https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-parent/3.6.0/protobuf-parent-3.6.0.pom
Download https://repo.maven.apache.org/maven2/com/google/google/1/google-1.pom
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/1.12.0/proto-google-common-protos-1.12.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-iam-v1/0.12.0/proto-google-iam-v1-0.12.0.pom
Download https://repo.maven.apache.org/maven2/com/google/api/gax/1.30.0/gax-1.30.0.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-appengine/1.24.1/google-http-client-appengine-1.24.1.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-parent/1.24.1/google-http-client-parent-1.24.1.pom
Download https://repo.maven.apache.org/maven2/com/google/api/gax-httpjson/0.47.0/gax-httpjson-0.47.0.pom
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.15.0/opencensus-contrib-http-util-0.15.0.pom
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson/1.24.1/google-http-client-jackson-1.24.1.pom
Download https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.6.0/protobuf-java-3.6.0.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.13.1/grpc-context-1.13.1.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.13.1/grpc-protobuf-1.13.1.pom
Download https://repo.maven.apache.org/maven2/org/threeten/threetenbp/1.3.3/threetenbp-1.3.3.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-core/maven-metadata.xml
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.13.1/grpc-core-1.13.1.pom
Download https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.31.Final/netty-common-4.1.31.Final.pom
Download https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.pom
Download https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.pom
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/tomcat-annotations-api/9.0.13/tomcat-annotations-api-9.0.13.pom
Download https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.11/jackson-core-asl-1.9.11.pom
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.13.1/grpc-protobuf-lite-1.13.1.pom
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.pom
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcomponents-core/4.4.10/httpcomponents-core-4.4.10.pom
Download https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.pom
Download https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/42/commons-parent-42.pom
Download https://repo.maven.apache.org/maven2/commons-logging/commons-logging/1.2/commons-logging-1.2.pom
Download https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/34/commons-parent-34.pom
Download https://repo.maven.apache.org/maven2/org/apache/apache/13/apache-13.pom
Download https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.pom
Download https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.1.2/error_prone_parent-2.1.2.pom
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-grpc-metrics/0.12.3/opencensus-contrib-grpc-metrics-0.12.3.pom
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-actuator/2.1.1.RELEASE/spring-boot-starter-actuator-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.3.11/kotlin-stdlib-jdk8-1.3.11.jar
Download https://repo.maven.apache.org/maven2/com/google/firebase/firebase-admin/6.6.0/firebase-admin-6.6.0.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-json/2.1.1.RELEASE/spring-boot-starter-json-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter/2.1.1.RELEASE/spring-boot-starter-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator-autoconfigure/2.1.1.RELEASE/spring-boot-actuator-autoconfigure-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.1.1/micrometer-core-1.1.1.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-tomcat/2.1.1.RELEASE/spring-boot-starter-tomcat-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/hibernate/validator/hibernate-validator/6.0.13.Final/hibernate-validator-6.0.13.Final.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-webmvc/5.1.3.RELEASE/spring-webmvc-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-web/5.1.3.RELEASE/spring-web-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.3.11/kotlin-stdlib-jdk7-1.3.11.jar
Download https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client-gson/1.25.0/google-api-client-gson-1.25.0.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-storage/1.43.0/google-cloud-storage-1.43.0.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-http/1.43.0/google-cloud-core-http-1.43.0.jar
Download https://repo.maven.apache.org/maven2/com/google/api-client/google-api-client/1.25.0/google-api-client-1.25.0.jar
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-gson/1.25.0/google-http-client-gson-1.25.0.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-firestore/0.61.0-beta/google-cloud-firestore-0.61.0-beta.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core-grpc/1.43.0/google-cloud-core-grpc-1.43.0.jar
Download https://repo.maven.apache.org/maven2/com/google/cloud/google-cloud-core/1.43.0/google-cloud-core-1.43.0.jar
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-appengine/1.24.1/google-http-client-appengine-1.24.1.jar
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson/1.24.1/google-http-client-jackson-1.24.1.jar
Download https://repo.maven.apache.org/maven2/com/google/api/gax-httpjson/0.47.0/gax-httpjson-0.47.0.jar
Download https://repo.maven.apache.org/maven2/com/google/oauth-client/google-oauth-client/1.25.0/google-oauth-client-1.25.0.jar
Download https://repo.maven.apache.org/maven2/com/google/api/gax-grpc/1.30.0/gax-grpc-1.30.0.jar
Download https://repo.maven.apache.org/maven2/com/google/api/gax/1.30.0/gax-1.30.0.jar
Download https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-oauth2-http/0.11.0/google-auth-library-oauth2-http-0.11.0.jar
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client-jackson2/1.25.0/google-http-client-jackson2-1.25.0.jar
Download https://repo.maven.apache.org/maven2/com/google/http-client/google-http-client/1.25.0/google-http-client-1.25.0.jar
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-cloud-firestore-v1beta1/0.26.0/proto-google-cloud-firestore-v1beta1-0.26.0.jar
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-iam-v1/0.12.0/proto-google-iam-v1-0.12.0.jar
Download https://repo.maven.apache.org/maven2/com/google/api/api-common/1.7.0/api-common-1.7.0.jar
Download https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java-util/3.6.0/protobuf-java-util-3.6.0.jar
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-http-util/0.15.0/opencensus-contrib-http-util-0.15.0.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf/1.13.1/grpc-protobuf-1.13.1.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-protobuf-lite/1.13.1/grpc-protobuf-lite-1.13.1.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-netty-shaded/1.13.1/grpc-netty-shaded-1.13.1.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-stub/1.13.1/grpc-stub-1.13.1.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-auth/1.13.1/grpc-auth-1.13.1.jar
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-grpc-util/0.15.0/opencensus-contrib-grpc-util-0.15.0.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-core/1.13.1/grpc-core-1.13.1.jar
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-contrib-grpc-metrics/0.12.3/opencensus-contrib-grpc-metrics-0.12.3.jar
Download https://repo.maven.apache.org/maven2/io/opencensus/opencensus-api/0.15.0/opencensus-api-0.15.0.jar
Download https://repo.maven.apache.org/maven2/com/google/guava/guava/20.0/guava-20.0.jar
Download https://repo.maven.apache.org/maven2/org/json/json/20160810/json-20160810.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-logging/2.1.1.RELEASE/spring-boot-starter-logging-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/ch/qos/logback/logback-classic/1.2.3/logback-classic-1.2.3.jar
Download https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-to-slf4j/2.11.1/log4j-to-slf4j-2.11.1.jar
Download https://repo.maven.apache.org/maven2/org/slf4j/jul-to-slf4j/1.7.25/jul-to-slf4j-1.7.25.jar
Download https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.31.Final/netty-codec-http-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.31.Final/netty-handler-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.31.Final/netty-codec-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.31.Final/netty-transport-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-autoconfigure/2.1.1.RELEASE/spring-boot-autoconfigure-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-actuator/2.1.1.RELEASE/spring-boot-actuator-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot/2.1.1.RELEASE/spring-boot-2.1.1.RELEASE.jar
Download https://repo.maven.apache.org/maven2/javax/annotation/javax.annotation-api/1.3.2/javax.annotation-api-1.3.2.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-context/5.1.3.RELEASE/spring-context-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-aop/5.1.3.RELEASE/spring-aop-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-beans/5.1.3.RELEASE/spring-beans-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/springframework/spring-expression/5.1.3.RELEASE/spring-expression-5.1.3.RELEASE.jar
Download https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/1.23/snakeyaml-1.23.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.9.7/jackson-datatype-jsr310-2.9.7.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.9.7/jackson-datatype-jdk8-2.9.7.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.9.7/jackson-module-parameter-names-2.9.7.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.9.7/jackson-databind-2.9.7.jar
Download https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.9/HdrHistogram-2.1.9.jar
Download https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-websocket/9.0.13/tomcat-embed-websocket-9.0.13.jar
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-core/9.0.13/tomcat-embed-core-9.0.13.jar
Download https://repo.maven.apache.org/maven2/org/apache/tomcat/embed/tomcat-embed-el/9.0.13/tomcat-embed-el-9.0.13.jar
Download https://repo.maven.apache.org/maven2/javax/validation/validation-api/2.0.1.Final/validation-api-2.0.1.Final.jar
Download https://repo.maven.apache.org/maven2/org/jboss/logging/jboss-logging/3.3.2.Final/jboss-logging-3.3.2.Final.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/classmate/1.4.0/classmate-1.4.0.jar
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpclient/4.5.6/httpclient-4.5.6.jar
Download https://repo.maven.apache.org/maven2/com/google/auth/google-auth-library-credentials/0.11.0/google-auth-library-credentials-0.11.0.jar
Download https://repo.maven.apache.org/maven2/com/google/apis/google-api-services-storage/v1-rev135-1.24.1/google-api-services-storage-v1-rev135-1.24.1.jar
Download https://repo.maven.apache.org/maven2/com/google/auto/value/auto-value/1.4/auto-value-1.4.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.31.Final/netty-buffer-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.31.Final/netty-resolver-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.9.0/jackson-annotations-2.9.0.jar
Download https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.9.7/jackson-core-2.9.7.jar
Download https://repo.maven.apache.org/maven2/com/google/code/gson/gson/2.8.5/gson-2.8.5.jar
Download https://repo.maven.apache.org/maven2/joda-time/joda-time/2.10.1/joda-time-2.10.1.jar
Download https://repo.maven.apache.org/maven2/com/google/api/grpc/proto-google-common-protos/1.12.0/proto-google-common-protos-1.12.0.jar
Download https://repo.maven.apache.org/maven2/com/google/protobuf/protobuf-java/3.6.0/protobuf-java-3.6.0.jar
Download https://repo.maven.apache.org/maven2/io/grpc/grpc-context/1.13.1/grpc-context-1.13.1.jar
Download https://repo.maven.apache.org/maven2/org/threeten/threetenbp/1.3.3/threetenbp-1.3.3.jar
Download https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.31.Final/netty-common-4.1.31.Final.jar
Download https://repo.maven.apache.org/maven2/ch/qos/logback/logback-core/1.2.3/logback-core-1.2.3.jar
Download https://repo.maven.apache.org/maven2/org/apache/logging/log4j/log4j-api/2.11.1/log4j-api-2.11.1.jar
Download https://repo.maven.apache.org/maven2/org/codehaus/jackson/jackson-core-asl/1.9.11/jackson-core-asl-1.9.11.jar
Download https://repo.maven.apache.org/maven2/org/apache/httpcomponents/httpcore/4.4.10/httpcore-4.4.10.jar
Download https://repo.maven.apache.org/maven2/commons-codec/commons-codec/1.11/commons-codec-1.11.jar
Download https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.1.2/error_prone_annotations-2.1.2.jar
Download https://repo.maven.apache.org/maven2/org/springframework/boot/spring-boot-starter-web/2.1.1.RELEASE/spring-boot-starter-web-2.1.1.RELEASE.jar
:compileJava NO-SOURCE
:processResources
:classes
:bootWar
:war SKIPPED
:explodeWar
:assemble
:downloadCloudSdk
Welcome to the Google Cloud SDK!
WARNING: You appear to be running this script as root. This may cause 
the installation to be inaccessible to users other than the root user.


Your current Cloud SDK version is: 228.0.0
Installing components from version: 228.0.0

+----------------------------------------------------------------------------+
|                    These components will be installed.                     |
+-----------------------------------------------------+------------+---------+
|                         Name                        |  Version   |   Size  |
+-----------------------------------------------------+------------+---------+
| BigQuery Command Line Tool                          |     2.0.39 | < 1 MiB |
| BigQuery Command Line Tool (Platform Specific)      |     2.0.34 | < 1 MiB |
| Cloud SDK Core Libraries (Platform Specific)        | 2018.09.24 | < 1 MiB |
| Cloud Storage Command Line Tool                     |       4.34 | 3.5 MiB |
| Cloud Storage Command Line Tool (Platform Specific) |       4.34 | < 1 MiB |
| Default set of gcloud commands                      |            |         |
| gcloud cli dependencies                             | 2018.08.03 | 8.6 MiB |
+-----------------------------------------------------+------------+---------+

For the latest full release notes, please visit:
  https://cloud.google.com/sdk/release_notes

#============================================================#
#= Creating update staging area                             =#
#============================================================#
#= Installing: BigQuery Command Line Tool                   =#
#============================================================#
#= Installing: BigQuery Command Line Tool (Platform Spec... =#
#============================================================#
#= Installing: Cloud SDK Core Libraries (Platform Specific) =#
#============================================================#
#= Installing: Cloud Storage Command Line Tool              =#
#============================================================#
#= Installing: Cloud Storage Command Line Tool (Platform... =#
#============================================================#
#= Installing: Default set of gcloud commands               =#
#============================================================#
#= Installing: gcloud cli dependencies                      =#
#============================================================#
#= Creating backup and activating new installation          =#
#============================================================#

Performing post processing steps...
.....................................done.

Update done!


This will install all the core command line tools necessary for working with
the Google Cloud Platform.

==> Source [/root/.cache/google-cloud-tools-java/managed-cloud-sdk/LATEST/google-cloud-sdk/completion.bash.inc] in your profile to enable shell command completion for gcloud.
==> Source [/root/.cache/google-cloud-tools-java/managed-cloud-sdk/LATEST/google-cloud-sdk/path.bash.inc] in your profile to add the Google Cloud SDK command line tools to your $PATH.

For more information on how to get started, please visit:
  https://cloud.google.com/sdk/docs/quickstarts




Your current Cloud SDK version is: 228.0.0
Installing components from version: 228.0.0

+----------------------------------------------------+
|        These components will be installed.         |
+------------------------------+---------+-----------+
|             Name             | Version |    Size   |
+------------------------------+---------+-----------+
| Cloud Datastore Emulator     |   2.0.2 |  17.7 MiB |
| gRPC python library          |         |           |
| gRPC python library          |   1.9.1 |  12.1 MiB |
| gcloud app Java Extensions   |  1.9.70 | 107.5 MiB |
| gcloud app Python Extensions |  1.9.80 |   6.2 MiB |
+------------------------------+---------+-----------+

For the latest full release notes, please visit:
  https://cloud.google.com/sdk/release_notes

#============================================================#
#= Creating update staging area                             =#
#============================================================#
#= Installing: Cloud Datastore Emulator                     =#
#============================================================#
#= Installing: gRPC python library                          =#
#============================================================#
#= Installing: gRPC python library                          =#
#============================================================#
#= Installing: gcloud app Java Extensions                   =#
#============================================================#
#= Installing: gcloud app Python Extensions                 =#
#============================================================#
#= Creating backup and activating new installation          =#
#============================================================#

Performing post processing steps...
..................done.

Update done!

:appengineStage
Dec 14, 2018 12:55:30 AM java.util.prefs.FileSystemPreferences$1 run
INFO: Created user preferences directory.
Reading application configuration data...


Beginning interaction for module default...
0% Scanning for jsp files.
2018-12-14 00:55:32.896:INFO::main: Logging initialized @300ms to org.eclipse.jetty.util.log.StdErrLog
2018-12-14 00:55:33.071:INFO:oejs.Server:main: jetty-9.4.14.v20181114; built: 2018-11-14T21:20:31.478Z; git: c4550056e785fb5665914545889f21dc136ad9e6; jvm 1.8.0_181-8u181-b13-2~deb9u1-b13
2018-12-14 00:55:37.427:INFO:oeja.AnnotationConfiguration:main: Scanning elapsed time=3565ms
2018-12-14 00:55:37.475:INFO:oejq.QuickStartDescriptorGenerator:main: Quickstart generating
2018-12-14 00:55:37.506:INFO:oejsh.ContextHandler:main: Started o.e.j.q.QuickStartWebApp@68c4039c{/,file:///workspace/backend/build/staged-app/,AVAILABLE}
2018-12-14 00:55:37.524:INFO:oejs.Server:main: Started @4929ms
2018-12-14 00:55:37.537:INFO:oejsh.ContextHandler:main: Stopped o.e.j.q.QuickStartWebApp@68c4039c{/,file:///workspace/backend/build/staged-app/,UNAVAILABLE}
0% Generated git repository information file.
Success.
Temporary staging for module default directory left in /workspace/backend/build/staged-app
:appengineDeploy
Services to deploy:

descriptor:      [/workspace/backend/build/staged-app/app.yaml]
source:          [/workspace/backend/build/staged-app]
target project:  [[SOME PROJECT ID]]
target service:  [default]
target version:  [1]
target url:      [https://[SOME PROJECT ID].appspot.com]


Beginning deployment of service [default]...
#============================================================#
#= Uploading 0 files to Google Cloud Storage                =#
#============================================================#
File upload done.
Updating service [default]...
.......failed.
ERROR: (gcloud.app.deploy) Error Response: [3] The following errors occurred while copying files to App Engine:
File https://storage.googleapis.com/staging.[SOME PROJECT ID].appspot.com/a2d0fd03ad6e7c27c6ce161961028e649d19c4d5 failed with: Conflicting SHA1 sum for file. Expected "c953061a_266b3dee_2bc0df13_799620c2_249eac31" but received "a2d0fd03_ad6e7c27_c6ce1619_61028e64_9d19c4d5".

Details: [
  [
    {
      "@type": "type.googleapis.com/google.rpc.ResourceInfo",
      "description": "Conflicting SHA1 sum for file. Expected \"c953061a_266b3dee_2bc0df13_799620c2_249eac31\" but received \"a2d0fd03_ad6e7c27_c6ce1619_61028e64_9d19c4d5\".",
      "resourceName": "https://storage.googleapis.com/staging.[SOME PROJECT ID].appspot.com/a2d0fd03ad6e7c27c6ce161961028e649d19c4d5",
      "resourceType": "file"
    }
  ]
]

:appengineDeploy FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':appengineDeploy'.
> com.google.cloud.tools.appengine.api.AppEngineException: com.google.cloud.tools.appengine.cloudsdk.process.ProcessHandlerException: com.google.cloud.tools.appengine.api.AppEngineException: Non zero exit: 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 1m 34s
8 actionable tasks: 8 executed
ERROR
ERROR: build step 0 "gcr.io/cloud-builders/gradle" failed: exit status 1

Thanks! I did recreate project and it works 😄

Some other error occurred. so I reopened this issue

I did some changes in build.gradle like this

buildscript {
    ext {
        kotlinVersion = '1.3.11'
        springBootVersion = '2.1.1.RELEASE'
    }
    repositories {
        mavenCentral()
    }
    dependencies {
        classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
        classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
        classpath("org.jetbrains.kotlin:kotlin-allopen:${kotlinVersion}")
        classpath "com.google.cloud.tools:appengine-gradle-plugin:2.0.0-rc3"
    }
}

apply plugin: 'kotlin'
apply plugin: 'kotlin-spring'
apply plugin: 'org.springframework.boot'
apply plugin: 'io.spring.dependency-management'
apply plugin: 'war'
apply plugin: "com.google.cloud.tools.appengine-standard"

group = ‘GROUP’
version = '0.0.1'

compileKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}
compileTestKotlin {
    kotlinOptions {
        freeCompilerArgs = ["-Xjsr305=strict"]
        jvmTarget = "1.8"
    }
}

repositories {
    mavenCentral()
}

dependencies {
    implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8")
    implementation("org.jetbrains.kotlin:kotlin-reflect")

    implementation('org.springframework.boot:spring-boot-starter-web')
    implementation('org.springframework.boot:spring-boot-starter-actuator')

    def retrofit_version = "2.5.0"
    implementation "com.squareup.retrofit2:retrofit:$retrofit_version"
    implementation "com.squareup.retrofit2:converter-gson:$retrofit_version"
    implementation "com.squareup.okhttp3:logging-interceptor:3.12.0"

    implementation "com.google.firebase:firebase-admin:6.6.0"
}

// https://github.com/GoogleCloudPlatform/app-gradle-plugin/blob/master/USER_GUIDE.md
appengine {
    tools {
        serviceAccountKeyFile = rootProject.file(“[FILE PATH]”)
    }
    deploy {
        projectId = "APPENGINE_CONFIG"
        version = "APPENGINE_CONFIG"

        stopPreviousVersion = true
        promote = true
    }
}

sourceCompatibility = 1.8

and it crashes

:appengineStage
Dec 19, 2018 4:39:34 AM java.util.prefs.FileSystemPreferences$1 run
INFO: Created user preferences directory.
Reading application configuration data...


Beginning interaction for module default...
0% Scanning for jsp files.
2018-12-19 04:39:36.565:INFO::main: Logging initialized @329ms to org.eclipse.jetty.util.log.StdErrLog
2018-12-19 04:39:36.737:INFO:oejs.Server:main: jetty-9.4.14.v20181114; built: 2018-11-14T21:20:31.478Z; git: c4550056e785fb5665914545889f21dc136ad9e6; jvm 1.8.0_181-8u181-b13-2~deb9u1-b13
2018-12-19 04:39:41.259:INFO:oeja.AnnotationConfiguration:main: Scanning elapsed time=3718ms
2018-12-19 04:39:41.290:INFO:oejq.QuickStartDescriptorGenerator:main: Quickstart generating
2018-12-19 04:39:41.327:INFO:oejsh.ContextHandler:main: Started o.e.j.q.QuickStartWebApp@47c62251{/,file:///workspace/backend/build/staged-app/,AVAILABLE}
2018-12-19 04:39:41.337:INFO:oejs.Server:main: Started @5103ms
2018-12-19 04:39:41.352:INFO:oejsh.ContextHandler:main: Stopped o.e.j.q.QuickStartWebApp@47c62251{/,file:///workspace/backend/build/staged-app/,UNAVAILABLE}
0% Generated git repository information file.
Success.
Temporary staging for module default directory left in /workspace/backend/build/staged-app
:appengineDeploy
Services to deploy:

descriptor: [/workspace/backend/build/staged-app/app.yaml]
source: [/workspace/backend/build/staged-app]
target project: [pjt]
target service: [default]
target version: [1]
target url: [https://pjt.appspot.com]


Beginning deployment of service [default]...
#============================================================#
#= Uploading 178 files to Google Cloud Storage =#
#============================================================#
ERROR: gcloud crashed (MultiError): One or more errors occurred:
MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jackson-annotations-2.9.0.jar. Please retry.',), <traceback object at 0x7f09fc335408>)), last_retrial=3, time_passed_ms=2694,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/grpc-auth-1.13.1.jar. Please retry.',), <traceback object at 0x7f09fc335ec8>)), last_retrial=3, time_passed_ms=2347,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/classes/codes/stable/pjt/backend/config/RetrofitConfig.class. Please retry.',), <traceback object at 0x7f09e4290388>)), last_retrial=3, time_passed_ms=2246,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-boot-actuator-2.1.1.RELEASE.jar. Please retry.',), <traceback object at 0x7f09fc31d948>)), last_retrial=3, time_passed_ms=7013,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/classes/META-INF/backend.kotlin_module. Please retry.',), <traceback object at 0x7f09fc319b08>)), last_retrial=3, time_passed_ms=2634,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/proto-google-common-protos-1.12.0.jar. Please retry.',), <traceback object at 0x7f09e44a7688>)), last_retrial=3, time_passed_ms=15326,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-context-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09fc336c48>)), last_retrial=3, time_passed_ms=13123,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/httpclient-4.5.6.jar. Please retry.',), <traceback object at 0x7f09fc120c88>)), last_retrial=3, time_passed_ms=8893,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/tomcat-embed-core-9.0.13.jar. Please retry.',), <traceback object at 0x7f09fc2dbc48>)), last_retrial=3, time_passed_ms=27284,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/log4j-api-2.11.1.jar. Please retry.',), <traceback object at 0x7f09fc309908>)), last_retrial=3, time_passed_ms=4860,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/classmate-1.4.0.jar. Please retry.',), <traceback object at 0x7f09fc074f48>)), last_retrial=3, time_passed_ms=5118,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-webmvc-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09e4319cc8>)), last_retrial=3, time_passed_ms=13808,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-boot-2.1.1.RELEASE.jar. Please retry.',), <traceback object at 0x7f09da5c56c8>)), last_retrial=3, time_passed_ms=13884,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jboss-logging-3.3.2.Final.jar. Please retry.',), <traceback object at 0x7f09da5d28c8>)), last_retrial=3, time_passed_ms=6179,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/netty-common-4.1.31.Final.jar. Please retry.',), <traceback object at 0x7f09e4222f08>)), last_retrial=3, time_passed_ms=9425,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/commons-codec-1.11.jar. Please retry.',), <traceback object at 0x7f09fc083a88>)), last_retrial=3, time_passed_ms=8112,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/threetenbp-1.3.3.jar. Please retry.',), <traceback object at 0x7f09e42226c8>)), last_retrial=3, time_passed_ms=11371,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jackson-core-2.9.7.jar. Please retry.',), <traceback object at 0x7f09fc06c048>)), last_retrial=3, time_passed_ms=7633,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/kotlin-stdlib-1.3.11.jar. Please retry.',), <traceback object at 0x7f09e47c3c08>)), last_retrial=3, time_passed_ms=18512,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/protobuf-java-3.6.0.jar. Please retry.',), <traceback object at 0x7f09fc1fa848>)), last_retrial=3, time_passed_ms=15471,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-cloud-firestore-0.61.0-beta.jar. Please retry.',), <traceback object at 0x7f09fc0c3dc8>)), last_retrial=3, time_passed_ms=7323,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/gax-1.30.0.jar. Please retry.',), <traceback object at 0x7f09da540cc8>)), last_retrial=3, time_passed_ms=7055,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/tomcat-embed-el-9.0.13.jar. Please retry.',), <traceback object at 0x7f09fc096448>)), last_retrial=3, time_passed_ms=5977,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/micrometer-core-1.1.1.jar. Please retry.',), <traceback object at 0x7f09da7c10c8>)), last_retrial=3, time_passed_ms=7517,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-http-client-1.25.0.jar. Please retry.',), <traceback object at 0x7f09fc329488>)), last_retrial=3, time_passed_ms=7494,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-expression-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09da4ca948>)), last_retrial=3, time_passed_ms=7097,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-cloud-storage-1.43.0.jar. Please retry.',), <traceback object at 0x7f09fc1cfa08>)), last_retrial=3, time_passed_ms=6744,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/proto-google-cloud-firestore-v1beta1-0.26.0.jar. Please retry.',), <traceback object at 0x7f09e44a4e08>)), last_retrial=3, time_passed_ms=11655,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/auto-value-1.4.jar. Please retry.',), <traceback object at 0x7f09da4d9388>)), last_retrial=3, time_passed_ms=16111,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/retrofit-2.5.0.jar. Please retry.',), <traceback object at 0x7f09fc31d5c8>)), last_retrial=3, time_passed_ms=4424,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/grpc-core-1.13.1.jar. Please retry.',), <traceback object at 0x7f09e47cccc8>)), last_retrial=3, time_passed_ms=11483,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/netty-handler-4.1.31.Final.jar. Please retry.',), <traceback object at 0x7f09e40f5cc8>)), last_retrial=3, time_passed_ms=7277,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/logback-classic-1.2.3.jar. Please retry.',), <traceback object at 0x7f09fc294f88>)), last_retrial=3, time_passed_ms=6000,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-http-client-jackson2-1.25.0.jar. Please retry.',), <traceback object at 0x7f09e475aa48>)), last_retrial=3, time_passed_ms=4588,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/__static__/org/springframework/boot/loader/PropertiesLauncher.class. Please retry.',), <traceback object at 0x7f09e449b2c8>)), last_retrial=3, time_passed_ms=3314,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/logback-core-1.2.3.jar. Please retry.',), <traceback object at 0x7f09fc1e2ec8>)), last_retrial=3, time_passed_ms=8224,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/classes/codes/stable/pjt/backend/BackendApplicationKt.class. Please retry.',), <traceback object at 0x7f09fc09b108>)), last_retrial=3, time_passed_ms=3279,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/guava-20.0.jar. Please retry.',), <traceback object at 0x7f09fc2d6b48>)), last_retrial=3, time_passed_ms=21346,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/tomcat-embed-websocket-9.0.13.jar. Please retry.',), <traceback object at 0x7f09e40f5308>)), last_retrial=3, time_passed_ms=6483,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jackson-datatype-jdk8-2.9.7.jar. Please retry.',), <traceback object at 0x7f09fc253c08>)), last_retrial=3, time_passed_ms=4140,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/opencensus-api-0.15.0.jar. Please retry.',), <traceback object at 0x7f09e4040bc8>)), last_retrial=3, time_passed_ms=6621,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-beans-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09da3d01c8>)), last_retrial=3, time_passed_ms=8557,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/joda-time-2.10.1.jar. Please retry.',), <traceback object at 0x7f09e4319788>)), last_retrial=3, time_passed_ms=8100,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/__static__/org/springframework/boot/loader/jar/Handler.class. Please retry.',), <traceback object at 0x7f09e4222348>)), last_retrial=3, time_passed_ms=3899,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-cloud-core-1.43.0.jar. Please retry.',), <traceback object at 0x7f09ff38a0c8>)), last_retrial=3, time_passed_ms=7114,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/META-INF/MANIFEST.MF. Please retry.',), <traceback object at 0x7f09fc1f68c8>)), last_retrial=3, time_passed_ms=2918,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/opencensus-contrib-grpc-metrics-0.12.3.jar. Please retry.',), <traceback object at 0x7f09fc278648>)), last_retrial=3, time_passed_ms=4796,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-cloud-core-http-1.43.0.jar. Please retry.',), <traceback object at 0x7f09e41f1e88>)), last_retrial=3, time_passed_ms=3716,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/kotlin-reflect-1.3.11.jar. Please retry.',), <traceback object at 0x7f09da1fbac8>)), last_retrial=3, time_passed_ms=21266,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/json-20160810.jar. Please retry.',), <traceback object at 0x7f09fc074588>)), last_retrial=3, time_passed_ms=3412,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/httpcore-4.4.10.jar. Please retry.',), <traceback object at 0x7f09da4dbec8>)), last_retrial=3, time_passed_ms=6963,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/gax-grpc-1.30.0.jar. Please retry.',), <traceback object at 0x7f09e4404b48>)), last_retrial=3, time_passed_ms=5767,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/hibernate-validator-6.0.13.Final.jar. Please retry.',), <traceback object at 0x7f09e44f52c8>)), last_retrial=3, time_passed_ms=12779,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-boot-actuator-autoconfigure-2.1.1.RELEASE.jar. Please retry.',), <traceback object at 0x7f09e421e248>)), last_retrial=3, time_passed_ms=7788,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-core-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09da597b08>)), last_retrial=3, time_passed_ms=14591,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/okhttp-3.12.0.jar. Please retry.',), <traceback object at 0x7f09da5c5a48>)), last_retrial=3, time_passed_ms=9319,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-boot-autoconfigure-2.1.1.RELEASE.jar. Please retry.',), <traceback object at 0x7f09da4e1c08>)), last_retrial=3, time_passed_ms=12525,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/okio-1.15.0.jar. Please retry.',), <traceback object at 0x7f09da7ee648>)), last_retrial=3, time_passed_ms=4796,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/netty-codec-http-4.1.31.Final.jar. Please retry.',), <traceback object at 0x7f09da3ebd48>)), last_retrial=3, time_passed_ms=9656,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-aop-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09fc2d62c8>)), last_retrial=3, time_passed_ms=7717,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/spring-web-5.1.3.RELEASE.jar. Please retry.',), <traceback object at 0x7f09da7b43c8>)), last_retrial=3, time_passed_ms=12497,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/classes/codes/stable/pjt/backend/controller/TestController.class. Please retry.',), <traceback object at 0x7f09e412c488>)), last_retrial=3, time_passed_ms=2875,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/validation-api-2.0.1.Final.jar. Please retry.',), <traceback object at 0x7f09fc024408>)), last_retrial=3, time_passed_ms=5637,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jackson-datatype-jsr310-2.9.7.jar. Please retry.',), <traceback object at 0x7f09da490808>)), last_retrial=3, time_passed_ms=5234,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/netty-codec-4.1.31.Final.jar. Please retry.',), <traceback object at 0x7f09fc33bb88>)), last_retrial=3, time_passed_ms=6762,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/gax-httpjson-0.47.0.jar. Please retry.',), <traceback object at 0x7f09fc012fc8>)), last_retrial=3, time_passed_ms=5152,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/kotlin-stdlib-common-1.3.11.jar. Please retry.',), <traceback object at 0x7f09e44f5ec8>)), last_retrial=3, time_passed_ms=4617,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/slf4j-api-1.7.25.jar. Please retry.',), <traceback object at 0x7f09e44d2dc8>)), last_retrial=3, time_passed_ms=4071,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/netty-buffer-4.1.31.Final.jar. Please retry.',), <traceback object at 0x7f09da490f48>)), last_retrial=3, time_passed_ms=4544,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jackson-core-asl-1.9.11.jar. Please retry.',), <traceback object at 0x7f09ff38a288>)), last_retrial=3, time_passed_ms=5233,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/netty-transport-4.1.31.Final.jar. Please retry.',), <traceback object at 0x7f09e41614c8>)), last_retrial=3, time_passed_ms=6115,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/jackson-databind-2.9.7.jar. Please retry.',), <traceback object at 0x7f09ffaafa88>)), last_retrial=3, time_passed_ms=6539,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/google-api-client-1.25.0.jar. Please retry.',), <traceback object at 0x7f09e4127208>)), last_retrial=3, time_passed_ms=4869,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/proto-google-iam-v1-0.12.0.jar. Please retry.',), <traceback object at 0x7f09e4290648>)), last_retrial=3, time_passed_ms=3993,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/api-common-1.7.0.jar. Please retry.',), <traceback object at 0x7f09da52c988>)), last_retrial=3, time_passed_ms=3019,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/snakeyaml-1.23.jar. Please retry.',), <traceback object at 0x7f09fc077988>)), last_retrial=3, time_passed_ms=4433,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/lib/firebase-admin-6.6.0.jar. Please retry.',), <traceback object at 0x7f09fc0772c8>)), last_retrial=3, time_passed_ms=4591,time_to_wait=0

MaxRetrialsException: last_result=(None, (<class 'googlecloudsdk.calliope.exceptions.BadFileException'>, BadFileException('Cloud storage upload failure. Uploaded file does not match local file: /workspace/backend/build/staged-app/WEB-INF/classes/codes/stable/pjt/backend/ServletInitializer.class. Please retry.',), <traceback object at 0x7f09da1cc588>)), last_retrial=3, time_passed_ms=2024,time_to_wait=0

If you would like to report this issue, please run the following command:
gcloud feedback

To check gcloud for common problems, please run the following command:
gcloud info --run-diagnostics
:appengineDeploy FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':appengineDeploy'.
> com.google.cloud.tools.appengine.api.AppEngineException: com.google.cloud.tools.appengine.cloudsdk.process.ProcessHandlerException: com.google.cloud.tools.appengine.api.AppEngineException: Non zero exit: 1

* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.

* Get more help at https://help.gradle.org

BUILD FAILED in 2m 29s
8 actionable tasks: 8 executed
ERROR
ERROR: build step 0 "gcr.io/cloud-builders/gradle" failed: exit status 1

I found it, I change app engine default service account's permission to project owner than works

sorry ;)