diff options
author | Antoine Vigneau <antoine.vigneau@sonarsource.com> | 2023-10-10 11:10:59 +0200 |
---|---|---|
committer | sonartech <sonartech@sonarsource.com> | 2023-10-20 20:02:39 +0000 |
commit | da75e87d29efe342fa2761def532f0ea94f71cd1 (patch) | |
tree | e0982e08cd9a80fd38f28d660519b284a1bba84b /server/sonar-webserver | |
parent | 104274adf1f1d70808fec00c91b338260cbf5e23 (diff) | |
download | sonarqube-da75e87d29efe342fa2761def532f0ea94f71cd1.tar.gz sonarqube-da75e87d29efe342fa2761def532f0ea94f71cd1.zip |
SONAR-20699 Infer GitHub DevOps Platform from scanner information
Diffstat (limited to 'server/sonar-webserver')
-rw-r--r-- | server/sonar-webserver/src/main/java/org/sonar/server/platform/platformlevel/PlatformLevel4.java | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/server/sonar-webserver/src/main/java/org/sonar/server/platform/platformlevel/PlatformLevel4.java b/server/sonar-webserver/src/main/java/org/sonar/server/platform/platformlevel/PlatformLevel4.java index 7345e963bf0..097e0d363d5 100644 --- a/server/sonar-webserver/src/main/java/org/sonar/server/platform/platformlevel/PlatformLevel4.java +++ b/server/sonar-webserver/src/main/java/org/sonar/server/platform/platformlevel/PlatformLevel4.java @@ -62,6 +62,8 @@ import org.sonar.server.almintegration.ws.ProjectKeyGenerator; import org.sonar.server.almintegration.ws.github.GithubProvisioningWs; import org.sonar.server.almsettings.MultipleAlmFeature; import org.sonar.server.almsettings.ws.AlmSettingsWsModule; +import org.sonar.server.almsettings.ws.DelegatingDevOpsPlatformService; +import org.sonar.server.almsettings.ws.GitHubDevOpsPlatformService; import org.sonar.server.authentication.AuthenticationModule; import org.sonar.server.authentication.DefaultAdminCredentialsVerifierImpl; import org.sonar.server.authentication.DefaultAdminCredentialsVerifierNotificationHandler; @@ -307,6 +309,7 @@ public class PlatformLevel4 extends PlatformLevel { DefaultBranchNameResolver.class, DefaultDocumentationLinkGenerator.class, DelegatingManagedServices.class, + DelegatingDevOpsPlatformService.class, // batch new BatchWsModule(), @@ -548,6 +551,7 @@ public class PlatformLevel4 extends PlatformLevel { GithubApplicationHttpClientImpl.class, GithubProvisioningConfigValidator.class, GithubProvisioningWs.class, + GitHubDevOpsPlatformService.class, BitbucketCloudRestClientConfiguration.class, BitbucketServerRestClient.class, GitlabHttpClient.class, |