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 {
32
32
Add the following dependency:
33
33
```
34
34
dependencies {
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 '
36
36
}
37
37
```
38
38
@@ -73,7 +73,7 @@ private static RemoteRobot robot;
73
73
74
74
@BeforeAll
75
75
public static void runIdeForUiTests() {
76
- robot = UITestRunner.runIde(UITestRunner.IdeaVersion.V_2020_3 , 8580);
76
+ robot = UITestRunner.runIde(UITestRunner.IdeaVersion.COMMUNITY_V_2020_3 , 8580);
77
77
}
78
78
```
79
79
Original file line number Diff line number Diff line change 1
- projectVersion =0.0.4
1
+ projectVersion =0.0.5-SNAPSHOT
2
2
nexusUser =invalid
3
3
nexusPassword =invalid
Original file line number Diff line number Diff line change @@ -153,8 +153,11 @@ public static RemoteRobot getRemoteRobotConnection(int port) {
153
153
* Enumeration for supported versions of the IntelliJ Idea
154
154
*/
155
155
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
+
158
161
159
162
private final String ideaVersionStringRepresentation ;
160
163
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dependencies {
20
20
}
21
21
22
22
intellij {
23
- version = ' 2020.3 '
23
+ version = ideaVersion // for a full list of IntelliJ IDEA releases please see https://www.jetbrains.com/intellij-repository/releases
24
24
}
25
25
26
26
patchPluginXml {
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 {
34
34
@ BeforeAll
35
35
protected static void startIntelliJ () {
36
36
if (!intelliJHasStarted ) {
37
- remoteRobot = UITestRunner .runIde (UITestRunner .IdeaVersion .V_2020_3 , 8580 );
37
+ remoteRobot = UITestRunner .runIde (UITestRunner .IdeaVersion .COMMUNITY_V_2020_3 , 8580 );
38
38
intelliJHasStarted = true ;
39
39
Runtime .getRuntime ().addShutdownHook (new CloseIntelliJBeforeQuit ());
40
40
}
You can’t perform that action at this time.
0 commit comments