Merge branch '2.7.x' into 3.0.x

Closes gh-37517
This commit is contained in:
Scott Frederick 2023-09-21 11:56:48 -05:00
commit e5e04d9fbc
6 changed files with 13 additions and 1 deletions

View File

@ -37,6 +37,7 @@ application {
}
bootBuildImage {
builder = "paketobuildpacks/builder-jammy-base:latest"
archiveFile = bootDistZip.archiveFile
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 {
builder = "paketobuildpacks/builder-jammy-base:latest"
environment = ['BP_NATIVE_IMAGE': 'true']
}

View File

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

View File

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

View File

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