From 9835d4dbe03a264bf3edf7cd5556e297351917b3 Mon Sep 17 00:00:00 2001 From: luiseufrasio Date: Sat, 11 Mar 2023 15:47:04 -0300 Subject: [PATCH 01/13] FISH-6772 : menu & handler created --- .../plugin.properties | 3 ++ .../plugin.xml | 28 ++++++++++-- .../tools/server/handlers/MigrateHandler.java | 44 +++++++++++++++++++ 3 files changed, 71 insertions(+), 4 deletions(-) create mode 100644 bundles/fish.payara.eclipse.tools.server/src/fish/payara/eclipse/tools/server/handlers/MigrateHandler.java diff --git a/bundles/fish.payara.eclipse.tools.server/plugin.properties b/bundles/fish.payara.eclipse.tools.server/plugin.properties index 6fe5d789..3a44d82d 100644 --- a/bundles/fish.payara.eclipse.tools.server/plugin.properties +++ b/bundles/fish.payara.eclipse.tools.server/plugin.properties @@ -71,6 +71,9 @@ menu.openserverhome=Server Home Directory menu.opendomainhome=Domain Directory menu.payaratopmenu=Payara +menu.migrate=Migrate Project +menu.convert=Convert to Jakarta EE 10 + diff --git a/bundles/fish.payara.eclipse.tools.server/plugin.xml b/bundles/fish.payara.eclipse.tools.server/plugin.xml index d448a513..c079a514 100644 --- a/bundles/fish.payara.eclipse.tools.server/plugin.xml +++ b/bundles/fish.payara.eclipse.tools.server/plugin.xml @@ -922,6 +922,12 @@ id="fish.payara.eclipse.tools.server.commands.OpenDomainHomeCommand" name="OpenDomainHomeCommand"> + + @@ -976,6 +982,11 @@ + + + @@ -1020,10 +1031,19 @@ + + + + + + + + + + + + - - - From cd338422cedc3778539efed020881764ebc1ebc6 Mon Sep 17 00:00:00 2001 From: luiseufrasio Date: Wed, 29 Mar 2023 08:03:13 -0300 Subject: [PATCH 13/13] FISH-6772 : copyrights added --- .../eclipse/tools/server/handlers/MigrateHandler.java | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/bundles/fish.payara.eclipse.tools.server/src/fish/payara/eclipse/tools/server/handlers/MigrateHandler.java b/bundles/fish.payara.eclipse.tools.server/src/fish/payara/eclipse/tools/server/handlers/MigrateHandler.java index 4527a7c5..c093ee9e 100644 --- a/bundles/fish.payara.eclipse.tools.server/src/fish/payara/eclipse/tools/server/handlers/MigrateHandler.java +++ b/bundles/fish.payara.eclipse.tools.server/src/fish/payara/eclipse/tools/server/handlers/MigrateHandler.java @@ -1,3 +1,12 @@ +/****************************************************************************** + * Copyright (c) 2023 Payara Foundation + * All rights reserved. This program and the accompanying materials + * are made available under the terms of the Eclipse Public License v2.0 + * which accompanies this distribution, and is available at + * http://www.eclipse.org/legal/epl-v20.html + * SPDX-License-Identifier: EPL-2.0 + ******************************************************************************/ + package fish.payara.eclipse.tools.server.handlers; import java.io.BufferedReader;