Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,9 @@ This is a IntelliJ plugin designed to allow you to copy your code to a server an
The logs display within IntelliJ and you can even debug the running code!

## Compatibility

This plugin works in both Community Edition and Ultimate Edition of IntelliJ IDEA.

We support any version of IntelliJ higher than v145.0 (e.g. IntelliJ IDEA 2017.2.2 is v172.*)

## Installation

The current process of installation is as follows:

1) Obtain the `intellij-remote-execute.jar` (version of your choosing)
Expand All @@ -27,7 +23,6 @@ The current process of installation is as follows:
8) IntelliJ IDEA will probably prompt you to restart, do so at your leisure :)

## Building this plugin

`./gradlew build`

You may have to set the execution permissions `gradlew` first:
Expand All @@ -37,7 +32,6 @@ You may have to set the execution permissions `gradlew` first:
Alternatively just run via your native `gradle`.

## Configuring the plugin

Once the plugin is successfully installed, you can configure it via `Preferences`.

You will find it at the bottom, under `Other Settings > Remote execution`.
Expand All @@ -49,11 +43,9 @@ There you can set:
- Java executable (the path to Java on the server)

## Invoking the remote executor

Simply right click the Java class you wish to run and

## Bugs

Note that there is a bug around not being able to trigger remote execution if you have a local execution config saved.
To fix this, you have to delete the local execution config and then invoke the remote executor.

Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
plugins {
id "org.jetbrains.intellij" version "0.2.17"
id "org.jetbrains.intellij" version "0.3.12"
}

version = System.getenv("TRAVIS_TAG")

intellij {
version '2018.1'
version '2018.3'
}
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
import org.jetbrains.annotations.Nls;
import org.jetbrains.annotations.Nullable;

import javax.swing.*;
import java.awt.*;
import javax.swing.JComponent;
import javax.swing.JLabel;
import javax.swing.JPanel;
import javax.swing.JTextField;
import java.awt.GridLayout;
import java.util.Objects;

public class RemoteExecutionSettingsDialog implements Configurable {
Expand Down