Skip to content

Commit

Permalink
refactor: stabilized GradleNotificationListener to support for Intell…
Browse files Browse the repository at this point in the history
…iJ 2024.2+
  • Loading branch information
wglanzer committed Oct 23, 2024
1 parent 06b4394 commit 4fd5ed1
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## [Unreleased]

### Fixed

- Refactored GradleNotificationListener to stabilize support for IntelliJ 2024.2+

## [1.3.2] - 2024-03-29

### Added
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ pluginRepositoryUrl = https://github.com/conceptivesolutions/quarkus-intellij-pl
pluginVersion=1.3.2

# Supported build number ranges and IntelliJ Platform versions -> https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html
pluginSinceBuild=231.8109.175
pluginSinceBuild=242.*
pluginUntilBuild =

# IntelliJ Platform Properties -> https://plugins.jetbrains.com/docs/intellij/tools-gradle-intellij-plugin.html#configuration-intellij-extension
platformType = IC
platformVersion=231.8109.175
platformVersion=2024.2

# Plugin Dependencies -> https://plugins.jetbrains.com/docs/intellij/plugin-dependencies.html
# Example: platformPlugins = com.intellij.java, com.jetbrains.php:203.4449.22
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ public class GradleNotificationListener extends ExternalSystemTaskNotificationLi
.addNotificationListener(new GradleNotificationListener());
}

public GradleNotificationListener()
{
super(null);
}

@Override
public void onTaskOutput(@NotNull ExternalSystemTaskId id, @NotNull String text, boolean stdOut)
{
Expand Down

0 comments on commit 4fd5ed1

Please sign in to comment.