We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65446b8 commit a52bcfeCopy full SHA for a52bcfe
1 file changed
src/java/finalize/finalize.go
@@ -98,9 +98,12 @@ func (f *Finalizer) finalizeJRE() error {
98
// Register the same JRE providers as in supply phase
99
// We need to detect which one was used during supply
100
registry.Register(jres.NewOpenJDKJRE(ctx))
101
- // Additional JRE providers:
102
- // registry.Register(jres.NewZuluJRE(ctx))
103
- // registry.Register(jres.NewGraalVMJRE(ctx))
+ registry.Register(jres.NewZuluJRE(ctx))
+ registry.Register(jres.NewSapMachineJRE(ctx))
+ registry.Register(jres.NewGraalVMJRE(ctx))
104
+ registry.Register(jres.NewIBMJRE(ctx))
105
+ registry.Register(jres.NewOracleJRE(ctx))
106
+ registry.Register(jres.NewZingJRE(ctx))
107
108
// Detect which JRE was installed (should match supply phase)
109
jre, jreName, err := registry.Detect()
0 commit comments