diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt index 524ae74..3d6d19c 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/domain/DesktopService.kt @@ -92,7 +92,7 @@ fun Prov.provisionWorkplace( if (desktopType == DesktopType.IDE) { - aptInstall(JAVA_JDK) + aptInstall(JAVA) aptInstall(OPEN_VPM) aptInstall(OPENCONNECT) diff --git a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt index 86d8a39..84e0fba 100644 --- a/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt +++ b/src/main/kotlin/org/domaindrivenarchitecture/provs/desktop/infrastructure/PackageBundles.kt @@ -30,7 +30,7 @@ val OPENCONNECT = "openconnect network-manager-openconnect network-manager-openc val VPNC = "vpnc network-manager-vpnc network-manager-vpnc-gnome vpnc-scripts" -val JAVA_JDK = "openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk" +val JAVA = "openjdk-8-jdk openjdk-11-jdk openjdk-17-jdk jarwrapper" val DRAWING_TOOLS = "inkscape dia"