Skip to content

Commit

Permalink
Version change and Update Name
Browse files Browse the repository at this point in the history
  • Loading branch information
hhpatel14 committed Mar 4, 2024
1 parent 91e9d44 commit eb6090c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
# Migration Toolkit for Runtimes (MTR) for IntelliJ
# Migration Toolkit for Applications (MTA) for IntelliJ


## Description

The IntelliJ plugin for the <b>Migration Toolkit for Runtimes</b> (MTR).
The IntelliJ plugin for the <b>Migration Toolkit for Applications</b> (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.
Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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'
}
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
ideaVersion=2020.3
projectVersion=1.3.0
projectVersion=7.0.0
jetBrainsToken=invalid
jetBrainsChannel=stable
2 changes: 1 addition & 1 deletion settings.gradle
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
rootProject.name = 'intellij-mtr'
rootProject.name = 'intellij-mta'

Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions src/main/resources/META-INF/plugin.xml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<idea-plugin>
<id>org.jboss.tools.intellij.mtr</id>
<id>org.jboss.tools.intellij.mta</id>
<name>Migration Toolkit for Applications (MTA) by Red Hat</name>
<vendor email="[email protected]" url="http://www.redhat.com">Red-Hat</vendor>

<description><![CDATA[
<h2>Overview</h2>
<p>The Migration Toolkit for Applications (MTA) plugin for IntelliJ Platform-based IDEs.</p>
<p>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.</p>
<p>Read more about MTR <a href="https://developers.redhat.com/products/mtr/download">here</a>.</p>
<p>Read more about MTA <a href="https://developers.redhat.com/products/mtr/download">here</a>.</p>
]]></description>
<!-- https://access.redhat.com/documentation/en-us/migration_toolkit_for_runtimes/1.0/html/intellij_idea_plugin_guide/index -->
<!-- https://access.redhat.com/documentation/en-us/migration_toolkit_for_applications/6.1/html/intellij_idea_plugin_guide/index -->
Expand Down

0 comments on commit eb6090c

Please sign in to comment.