Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WINDUP-3943] - JBoss Web Server 6 #933

Merged
merged 2 commits into from
Jul 12, 2023
Merged
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
13 changes: 12 additions & 1 deletion ui-pf4/src/main/webapp/src/layout/TransformationPaths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,14 @@ export const JAKARTA9: TransformationPathOption = {
options: "jakarta-ee",
iconSrc: migration,
};
export const JWS6: TransformationPathOption = {
label: "JBoss Web Server 6",
description:
"A collection of rules to to support migrating applications from JWS 5 to JWS 6",
options: "jws6",
iconSrc: appOnServer,
isNew: true,
};
export const RH_RUNTIMES: TransformationPathOption = {
label: "Spring Boot on Red Hat Runtimes",
description:
Expand Down Expand Up @@ -154,6 +162,7 @@ export const CAMEL: TransformationPathOption = {
default: version === "3.21",
})),
iconSrc: multiply,
isNew: true,
};

export const DISCOVERY: TransformationPathOption = {
Expand All @@ -162,7 +171,7 @@ export const DISCOVERY: TransformationPathOption = {
"It runs an analysis to just discover the technologies and frameworks used within the application(s).",
options: "discovery",
iconSrc: search,
isNew: true,
isNew: false,
};

export const DEFAULT_TRANSFORMATION_PATHS = [
Expand All @@ -173,6 +182,7 @@ export const DEFAULT_TRANSFORMATION_PATHS = [
OPENJDK,
LINUX,
JAKARTA9,
JWS6,
RH_RUNTIMES,
OPEN_LIBERTY,
AZURE,
Expand All @@ -188,6 +198,7 @@ export const MTA_MTR_TRANSFORMATION_PATHS = [
OPENJDK,
LINUX,
JAKARTA9,
JWS6,
RH_RUNTIMES,
OPEN_LIBERTY,
{
Expand Down