Signed-off-by: Anatolii Bazko <abazko@redhat.com>
pull/598/head
Anatolii Bazko 2023-10-26 11:37:04 +02:00
parent d382f47b5e
commit 46378282c7
3 changed files with 6 additions and 2 deletions

View File

@ -107,6 +107,10 @@
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-auth-bitbucket</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-auth-github</artifactId>
</dependency>
<dependency>
<groupId>org.eclipse.che.core</groupId>
<artifactId>che-core-api-auth-gitlab</artifactId>

View File

@ -302,8 +302,9 @@ public class WsMasterModule extends AbstractModule {
install(new FactoryModuleBuilder().build(PassThroughProxyProvisionerFactory.class));
installDefaultSecureServerExposer(infrastructure);
install(new org.eclipse.che.security.BitbucketModule());
install(new GitLabModule());
install(new org.eclipse.che.security.oauth.GitLabModule());
install(new org.eclipse.che.security.oauth.AzureDevOpsModule());
install(new org.eclipse.che.security.oauth.GithubModule());
configureMultiUserMode(persistenceProperties, infrastructure);

View File

@ -20,7 +20,6 @@ import org.eclipse.che.inject.DynaModule;
*
* @author Sergii Kabashniuk
*/
@DynaModule
public class GithubModule extends AbstractModule {
@Override
protected void configure() {