Merge branch '3.0.x' into 3.1.x

Closes gh-37518
This commit is contained in:
Scott Frederick 2023-09-21 12:14:20 -05:00
commit 63a891790c
6 changed files with 13 additions and 1 deletions

View File

@ -37,6 +37,7 @@ application {
} }
bootBuildImage { bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
archiveFile = bootDistZip.archiveFile archiveFile = bootDistZip.archiveFile
environment = ['BP_JVM_VERSION': project.targetCompatibility.getMajorVersion()] environment = ['BP_JVM_VERSION': project.targetCompatibility.getMajorVersion()]
} }

View File

@ -32,3 +32,7 @@ bootWar {
) )
} }
} }
bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
}

View File

@ -34,5 +34,6 @@ bootJar {
} }
bootBuildImage { bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
environment = ['BP_NATIVE_IMAGE': 'true'] environment = ['BP_NATIVE_IMAGE': 'true']
} }

View File

@ -37,6 +37,7 @@ application {
} }
bootBuildImage { bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
archiveFile = distZip.archiveFile archiveFile = distZip.archiveFile
environment = ['BP_JVM_VERSION': project.targetCompatibility.getMajorVersion()] environment = ['BP_JVM_VERSION': project.targetCompatibility.getMajorVersion()]
} }

View File

@ -30,6 +30,7 @@ war {
} }
bootBuildImage { bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
archiveFile = war.archiveFile archiveFile = war.archiveFile
environment = ['BP_JVM_VERSION': project.targetCompatibility.getMajorVersion(), 'BP_TOMCAT_VERSION': '10.*'] environment = ['BP_JVM_VERSION': project.targetCompatibility.getMajorVersion(), 'BP_TOMCAT_VERSION': '10.*']
} }

View File

@ -29,4 +29,8 @@ bootJar {
'Implementation-Title': "Paketo Test" 'Implementation-Title': "Paketo Test"
) )
} }
} }
bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
}