Skip to content

Commit

Permalink
Make plugin work on IJ 2023.2.4
Browse files Browse the repository at this point in the history
Signed-off-by: Rob Stryker <[email protected]>
  • Loading branch information
robstryker committed Nov 1, 2023
1 parent 9043e97 commit 04172cd
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ configurations {
exclude group: 'org.slf4j', module: 'slf4j-api'
}
compileOptions {
sourceCompatibility = 11
targetCompatibility = 11
sourceCompatibility = 17
targetCompatibility = 17
}

integrationTestImplementation.extendsFrom testImplementation
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
ideaVersion=IC-2021.3
ideaVersion=IC-2023.2.4
# build number ranges
# https://www.jetbrains.org/intellij/sdk/docs/basics/getting_started/build_number_ranges.html
sinceIdeaBuild=211
projectVersion=0.7.0
jetBrainsToken=invalid
jetBrainsChannel=stable
intellijPluginVersion=1.13.2
intellijPluginVersion=1.16.0
intellijCommonVersion=1.9.0
fixturesVersion=1.1.18
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
import com.redhat.devtools.intellij.rsp.ui.tree.RspTreeModel;
import org.jboss.tools.rsp.api.dao.Status;

import javax.annotation.Nullable;
import javax.swing.*;
import javax.swing.tree.TreePath;
import java.awt.*;
Expand Down Expand Up @@ -54,7 +53,6 @@ public AreYouSureDialog(boolean plural) {
setTitle(plural ? "Delete Servers?" : "Delete Server?");
}

@Nullable
@Override
protected JComponent createCenterPanel() {
JPanel dialogPanel = new JPanel(new BorderLayout());
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ protected DeployableStateDescriptor(DeployableStateWrapper element, @Nullable No
element.ds.getReference().getLabel() + " [" +
getRunStateString(element.ds.getState()) + ", " +
getPublishStateString(element.ds.getPublishState()) + "]",
IconLoader.getIcon("images/jar_obj.gif"));
IconLoader.getIcon("images/jar_obj.png"));
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,6 @@ public WinSize getWinSize() throws IOException {
return null;
}

@Override
public int getPid() {
return 0;
}
Expand Down
Binary file removed src/main/resources/images/jar_obj.gif
Binary file not shown.
Binary file added src/main/resources/images/jar_obj.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 04172cd

Please sign in to comment.