File tree Expand file tree Collapse file tree 6 files changed +11
-7
lines changed
main/java/com/redhat/devtools/intellij/commonuitest
src/test/java/com/redhat/devtools/intellij/commonuitest Expand file tree Collapse file tree 6 files changed +11
-7
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ repositories {
3232Add the following dependency:
3333```
3434dependencies {
35- compile 'com.redhat.devtools.intellij:intellij-common-ui-test-library:0.0.4 '
35+ compile 'com.redhat.devtools.intellij:intellij-common-ui-test-library:0.0.5-SNAPSHOT '
3636}
3737```
3838
@@ -73,7 +73,7 @@ private static RemoteRobot robot;
7373
7474@BeforeAll
7575public static void runIdeForUiTests() {
76- robot = UITestRunner.runIde(UITestRunner.IdeaVersion.V_2020_3 , 8580);
76+ robot = UITestRunner.runIde(UITestRunner.IdeaVersion.COMMUNITY_V_2020_3 , 8580);
7777}
7878```
7979
Original file line number Diff line number Diff line change 1- projectVersion =0.0.4
1+ projectVersion =0.0.5-SNAPSHOT
22nexusUser =invalid
33nexusPassword =invalid
Original file line number Diff line number Diff line change @@ -153,8 +153,11 @@ public static RemoteRobot getRemoteRobotConnection(int port) {
153153 * Enumeration for supported versions of the IntelliJ Idea
154154 */
155155 public enum IdeaVersion {
156- V_2020_2 ("IC-2020.2" ),
157- V_2020_3 ("IC-2020.3" );
156+ COMMUNITY_V_2020_2 ("IC-2020.2" ),
157+ COMMUNITY_V_2020_3 ("IC-2020.3" ),
158+ ULTIMATE_V_2020_2 ("IU-2020.2" ),
159+ ULTIMATE_V_2020_3 ("IU-2020.3" );
160+
158161
159162 private final String ideaVersionStringRepresentation ;
160163
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dependencies {
2020}
2121
2222intellij {
23- version = ' 2020.3 '
23+ version = ideaVersion // for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
2424}
2525
2626patchPluginXml {
Original file line number Diff line number Diff line change 1+ ideaVersion =IC-2020.3
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public class LibraryTestBase {
3434 @ BeforeAll
3535 protected static void startIntelliJ () {
3636 if (!intelliJHasStarted ) {
37- remoteRobot = UITestRunner .runIde (UITestRunner .IdeaVersion .V_2020_3 , 8580 );
37+ remoteRobot = UITestRunner .runIde (UITestRunner .IdeaVersion .COMMUNITY_V_2020_3 , 8580 );
3838 intelliJHasStarted = true ;
3939 Runtime .getRuntime ().addShutdownHook (new CloseIntelliJBeforeQuit ());
4040 }
You can’t perform that action at this time.
0 commit comments