Skip to content

Commit

Permalink
Remove/disable GWT-related code in Java selenium E2E tests (#13829)
Browse files Browse the repository at this point in the history
Signed-off-by: Dmytro Nochevnov <dnochevn@redhat.com>
  • Loading branch information
dmytro-ndp authored Jul 19, 2019
1 parent 36a0814 commit 41b5fb4
Show file tree
Hide file tree
Showing 281 changed files with 146 additions and 39,779 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<module>dashboard</module>
<module>workspace-loader</module>
<module>assembly</module>
<!--module>selenium</module-->
<module>selenium</module>
</modules>
<scm>
<connection>scm:git:git@github.com:eclipse/che.git</connection>
Expand Down
9 changes: 0 additions & 9 deletions selenium/che-selenium-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -107,10 +107,6 @@
<groupId>org.eclipse.che.multiuser</groupId>
<artifactId>che-multiuser-api-permission-shared</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.plugin</groupId>
<artifactId>che-plugin-github-shared</artifactId>
</dependency>
<dependency>
<groupId>org.kohsuke</groupId>
<artifactId>github-api</artifactId>
Expand Down Expand Up @@ -144,11 +140,6 @@
<artifactId>che-core-commons-inject</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.eclipse.che.plugin</groupId>
<artifactId>che-plugin-github-server</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
/*
* Copyright (c) 2012-2018 Red Hat, Inc.
* This program and the accompanying materials are made
* available under the terms of the Eclipse Public License 2.0
* which is available at https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Red Hat, Inc. - initial API and implementation
*/
package org.eclipse.che.selenium.core.client;

import org.eclipse.che.dto.shared.DTO;

@DTO
public class GitHubKey {
private int id;
private String key;
private String url;
private String title;

public int getId() {
return id;
}

public void setId(int id) {
this.id = id;
}

public String getKey() {
return key;
}

public void setKey(String key) {
this.key = key;
}

public String getUrl() {
return url;
}

public void setUrl(String url) {
this.url = url;
}

public String getTitle() {
return title;
}

public void setTitle(String title) {
this.title = title;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import org.eclipse.che.api.core.rest.HttpJsonRequestFactory;
import org.eclipse.che.api.core.rest.HttpJsonResponse;
import org.eclipse.che.dto.server.JsonStringMapImpl;
import org.eclipse.che.plugin.github.shared.GitHubKey;
import org.slf4j.Logger;

/** @author Mihail Kuznyetsov. */
Expand Down
9 changes: 0 additions & 9 deletions selenium/che-selenium-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,6 @@
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-core</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-debug-shared</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-dto</artifactId>
Expand Down Expand Up @@ -147,11 +143,6 @@
<artifactId>che-multiuser-api-permission</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.eclipse.che.plugin</groupId>
<artifactId>che-plugin-github-server</artifactId>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
Expand Down

This file was deleted.

This file was deleted.

Loading

0 comments on commit 41b5fb4

Please sign in to comment.