There are several entries that represent Temurin builds in TKG code, check that they are valid and what implications there are of having multiples (adoptopenjdk, eclipse, temurin).
String vendor = System.getProperty("java.vendor");
String vendorLC = vendor.toLowerCase();
Check java.vendor for each version of Temurin we produce to verify validity. Likely need to keep adoptopenjdk as an historic entry.
There are several entries that represent Temurin builds in TKG code, check that they are valid and what implications there are of having multiples (adoptopenjdk, eclipse, temurin).
https://github.com/adoptium/TKG/blob/master/src/org/openj9/envInfo/JavaInfo.java#L171-L174
https://github.com/adoptium/TKG/blob/master/src/org/openj9/envInfo/JavaInfo.java#L197-L198
Check java.vendor for each version of Temurin we produce to verify validity. Likely need to keep adoptopenjdk as an historic entry.