Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public void init() {
fillJavaSEVersion(data, SupportedServer.TOMEE, JavaSEVersion.SE8, null, null); // Supported for all MPVersions

fillJavaSEVersion(data, SupportedServer.HELIDON, JavaSEVersion.SE8, null, MicroProfileVersion.MP30); // Supported until MP 3.2
fillJavaSEVersion(data, SupportedServer.HELIDON, JavaSEVersion.SE11, MicroProfileVersion.MP32, null); // Supported from MP 3.2
fillJavaSEVersion(data, SupportedServer.HELIDON, JavaSEVersion.SE11, MicroProfileVersion.MP32, MicroProfileVersion.MP33);
fillJavaSEVersion(data, SupportedServer.HELIDON, JavaSEVersion.SE17, MicroProfileVersion.MP50, null);

}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2017-2021 Contributors to the Eclipse Foundation
* Copyright (c) 2017-2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -106,7 +106,7 @@ public enum SupportedServer {
, false) // GradleSupport
, HELIDON("helidon", "Helidon",
Arrays.asList(MicroProfileVersion.MP12, MicroProfileVersion.MP22, MicroProfileVersion.MP30
, MicroProfileVersion.MP32, MicroProfileVersion.MP33)
, MicroProfileVersion.MP32, MicroProfileVersion.MP33, MicroProfileVersion.MP50)
, "%s.jar" //jarFileName
, "" //jarParameters // Done by secondary/helidon/microprofile-config.properties
, "8080" //portServiceA
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2019-2021 Contributors to the Eclipse Foundation
* Copyright (c) 2019-2023 Contributors to the Eclipse Foundation
*
* See the NOTICE file(s) distributed with this work for additional
* information regarding copyright ownership.
Expand Down Expand Up @@ -123,8 +123,12 @@ public void adaptMavenModel(Model pomFile, JessieModel model, boolean mainProjec

case NONE:
break;
case MP50:
helidonVersion = "3.1.0";
mpVersion = "5.0";
break;
case MP33:
helidonVersion = "2.4.2";
helidonVersion = "2.5.5";
mpVersion = "3.3";
break;
case MP32:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,8 @@ public enum JavaSEVersion implements ComboBoxItem {
// @formatter:off
NONE(null, ""),
SE8("1.8", "Java 8"),
SE11("11", "Java 11");
SE11("11", "Java 11"),
SE17("17", "Java 17");
// @formatter:on

private String code;
Expand Down