Skip to content

Commit a52bcfe

Browse files
committed
register al lsuported jre's
1 parent 65446b8 commit a52bcfe

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

src/java/finalize/finalize.go

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -98,9 +98,12 @@ func (f *Finalizer) finalizeJRE() error {
9898
// Register the same JRE providers as in supply phase
9999
// We need to detect which one was used during supply
100100
registry.Register(jres.NewOpenJDKJRE(ctx))
101-
// Additional JRE providers:
102-
// registry.Register(jres.NewZuluJRE(ctx))
103-
// registry.Register(jres.NewGraalVMJRE(ctx))
101+
registry.Register(jres.NewZuluJRE(ctx))
102+
registry.Register(jres.NewSapMachineJRE(ctx))
103+
registry.Register(jres.NewGraalVMJRE(ctx))
104+
registry.Register(jres.NewIBMJRE(ctx))
105+
registry.Register(jres.NewOracleJRE(ctx))
106+
registry.Register(jres.NewZingJRE(ctx))
104107

105108
// Detect which JRE was installed (should match supply phase)
106109
jre, jreName, err := registry.Detect()

0 commit comments

Comments
 (0)