Skip to content

Commit

Permalink
Update cards (#939)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored Jul 31, 2023
1 parent 645976c commit a56f8cc
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions ui-pf4/src/main/webapp/src/layout/TransformationPaths.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export interface TransformationPathOption {
export const EAP7: TransformationPathOption = {
label: "Application server migration to EAP",
description:
"Upgrade to the latest Release of JBoss EAP or migrate your applications to JBoss EAP from competitors' Enterprise Application server (e.g.Oracle Weblogic Server).",
"Upgrade to the latest Release of EAP 7, or EAP 8, or migrate your applications to JBoss EAP from a competitor's Enterprise Application server.",
options: [
{
label: "JBoss EAP 7",
Expand Down Expand Up @@ -67,7 +67,7 @@ export const ORACLE_TO_OPENJDK: TransformationPathOption = {
export const OPENJDK: TransformationPathOption = {
label: "OpenJDK",
description:
"Rules to support upgrading the version of OpenJDK. Migrate to OpenJDK 11 or OpenJDK 17.",
"Rules to support upgrading the version of OpenJDK. Migrate to OpenJDK 11, OpenJDK 17 or OpenJDK 21.",
options: [
{
label: "OpenJDK 11",
Expand All @@ -79,6 +79,11 @@ export const OPENJDK: TransformationPathOption = {
value: "openjdk17",
default: true,
},
{
label: "OpenJDK 21",
value: "openjdk21",
default: false,
},
],
iconSrc: mug,
};
Expand All @@ -104,7 +109,7 @@ export const JWS6: TransformationPathOption = {
"A collection of rules to support migrating applications from JWS 5 to JWS 6",
options: "jws6",
iconSrc: appOnServer,
isNew: true,
isNew: false,
};
export const RH_RUNTIMES: TransformationPathOption = {
label: "Spring Boot on Red Hat Runtimes",
Expand Down Expand Up @@ -162,7 +167,7 @@ export const CAMEL: TransformationPathOption = {
default: version === "3.21",
})),
iconSrc: multiply,
isNew: true,
isNew: false,
};

export const DISCOVERY: TransformationPathOption = {
Expand Down

0 comments on commit a56f8cc

Please sign in to comment.