diff --git a/README.md b/README.md index 241d3a7..5cc9b48 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ -# Migration Toolkit for Runtimes (MTR) for IntelliJ +# Migration Toolkit for Applications (MTA) for IntelliJ ## Description -The IntelliJ plugin for the Migration Toolkit for Runtimes (MTR). +The IntelliJ plugin for the Migration Toolkit for Applications (MTA). -Migration Toolkit for Runtimes (MTR) (the product of the downstream project [Windup](https://github.com/windup/windup)) is a command-line Application Migration and Modernization Assessment tool. +Migration Toolkit for Applications (MTA) (the product of the downstream project [Windup](https://github.com/windup/windup)) is a command-line Application Migration and Modernization Assessment tool. ## What is Windup? Windup is an extensible and customizable rule-based tool that simplifies the migration and modernization of Java applications. diff --git a/build.gradle b/build.gradle index 8e0caaf..0b531b1 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ version projectVersion intellij { version ideaVersion - pluginName 'org.jboss.tools.intellij.mtr' + pluginName 'org.jboss.tools.intellij.mta' updateSinceUntilBuild false plugins 'java' } diff --git a/gradle.properties b/gradle.properties index 39c2d61..5c8e867 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,4 +1,4 @@ ideaVersion=2020.3 -projectVersion=1.3.0 +projectVersion=7.0.0 jetBrainsToken=invalid jetBrainsChannel=stable diff --git a/settings.gradle b/settings.gradle index 3e85973..90278a3 100644 --- a/settings.gradle +++ b/settings.gradle @@ -1,2 +1,2 @@ -rootProject.name = 'intellij-mtr' +rootProject.name = 'intellij-mta' diff --git a/src/main/java/org/jboss/tools/intellij/windup/cli/WindupConsole.java b/src/main/java/org/jboss/tools/intellij/windup/cli/WindupConsole.java index abb37d7..69bea9a 100644 --- a/src/main/java/org/jboss/tools/intellij/windup/cli/WindupConsole.java +++ b/src/main/java/org/jboss/tools/intellij/windup/cli/WindupConsole.java @@ -23,7 +23,7 @@ public class WindupConsole { public void init(Project project, OSProcessHandler handler, String commandLine) { Runnable r = () -> { ToolWindowManager manager = ToolWindowManager.getInstance(project); - String name = "Console (MTR)"; + String name = "Console (MTA)"; ToolWindow window = manager.getToolWindow(name); if (window == null) { diff --git a/src/main/java/org/jboss/tools/intellij/windup/editor/server/VertxService.java b/src/main/java/org/jboss/tools/intellij/windup/editor/server/VertxService.java index deac0b1..d2245b5 100644 --- a/src/main/java/org/jboss/tools/intellij/windup/editor/server/VertxService.java +++ b/src/main/java/org/jboss/tools/intellij/windup/editor/server/VertxService.java @@ -23,7 +23,7 @@ public class VertxService implements Disposable { - public static final String PLUGIN_ID = "org.jboss.tools.intellij.mtr"; + public static final String PLUGIN_ID = "org.jboss.tools.intellij.mta"; private Vertx vertx; private EventBus eventBus; diff --git a/src/main/resources/META-INF/plugin.xml b/src/main/resources/META-INF/plugin.xml index 602858f..b599ce3 100644 --- a/src/main/resources/META-INF/plugin.xml +++ b/src/main/resources/META-INF/plugin.xml @@ -1,5 +1,5 @@ - org.jboss.tools.intellij.mtr + org.jboss.tools.intellij.mta Migration Toolkit for Applications (MTA) by Red Hat Red-Hat @@ -7,7 +7,7 @@

Overview

The Migration Toolkit for Applications (MTA) plugin for IntelliJ Platform-based IDEs.

Provides tooling to accelerate application migration by marking migration issues in the source code, provides guidance to fix the issues, and offers automatic code replacement when possible.

-

Read more about MTR here.

+

Read more about MTA here.

]]>