Skip to content

Commit 862695e

Browse files
authored
Fix for jib build error in e2e test sample apps (#600)
1 parent 5753165 commit 862695e

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

testing/sample-apps/springboot-remote-service/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,11 @@ dependencies {
3434
implementation("org.springframework.boot:spring-boot-starter-web")
3535
implementation("org.springframework.boot:spring-boot-starter-logging")
3636
}
37-
37+
tasks {
38+
named("jib") {
39+
enabled = false
40+
}
41+
}
3842
jib {
3943
to {
4044
image = "<ECR_IMAGE_LINK>:<TAG>"

testing/sample-apps/springboot/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,11 @@ dependencies {
3838
implementation("software.amazon.awssdk:s3")
3939
implementation("software.amazon.awssdk:sts")
4040
}
41-
41+
tasks {
42+
named("jib") {
43+
enabled = false
44+
}
45+
}
4246
jib {
4347
to {
4448
image = "<ECR_IMAGE_LINK>:<TAG>"

0 commit comments

Comments
 (0)