Skip to content

Commit

Permalink
Fix for jib build error in e2e test sample apps (#600)
Browse files Browse the repository at this point in the history
  • Loading branch information
PaurushGarg authored Nov 15, 2023
1 parent 5753165 commit 862695e
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ dependencies {
implementation("org.springframework.boot:spring-boot-starter-web")
implementation("org.springframework.boot:spring-boot-starter-logging")
}

tasks {
named("jib") {
enabled = false
}
}
jib {
to {
image = "<ECR_IMAGE_LINK>:<TAG>"
Expand Down
6 changes: 5 additions & 1 deletion testing/sample-apps/springboot/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,11 @@ dependencies {
implementation("software.amazon.awssdk:s3")
implementation("software.amazon.awssdk:sts")
}

tasks {
named("jib") {
enabled = false
}
}
jib {
to {
image = "<ECR_IMAGE_LINK>:<TAG>"
Expand Down

0 comments on commit 862695e

Please sign in to comment.