├── .commitlintrc.yml ├── .detekt.license.template ├── .detekt.yml ├── .git-blame-ignore-revs ├── .gitattributes ├── .github ├── CODEOWNERS ├── actions │ └── free-disk-space │ │ └── action.yml ├── ort │ └── config.yml └── workflows │ ├── build-and-test.yml │ ├── check-issue-links.yml │ ├── docker-build.yml │ ├── ort.yml │ ├── publish-website.yml │ ├── release.yml │ ├── static-analysis.yml │ └── website-test.yml ├── .gitignore ├── .idea ├── copyright │ ├── Apache_2_0_ORT_Server.xml │ └── profiles_settings.xml ├── icon.png └── icon_dark.png ├── .mailmap ├── .ort.yml ├── .run ├── Advisor Worker.run.xml ├── Analyzer Worker.run.xml ├── Compose Latest.run.xml ├── Config Worker.run.xml ├── Core.run.xml ├── Evaluator Worker.run.xml ├── Notifier Worker.run.xml ├── Orchestrator.run.xml ├── Reporter Worker.run.xml ├── Run ORT Server (minikube).run.xml ├── Run ORT Server.run.xml ├── Scanner Worker.run.xml └── osc --version [jvm].run.xml ├── LICENSE ├── LICENSES ├── Apache-2.0.txt ├── CC-BY-3.0.txt ├── CC-BY-ND-4.0.txt └── MIT.txt ├── NOTICE ├── README.md ├── REUSE.toml ├── api └── v1 │ ├── client │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ ├── Exceptions.kt │ │ │ ├── HttpClientUtils.kt │ │ │ ├── OrtServerClient.kt │ │ │ ├── OrtServerClientConfig.kt │ │ │ ├── api │ │ │ ├── AuthenticationApi.kt │ │ │ ├── RepositoriesApi.kt │ │ │ ├── RunsApi.kt │ │ │ └── VersionsApi.kt │ │ │ └── auth │ │ │ ├── AuthService.kt │ │ │ └── TokenInfo.kt │ │ └── jvmTest │ │ └── kotlin │ │ ├── AuthServiceTest.kt │ │ ├── HttpClientUtilsTest.kt │ │ ├── RepositoriesApiTest.kt │ │ ├── RunsApiTest.kt │ │ └── TestUtils.kt │ ├── mapping │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── ApiMappings.kt │ └── model │ ├── build.gradle.kts │ └── src │ ├── commonMain │ └── kotlin │ │ ├── AdvisorDetails.kt │ │ ├── AdvisorJob.kt │ │ ├── AnalyzerJob.kt │ │ ├── ContentManagementSection.kt │ │ ├── EcosystemStats.kt │ │ ├── EnvironmentConfig.kt │ │ ├── EnvironmentVariableDeclaration.kt │ │ ├── EvaluatorJob.kt │ │ ├── FilterOperatorAndValue.kt │ │ ├── Identifier.kt │ │ ├── Issue.kt │ │ ├── IssueResolution.kt │ │ ├── JobConfigurations.kt │ │ ├── JobStatus.kt │ │ ├── Licenses.kt │ │ ├── LogLevel.kt │ │ ├── LogSource.kt │ │ ├── NotifierJob.kt │ │ ├── OidcConfig.kt │ │ ├── Options.kt │ │ ├── Organization.kt │ │ ├── OrganizationVulnerability.kt │ │ ├── OrtRun.kt │ │ ├── OrtRunStatistics.kt │ │ ├── OrtRunSummary.kt │ │ ├── Package.kt │ │ ├── PackageCurationData.kt │ │ ├── PackageManagerConfiguration.kt │ │ ├── PluginConfig.kt │ │ ├── ProcessedDeclaredLicense.kt │ │ ├── Product.kt │ │ ├── ProductVulnerability.kt │ │ ├── Project.kt │ │ ├── ProviderPluginConfiguration.kt │ │ ├── RemoteArtifact.kt │ │ ├── ReporterJob.kt │ │ ├── Repository.kt │ │ ├── RuleViolation.kt │ │ ├── RuleViolationResolution.kt │ │ ├── ScannerJob.kt │ │ ├── Severity.kt │ │ ├── ShortestDependencyPath.kt │ │ ├── SourceCodeOrigin.kt │ │ ├── User.kt │ │ ├── UserDisplayName.kt │ │ ├── VcsInfo.kt │ │ ├── VcsInfoCurationData.kt │ │ ├── Vulnerability.kt │ │ ├── VulnerabilityForRunsFilters.kt │ │ ├── VulnerabilityRating.kt │ │ ├── VulnerabilityReference.kt │ │ ├── VulnerabilityResolution.kt │ │ ├── VulnerabilityWithDetails.kt │ │ └── validation │ │ └── ValidationHelper.kt │ └── jvmTest │ └── kotlin │ └── RepositoryTest.kt ├── cli ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ ├── AuthCommand.kt │ │ ├── ContextStorage.kt │ │ ├── DownloadCommand.kt │ │ ├── Extensions.kt │ │ ├── InfoCommand.kt │ │ ├── LoginCommand.kt │ │ ├── LogoutCommand.kt │ │ ├── LogsCommand.kt │ │ ├── OrtServerMain.kt │ │ ├── ReportsCommand.kt │ │ ├── RunsCommand.kt │ │ ├── StartCommand.kt │ │ ├── model │ │ ├── AuthenticationStorage.kt │ │ ├── Exceptions.kt │ │ └── printables │ │ │ ├── CliPrintable.kt │ │ │ ├── MessagePrintable.kt │ │ │ └── OrtRunPrintable.kt │ │ └── utils │ │ ├── ConfigDirHelper.kt │ │ ├── FileHelpers.kt │ │ ├── OrtServerClientUtils.kt │ │ └── PrintHelper.kt │ ├── jvmMain │ └── kotlin │ │ └── utils │ │ ├── ConfigDirHelper.jvm.kt │ │ └── FileHelpers.jvm.kt │ ├── jvmTest │ └── kotlin │ │ ├── AuthLoginCommandTest.kt │ │ ├── AuthLogoutCommandTest.kt │ │ ├── AuthenticationStorageTest.kt │ │ ├── ExtensionsTest.kt │ │ ├── InfoCommandTest.kt │ │ ├── LogsCommandTest.kt │ │ ├── ReportsCommandTest.kt │ │ └── StartCommandTest.kt │ ├── linuxMain │ └── kotlin │ │ └── utils │ │ ├── ConfigDirHelper.linux.kt │ │ └── FileHelpers.linux.kt │ ├── macosMain │ └── kotlin │ │ └── utils │ │ ├── ConfigDirHelper.macos.kt │ │ └── FileHelpers.macos.kt │ └── mingwMain │ └── kotlin │ └── utils │ ├── ConfigDirHelper.mingw.kt │ └── FileHelpers.mingw.kt ├── clients └── keycloak │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ ├── ClientHelper.kt │ │ ├── DefaultKeycloakClient.kt │ │ ├── Group.kt │ │ ├── GroupCount.kt │ │ ├── GroupId.kt │ │ ├── GroupName.kt │ │ ├── KeycloakClient.kt │ │ ├── KeycloakClientConfiguration.kt │ │ ├── KeycloakClientException.kt │ │ ├── Role.kt │ │ ├── RoleId.kt │ │ ├── RoleIdHolder.kt │ │ ├── RoleName.kt │ │ ├── User.kt │ │ ├── UserCredentials.kt │ │ ├── UserId.kt │ │ ├── UserName.kt │ │ └── internal │ │ ├── Client.kt │ │ ├── Credential.kt │ │ ├── Extensions.kt │ │ ├── GroupRequest.kt │ │ ├── RoleRequest.kt │ │ ├── TokenInfo.kt │ │ └── UserRequest.kt │ ├── test │ └── kotlin │ │ ├── AbstractKeycloakClientTest.kt │ │ ├── DefaultKeycloakClientTest.kt │ │ ├── KeycloakTestClientTest.kt │ │ └── KeycloakTestData.kt │ └── testFixtures │ └── kotlin │ ├── Extensions.kt │ ├── KeycloakTestClient.kt │ ├── KeycloakTestExtension.kt │ └── TestRealm.kt ├── components ├── admin-config │ ├── api-model │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── Config.kt │ └── backend │ │ ├── build.gradle.kts │ │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── ConfigTable.kt │ │ ├── routes │ │ └── kotlin │ │ │ ├── Routing.kt │ │ │ └── routes │ │ │ ├── GetConfigByKey.kt │ │ │ └── InsertOrUpdateConfig.kt │ │ └── test │ │ └── kotlin │ │ ├── AdminConfigIntegrationTest.kt │ │ └── routes │ │ ├── AdminConfigAuthorizationTest.kt │ │ ├── GetConfigByKeyIntegrationTest.kt │ │ └── InsertOrUpdateConfigIntegrationTest.kt ├── authorization-keycloak │ ├── api-model │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ └── Roles.kt │ └── backend │ │ ├── build.gradle.kts │ │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── Authentication.kt │ │ │ ├── AuthorizationException.kt │ │ │ ├── Extensions.kt │ │ │ ├── Mappings.kt │ │ │ ├── OrtPrincipal.kt │ │ │ ├── migration │ │ │ └── RolesToDbMigration.kt │ │ │ ├── permissions │ │ │ ├── OrganizationPermission.kt │ │ │ ├── ProductPermission.kt │ │ │ └── RepositoryPermission.kt │ │ │ ├── roles │ │ │ ├── OrganizationRole.kt │ │ │ ├── ProductRole.kt │ │ │ ├── RepositoryRole.kt │ │ │ ├── Role.kt │ │ │ └── Superuser.kt │ │ │ └── service │ │ │ ├── AuthorizationService.kt │ │ │ ├── KeycloakAuthorizationService.kt │ │ │ └── UserService.kt │ │ └── test │ │ └── kotlin │ │ ├── AuthenticationTest.kt │ │ ├── OrtPrincipalTest.kt │ │ ├── migration │ │ └── RolesToDbMigrationTest.kt │ │ └── service │ │ ├── KeycloakAuthorizationServiceTest.kt │ │ └── UserServiceTest.kt ├── authorization │ ├── api-model │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ ├── Roles.kt │ │ │ └── UserInfo.kt │ └── backend │ │ ├── build.gradle.kts │ │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── db │ │ │ └── RoleAssignmentsTable.kt │ │ │ ├── rights │ │ │ ├── EffectiveRole.kt │ │ │ ├── HierarchyPermissions.kt │ │ │ ├── OrganizationPermission.kt │ │ │ ├── OrganizationRole.kt │ │ │ ├── ProductPermission.kt │ │ │ ├── ProductRole.kt │ │ │ ├── RepositoryPermission.kt │ │ │ ├── RepositoryRole.kt │ │ │ ├── Role.kt │ │ │ └── RoleInfo.kt │ │ │ ├── routes │ │ │ ├── AuthorizationChecker.kt │ │ │ ├── AuthorizedRoutes.kt │ │ │ ├── Mappings.kt │ │ │ └── OrtServerPrincipal.kt │ │ │ └── service │ │ │ ├── AuthorizationService.kt │ │ │ ├── DbAuthorizationService.kt │ │ │ ├── InvalidHierarchyIdException.kt │ │ │ ├── KeycloakUserService.kt │ │ │ └── UserService.kt │ │ ├── routes │ │ └── kotlin │ │ │ └── routes │ │ │ ├── Routing.kt │ │ │ └── userinfo │ │ │ ├── GetSuperuser.kt │ │ │ └── GetUserInfo.kt │ │ └── test │ │ └── kotlin │ │ ├── db │ │ └── RoleAssignmentsTableTest.kt │ │ ├── rights │ │ ├── HierarchyPermissionsTest.kt │ │ └── RolesTest.kt │ │ ├── routes │ │ ├── AuthorizedRoutesTest.kt │ │ ├── OrtServerPrincipalTest.kt │ │ └── userinfo │ │ │ ├── GetSuperuserTest.kt │ │ │ └── GetUserInfoTest.kt │ │ └── service │ │ ├── DbAuthorizationServiceTest.kt │ │ └── KeycloakUserServiceTest.kt ├── infrastructure-services │ ├── api-model │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ ├── PatchInfrastructureService.kt │ │ │ └── PostInfrastructureService.kt │ └── backend │ │ ├── build.gradle.kts │ │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── InfrastructureServiceDeclarationsRunsTable.kt │ │ │ ├── InfrastructureServiceDeclarationsTable.kt │ │ │ ├── InfrastructureServiceService.kt │ │ │ └── InfrastructureServicesTable.kt │ │ ├── routes │ │ └── kotlin │ │ │ ├── Routing.kt │ │ │ ├── Validation.kt │ │ │ └── routes │ │ │ ├── organization │ │ │ ├── DeleteOrganizationInfrastructureService.kt │ │ │ ├── GetOrganizationInfrastructureService.kt │ │ │ ├── GetOrganizationInfrastructureServices.kt │ │ │ ├── PatchOrganizationInfrastructureService.kt │ │ │ └── PostOrganizationInfrastructureService.kt │ │ │ ├── product │ │ │ ├── DeleteProductInfrastructureService.kt │ │ │ ├── GetProductInfrastructureService.kt │ │ │ ├── GetProductInfrastructureServices.kt │ │ │ ├── PatchProductInfrastructureService.kt │ │ │ └── PostProductInfrastructureService.kt │ │ │ └── repository │ │ │ ├── DeleteRepositoryInfrastructureService.kt │ │ │ ├── GetRepositoryInfrastructureService.kt │ │ │ ├── GetRepositoryInfrastructureServices.kt │ │ │ ├── PatchRepositoryInfrastructureService.kt │ │ │ └── PostRepositoryInfrastructureService.kt │ │ └── test │ │ └── kotlin │ │ ├── InfrastructureServiceServiceIntegrationTest.kt │ │ ├── InfrastructureServicesIntegrationTest.kt │ │ └── routes │ │ ├── InfrastructureServicesAuthorizationTest.kt │ │ ├── organization │ │ ├── DeleteOrganizationInfrastructureServiceIntegrationTest.kt │ │ ├── GetOrganizationInfrastructureServiceIntegrationTest.kt │ │ ├── GetOrganizationInfrastructureServicesIntegrationTest.kt │ │ ├── PatchOrganizationInfrastructureServiceIntegrationTest.kt │ │ └── PostOrganizationInfrastructureServiceIntegrationTest.kt │ │ ├── product │ │ ├── DeleteProductInfrastructureServiceIntegrationTest.kt │ │ ├── GetProductInfrastructureServiceIntegrationTest.kt │ │ ├── GetProductInfrastructureServicesIntegrationTest.kt │ │ ├── PatchProductInfrastructureServiceIntegrationTest.kt │ │ └── PostProductInfrastructureServiceIntegrationTest.kt │ │ └── repository │ │ ├── DeleteRepositoryInfrastructureServiceIntegrationTest.kt │ │ ├── GetRepositoryInfrastructureServiceIntegrationTest.kt │ │ ├── GetRepositoryInfrastructureServicesIntegrationTest.kt │ │ ├── PatchRepositoryInfrastructureServiceIntegrationTest.kt │ │ └── PostRepositoryInfrastructureServiceIntegrationTest.kt ├── plugin-manager │ ├── api-model │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── commonMain │ │ │ └── kotlin │ │ │ ├── PluginDescriptor.kt │ │ │ ├── PluginTemplate.kt │ │ │ └── PreconfiguredPluginDescriptor.kt │ └── backend │ │ ├── build.gradle.kts │ │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── Extensions.kt │ │ │ ├── Mappings.kt │ │ │ ├── Plugin.kt │ │ │ ├── PluginEvent.kt │ │ │ ├── PluginEventStore.kt │ │ │ ├── PluginService.kt │ │ │ ├── PluginTemplateEvent.kt │ │ │ ├── PluginTemplateEventStore.kt │ │ │ ├── PluginTemplateService.kt │ │ │ ├── PluginTemplateState.kt │ │ │ ├── Utils.kt │ │ │ └── queries │ │ │ ├── GetPluginTemplateForOrganizationQuery.kt │ │ │ ├── GetPluginTemplateQuery.kt │ │ │ └── GetPluginTemplatesQuery.kt │ │ ├── routes │ │ └── kotlin │ │ │ ├── Routing.kt │ │ │ └── routes │ │ │ ├── AddTemplateToOrganization.kt │ │ │ ├── CreateTemplate.kt │ │ │ ├── DeleteTemplate.kt │ │ │ ├── DisableGlobalTemplate.kt │ │ │ ├── DisablePlugin.kt │ │ │ ├── EnableGlobalTemplate.kt │ │ │ ├── EnablePlugin.kt │ │ │ ├── GetInstalledPlugins.kt │ │ │ ├── GetPluginsForRepository.kt │ │ │ ├── GetTemplate.kt │ │ │ ├── GetTemplates.kt │ │ │ ├── RemoveTemplateFromOrganization.kt │ │ │ └── UpdateTemplateOptions.kt │ │ └── test │ │ └── kotlin │ │ ├── PluginManagerIntegrationTest.kt │ │ ├── PluginServiceTest.kt │ │ ├── UtilsTest.kt │ │ └── routes │ │ ├── AddTemplateToOrganizationIntegrationTest.kt │ │ ├── CreateTemplateIntegrationTest.kt │ │ ├── DeleteTemplateIntegrationTest.kt │ │ ├── DisableGlobalTemplateIntegrationTest.kt │ │ ├── DisablePluginIntegrationTest.kt │ │ ├── EnableGlobalTemplateIntegrationTest.kt │ │ ├── EnablePluginIntegrationTest.kt │ │ ├── GetInstalledPluginsIntegrationTest.kt │ │ ├── GetPluginsForRepositoryIntegrationTest.kt │ │ ├── GetTemplateIntegrationTest.kt │ │ ├── GetTemplatesIntegrationTest.kt │ │ ├── PluginManagerAuthorizationTest.kt │ │ ├── RemoveTemplateFromOrganizationIntegrationTest.kt │ │ └── UpdateTemplateOptionsIntegrationTest.kt └── secrets │ ├── api-model │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ └── Secret.kt │ └── backend │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ └── SecretService.kt │ ├── routes │ └── kotlin │ │ ├── Mappings.kt │ │ ├── Routing.kt │ │ ├── Validation.kt │ │ └── routes │ │ ├── organization │ │ ├── GetOrganizationSecret.kt │ │ ├── GetOrganizationSecrets.kt │ │ ├── PatchOrganizationSecret.kt │ │ └── PostOrganizationSecret.kt │ │ ├── product │ │ ├── GetProductSecret.kt │ │ ├── GetProductSecrets.kt │ │ ├── PatchProductSecret.kt │ │ └── PostProductSecret.kt │ │ └── repository │ │ ├── GetAvailableRepositorySecrets.kt │ │ ├── GetRepositorySecret.kt │ │ ├── GetRepositorySecrets.kt │ │ ├── PatchRepositorySecret.kt │ │ └── PostRepositorySecret.kt │ └── test │ └── kotlin │ ├── SecretServiceTest.kt │ ├── SecretsIntegrationTest.kt │ └── routes │ ├── SecretsAuthorizationTest.kt │ ├── Utils.kt │ ├── organization │ ├── GetOrganizationSecretIntegrationTest.kt │ ├── GetOrganizationSecretsIntegrationTest.kt │ ├── PatchOrganizationSecretIntegrationTest.kt │ └── PostOrganizationSecretIntegrationTest.kt │ ├── product │ ├── GetProductSecretIntegrationTest.kt │ ├── GetProductSecretsIntegrationTest.kt │ ├── PatchProductSecretIntegrationTest.kt │ └── PostProductSecretIntegrationTest.kt │ └── repository │ ├── GetAvailableRepositorySecretsIntegrationTest.kt │ ├── GetRepositorySecretIntegrationTest.kt │ ├── GetRepositorySecretsIntegrationTest.kt │ ├── PatchRepositorySecretIntegrationTest.kt │ └── PostRepositorySecretIntegrationTest.kt ├── compositions └── secrets-routes │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ ├── Routing.kt │ │ └── routes │ │ ├── DeleteOrganizationSecret.kt │ │ ├── DeleteProductSecret.kt │ │ └── DeleteRepositorySecret.kt │ └── test │ └── kotlin │ ├── SecretsRoutesAuthorizationTest.kt │ ├── SecretsRoutesIntegrationTest.kt │ └── routes │ ├── DeleteOrganizationSecretIntegrationTest.kt │ ├── DeleteProductSecretIntegrationTest.kt │ └── DeleteRepositorySecretIntegrationTest.kt ├── config ├── README.md ├── build.gradle.kts ├── git │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── GitConfigFileProvider.kt │ │ │ └── GitConfigFileProviderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.config.ConfigFileProviderFactory │ │ └── test │ │ └── kotlin │ │ ├── GitConfigFileProviderFactoryTest.kt │ │ └── GitConfigFileProviderTest.kt ├── github │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── GitHubConfigCache.kt │ │ │ ├── GitHubConfigFileCache.kt │ │ │ ├── GitHubConfigFileProvider.kt │ │ │ ├── GitHubConfigFileProviderFactory.kt │ │ │ └── GitHubConfigNoCache.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.config.ConfigFileProviderFactory │ │ └── test │ │ └── kotlin │ │ ├── GitHubConfigFileCacheTest.kt │ │ ├── GitHubConfigFileProviderFactoryTest.kt │ │ ├── GitHubConfigFileProviderTest.kt │ │ └── GitHubConfigNoCacheTest.kt ├── local │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── LocalConfigFileProvider.kt │ │ │ └── LocalConfigFileProviderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.config.ConfigFileProviderFactory │ │ └── test │ │ └── kotlin │ │ ├── LocalConfigFileProviderFactoryTest.kt │ │ └── LocalConfigFileProviderTest.kt ├── secret-file │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── ConfigSecretFileProvider.kt │ │ │ └── ConfigSecretFileProviderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.config.ConfigSecretProviderFactory │ │ └── test │ │ └── kotlin │ │ ├── ConfigSecretFileProviderFactoryTest.kt │ │ └── ConfigSecretFileProviderTest.kt └── spi │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ ├── ConfigFileProvider.kt │ │ ├── ConfigFileProviderFactory.kt │ │ ├── ConfigManager.kt │ │ ├── ConfigSecretProvider.kt │ │ ├── ConfigSecretProviderFactory.kt │ │ ├── Context.kt │ │ └── Path.kt │ ├── test │ ├── kotlin │ │ └── ConfigManagerTest.kt │ └── resources │ │ └── config │ │ ├── root.txt │ │ └── sub │ │ ├── sub1.txt │ │ └── sub2.txt │ └── testFixtures │ ├── kotlin │ ├── ConfigFileProviderFactoryForTesting.kt │ └── ConfigSecretProviderFactoryForTesting.kt │ └── resources │ ├── META-INF │ └── services │ │ ├── org.eclipse.apoapsis.ortserver.config.ConfigFileProviderFactory │ │ └── org.eclipse.apoapsis.ortserver.config.ConfigSecretProviderFactory │ └── config-files │ └── test.txt ├── core ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ ├── Application.kt │ │ ├── api │ │ │ ├── AdminRoute.kt │ │ │ ├── AuthenticationException.kt │ │ │ ├── AuthenticationRoute.kt │ │ │ ├── DownloadsRoute.kt │ │ │ ├── Health.kt │ │ │ ├── Liveness.kt │ │ │ ├── OrganizationsRoute.kt │ │ │ ├── ProductsRoute.kt │ │ │ ├── RepositoriesRoute.kt │ │ │ ├── RunsRoute.kt │ │ │ ├── UserWithGroupsHelper.kt │ │ │ └── VersionsRoute.kt │ │ ├── apiDocs │ │ │ ├── AdminDocs.kt │ │ │ ├── Authentication.kt │ │ │ ├── Constants.kt │ │ │ ├── DownloadsDocs.kt │ │ │ ├── HealthDocs.kt │ │ │ ├── OrganizationsDocs.kt │ │ │ ├── ProductsDocs.kt │ │ │ ├── RepositoriesDocs.kt │ │ │ ├── RunsDocs.kt │ │ │ └── VersionsDocs.kt │ │ ├── di │ │ │ └── Module.kt │ │ ├── plugins │ │ │ ├── HTTP.kt │ │ │ ├── Koin.kt │ │ │ ├── Lifecycle.kt │ │ │ ├── Metrics.kt │ │ │ ├── Monitoring.kt │ │ │ ├── OpenApi.kt │ │ │ ├── Routing.kt │ │ │ ├── Serialization.kt │ │ │ ├── StatusPages.kt │ │ │ └── Validation.kt │ │ ├── services │ │ │ └── OrchestratorService.kt │ │ └── utils │ │ │ ├── Extensions.kt │ │ │ └── JobMetrics.kt │ └── resources │ │ ├── application.conf │ │ └── logback.xml │ └── test │ ├── kotlin │ ├── ApplicationTest.kt │ ├── Extensions.kt │ ├── IntegrationTestData.kt │ ├── api │ │ ├── AbstractIntegrationTest.kt │ │ ├── AdminRouteIntegrationTest.kt │ │ ├── AuthenticationRouteIntegrationTest.kt │ │ ├── DownloadsRouteIntegrationTest.kt │ │ ├── ErrorsIntegrationTest.kt │ │ ├── HealthIntegrationTest.kt │ │ ├── OpenApiIntegrationTest.kt │ │ ├── OrganizationsRouteIntegrationTest.kt │ │ ├── ProductsRouteIntegrationTest.kt │ │ ├── RepositoriesRouteIntegrationTest.kt │ │ ├── RunsRouteIntegrationTest.kt │ │ ├── UserWithGroupsHelperTest.kt │ │ └── VersionsIntegrationTest.kt │ ├── auth │ │ └── AuthenticationIntegrationTest.kt │ ├── testutils │ │ ├── AuthenticationTestHelper.kt │ │ └── OrtServerApplicationHelper.kt │ └── utils │ │ ├── ExtensionsTest.kt │ │ └── GenerateOpenApiSpec.kt │ └── resources │ ├── application-test-auth.conf │ └── application-test.conf ├── dao ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ ├── DataSourceConfig.kt │ │ ├── Database.kt │ │ ├── Exceptions.kt │ │ ├── Query.kt │ │ ├── SqlQueryTraceLogger.kt │ │ ├── queries │ │ │ ├── analyzer │ │ │ │ ├── GetAnalyzerConfigurationForAnalyzerRunQuery.kt │ │ │ │ ├── GetAnalyzerRunQuery.kt │ │ │ │ ├── GetOrtRunIdForAnalyzerJobQuery.kt │ │ │ │ ├── GetPackagesForAnalyzerRunQuery.kt │ │ │ │ └── GetProjectsForAnalyzerRunQuery.kt │ │ │ ├── environment │ │ │ │ └── GetEnvironmentQuery.kt │ │ │ └── ortrun │ │ │ │ └── GetIssuesForOrtRunQuery.kt │ │ ├── repositories │ │ │ ├── advisorjob │ │ │ │ ├── AdvisorJobsTable.kt │ │ │ │ └── DaoAdvisorJobRepository.kt │ │ │ ├── advisorrun │ │ │ │ ├── AdvisorConfigurationOptionsTable.kt │ │ │ │ ├── AdvisorConfigurationSecretsTable.kt │ │ │ │ ├── AdvisorConfigurationsOptionsTable.kt │ │ │ │ ├── AdvisorConfigurationsSecretsTable.kt │ │ │ │ ├── AdvisorConfigurationsTable.kt │ │ │ │ ├── AdvisorResultsDefectsTable.kt │ │ │ │ ├── AdvisorResultsTable.kt │ │ │ │ ├── AdvisorResultsVulnerabilitiesTable.kt │ │ │ │ ├── AdvisorRunsIdentifiersTable.kt │ │ │ │ ├── AdvisorRunsTable.kt │ │ │ │ ├── DaoAdvisorRunRepository.kt │ │ │ │ ├── DefectLabelsTable.kt │ │ │ │ ├── DefectsTable.kt │ │ │ │ ├── VulnerabilitiesTable.kt │ │ │ │ └── VulnerabilityReferencesTable.kt │ │ │ ├── analyzerjob │ │ │ │ ├── AnalyzerJobsTable.kt │ │ │ │ └── DaoAnalyzerJobRepository.kt │ │ │ ├── analyzerrun │ │ │ │ ├── AnalyzerConfigurationsPackageManagerConfigurationsTable.kt │ │ │ │ ├── AnalyzerConfigurationsTable.kt │ │ │ │ ├── AnalyzerRunsTable.kt │ │ │ │ ├── AuthorsTable.kt │ │ │ │ ├── DaoAnalyzerRunRepository.kt │ │ │ │ ├── MappedDeclaredLicensesTable.kt │ │ │ │ ├── PackageManagerConfigurationOptionsTable.kt │ │ │ │ ├── PackageManagerConfigurationsTable.kt │ │ │ │ ├── PackagesAnalyzerRunsTable.kt │ │ │ │ ├── PackagesAuthorsTable.kt │ │ │ │ ├── PackagesDeclaredLicensesTable.kt │ │ │ │ ├── PackagesTable.kt │ │ │ │ ├── ProcessedDeclaredLicensesMappedDeclaredLicensesTable.kt │ │ │ │ ├── ProcessedDeclaredLicensesTable.kt │ │ │ │ ├── ProcessedDeclaredLicensesUnmappedDeclaredLicensesTable.kt │ │ │ │ ├── ProjectScopesTable.kt │ │ │ │ ├── ProjectsAnalyzerRunsTable.kt │ │ │ │ ├── ProjectsAuthorsTable.kt │ │ │ │ ├── ProjectsDeclaredLicensesTable.kt │ │ │ │ ├── ProjectsTable.kt │ │ │ │ ├── ShortestDependencyPathsTable.kt │ │ │ │ └── UnmappedDeclaredLicensesTable.kt │ │ │ ├── contentSection │ │ │ │ └── ContentManagementSectionTable.kt │ │ │ ├── evaluatorjob │ │ │ │ ├── DaoEvaluatorJobRepository.kt │ │ │ │ └── EvaluatorJobsTable.kt │ │ │ ├── evaluatorrun │ │ │ │ ├── DaoEvaluatorRunRepository.kt │ │ │ │ ├── EvaluatorRunsRuleViolationsTable.kt │ │ │ │ ├── EvaluatorRunsTable.kt │ │ │ │ └── RuleViolationsTable.kt │ │ │ ├── notifierjob │ │ │ │ ├── DaoNotifierJobRepository.kt │ │ │ │ └── NotifierJobsTable.kt │ │ │ ├── notifierrun │ │ │ │ ├── DaoNotifierRunRepository.kt │ │ │ │ └── NotifierRunsTable.kt │ │ │ ├── organization │ │ │ │ ├── DaoOrganizationRepository.kt │ │ │ │ └── OrganizationsTable.kt │ │ │ ├── ortrun │ │ │ │ ├── DaoOrtRunRepository.kt │ │ │ │ ├── LabelsTable.kt │ │ │ │ ├── OrtRunsLabelsTable.kt │ │ │ │ └── OrtRunsTable.kt │ │ │ ├── product │ │ │ │ ├── DaoProductRepository.kt │ │ │ │ └── ProductsTable.kt │ │ │ ├── reporterjob │ │ │ │ ├── DaoReporterJobRepository.kt │ │ │ │ └── ReporterJobsTable.kt │ │ │ ├── reporterrun │ │ │ │ ├── DaoReporterRunRepository.kt │ │ │ │ ├── ReporterRunsReportsTable.kt │ │ │ │ ├── ReporterRunsTable.kt │ │ │ │ └── ReportsTable.kt │ │ │ ├── repository │ │ │ │ ├── DaoRepositoryRepository.kt │ │ │ │ └── RepositoriesTable.kt │ │ │ ├── repositoryconfiguration │ │ │ │ ├── DaoRepositoryConfigurationRepository.kt │ │ │ │ ├── DeclaredLicenseMappingsTable.kt │ │ │ │ ├── IssueResolutionsTable.kt │ │ │ │ ├── LicenseFindingCurationsTable.kt │ │ │ │ ├── PackageConfigurationsLicenseFindingCurationsTable.kt │ │ │ │ ├── PackageConfigurationsPathExcludesTable.kt │ │ │ │ ├── PackageConfigurationsTable.kt │ │ │ │ ├── PackageCurationDataAuthors.kt │ │ │ │ ├── PackageCurationDataDeclaredLicenseMappingsTable.kt │ │ │ │ ├── PackageCurationDataLabelsTable.kt │ │ │ │ ├── PackageCurationDataTable.kt │ │ │ │ ├── PackageCurationsTable.kt │ │ │ │ ├── PackageLabelsTable.kt │ │ │ │ ├── PackageLicenseChoicesSpdxLicenseChoicesTable.kt │ │ │ │ ├── PackageLicenseChoicesTable.kt │ │ │ │ ├── PathExcludesTable.kt │ │ │ │ ├── PathIncludesTable.kt │ │ │ │ ├── ProvenanceSnippetChoicesChoicesTable.kt │ │ │ │ ├── ProvenanceSnippetChoicesTable.kt │ │ │ │ ├── RepositoryAnalyzerConfigurationsPackageManagerConfigurationsTable.kt │ │ │ │ ├── RepositoryAnalyzerConfigurationsTable.kt │ │ │ │ ├── RepositoryConfigurationsIssueResolutionsTable.kt │ │ │ │ ├── RepositoryConfigurationsLicenseFindingCurationsTable.kt │ │ │ │ ├── RepositoryConfigurationsPackageConfigurationsTable.kt │ │ │ │ ├── RepositoryConfigurationsPackageCurationsTable.kt │ │ │ │ ├── RepositoryConfigurationsPackageLicenseChoicesTable.kt │ │ │ │ ├── RepositoryConfigurationsPathExcludes.kt │ │ │ │ ├── RepositoryConfigurationsPathIncludes.kt │ │ │ │ ├── RepositoryConfigurationsProvenanceSnippetChoicesTable.kt │ │ │ │ ├── RepositoryConfigurationsRuleViolationResolutionsTable.kt │ │ │ │ ├── RepositoryConfigurationsScopeExcludesTable.kt │ │ │ │ ├── RepositoryConfigurationsSpdxLicenseChoicesTable.kt │ │ │ │ ├── RepositoryConfigurationsTable.kt │ │ │ │ ├── RepositoryConfigurationsVulnerabilityResolutionsTable.kt │ │ │ │ ├── RuleViolationResolutionsTable.kt │ │ │ │ ├── ScopeExcludesTable.kt │ │ │ │ ├── SnippetChoicesTable.kt │ │ │ │ ├── SpdxLicenseChoicesTable.kt │ │ │ │ ├── VcsInfoCurationDataTable.kt │ │ │ │ ├── VcsMatchersTable.kt │ │ │ │ └── VulnerabilityResolutionsTable.kt │ │ │ ├── resolvedconfiguration │ │ │ │ ├── DaoResolvedConfigurationRepository.kt │ │ │ │ ├── PackageCurationProviderConfigsTable.kt │ │ │ │ ├── ResolvedConfigurationsIssueResolutionsTable.kt │ │ │ │ ├── ResolvedConfigurationsPackageConfigurationsTable.kt │ │ │ │ ├── ResolvedConfigurationsRuleViolationResolutionsTable.kt │ │ │ │ ├── ResolvedConfigurationsTable.kt │ │ │ │ ├── ResolvedConfigurationsVulnerabilityResolutionsTable.kt │ │ │ │ ├── ResolvedPackageCurationProvidersTable.kt │ │ │ │ └── ResolvedPackageCurationsTable.kt │ │ │ ├── scannerjob │ │ │ │ ├── DaoScannerJobRepository.kt │ │ │ │ └── ScannerJobsTable.kt │ │ │ ├── scannerrun │ │ │ │ ├── DaoScannerRunRepository.kt │ │ │ │ ├── DetectedLicenseMappingsTable.kt │ │ │ │ ├── ScannerConfigurationOptionsTable.kt │ │ │ │ ├── ScannerConfigurationSecretsTable.kt │ │ │ │ ├── ScannerConfigurationsDetectedLicenseMappingsTable.kt │ │ │ │ ├── ScannerConfigurationsOptionsTable.kt │ │ │ │ ├── ScannerConfigurationsSecretsTable.kt │ │ │ │ ├── ScannerConfigurationsTable.kt │ │ │ │ ├── ScannerRunsPackageProvenancesTable.kt │ │ │ │ ├── ScannerRunsScanResultsTable.kt │ │ │ │ ├── ScannerRunsScannersTable.kt │ │ │ │ └── ScannerRunsTable.kt │ │ │ ├── secret │ │ │ │ ├── DaoSecretRepository.kt │ │ │ │ └── SecretsTable.kt │ │ │ └── userDisplayName │ │ │ │ └── UserDisplayNamesTable.kt │ │ ├── tables │ │ │ ├── CopyrightFindingsTable.kt │ │ │ ├── LicenseFindingsTable.kt │ │ │ ├── NestedProvenanceSubRepositoriesTable.kt │ │ │ ├── NestedProvenancesTable.kt │ │ │ ├── NestedRepositoriesTable.kt │ │ │ ├── PackageProvenancesTable.kt │ │ │ ├── ScanResultsTable.kt │ │ │ ├── ScanSummariesIssuesTable.kt │ │ │ ├── ScanSummariesTable.kt │ │ │ ├── SnippetFindingsSnippetsTable.kt │ │ │ ├── SnippetFindingsTable.kt │ │ │ ├── SnippetsTable.kt │ │ │ └── shared │ │ │ │ ├── DeclaredLicensesTable.kt │ │ │ │ ├── EnvironmentsTable.kt │ │ │ │ ├── EnvironmentsVariablesTable.kt │ │ │ │ ├── IdentifiersIssuesTable.kt │ │ │ │ ├── IdentifiersTable.kt │ │ │ │ ├── IssuesTable.kt │ │ │ │ ├── OrtRunsIssuesTable.kt │ │ │ │ ├── RemoteArtifactsTable.kt │ │ │ │ ├── VariablesTable.kt │ │ │ │ └── VcsInfoTable.kt │ │ └── utils │ │ │ ├── ArrayAggUtils.kt │ │ │ ├── DigestFunction.kt │ │ │ ├── Extensions.kt │ │ │ ├── JsonHashFunction.kt │ │ │ ├── JsonbSupport.kt │ │ │ ├── SortableEntityClass.kt │ │ │ └── SortableTable.kt │ └── resources │ │ ├── application.conf │ │ └── db │ │ └── migration │ │ ├── V100__addContentManagementSections.sql │ │ ├── V101__addRepositoryDescription.sql │ │ ├── V102__pluginEvents.sql │ │ ├── V103__pluginsReadModel.sql │ │ ├── V104__configTable.sql │ │ ├── V105__addNestedProvenancesConfiguration.sql │ │ ├── V106__addMissingSnippetFKIndexes.sql │ │ ├── V107__addShortestDependencyPathsAnalyzerRunIdIndex.sql │ │ ├── V108__pluginTemplateEvents.sql │ │ ├── V109__pluginTemplatesReadModel.sql │ │ ├── V10__packageManagerConfigurations.sql │ │ ├── V110__addInfrastructureServiceDeclarations.sql │ │ ├── V111__addRepositoryLevelToInfrastructureServices.sql │ │ ├── V112__addErrorMessageColumnInJobs.sql │ │ ├── V113__renamePackageIdentifierToIdentifier.sql │ │ ├── V114__addIncludes.sql │ │ ├── V115__removeToolVersions.sql │ │ ├── V116__deleteInfrastructureServiceDeclarationsCascade.sql │ │ ├── V117__addPackageCurationDataLabelsAndSources.sql │ │ ├── V118__addPackageLabelsAndSources.sql │ │ ├── V119__roleAssignments.sql │ │ ├── V11__advisorJobs.sql │ │ ├── V12__dependencyGraphs.sql │ │ ├── V13__advisorRuns.sql │ │ ├── V14__scannerJobs.sql │ │ ├── V15__issueColumnTypes.sql │ │ ├── V16__evaluatorJobs.sql │ │ ├── V17__reporterJobs.sql │ │ ├── V18__ortRunIdUniqueKeyForJobs.sql │ │ ├── V19__packageProvenances.sql │ │ ├── V1__organisations.sql │ │ ├── V20__secrets.sql │ │ ├── V21__nestedProvenances.sql │ │ ├── V22__secretsNameNotNull.sql │ │ ├── V23__scanResults.sql │ │ ├── V24__evaluatorRuns.sql │ │ ├── V25__indicesForSorting.sql │ │ ├── V26__storage.sql │ │ ├── V27__scannerRuns.sql │ │ ├── V28__infrastructureServices.sql │ │ ├── V29__reporterRuns.sql │ │ ├── V2__products.sql │ │ ├── V30__ortRunLabels.sql │ │ ├── V31__linkRepositoriesToOrtResult.sql │ │ ├── V32__removePackageVerificationCode.sql │ │ ├── V33__addHashAlgorithmToScanResults.sql │ │ ├── V34__resolvedConfigurations.sql │ │ ├── V35__ortRunIssues.sql │ │ ├── V36__addConfigContextToOrtRun.sql │ │ ├── V37__packageManagerConfigurations.sql │ │ ├── V38__repositoryConfiguration.sql │ │ ├── V39__renameJobConfig.sql │ │ ├── V3__repositories.sql │ │ ├── V40__packageCurationData.sql │ │ ├── V41__resolvedConfiguration.sql │ │ ├── V42__advisorAndScannerConfigurationUpdate.sql │ │ ├── V43__scannerRunsNullable.sql │ │ ├── V44__scannerRunsPackageProvenances.sql │ │ ├── V45__packageProvenanceNestedProvenances.sql │ │ ├── V46__snippetFindings.sql │ │ ├── V47__scannerRunsScanResults.sql │ │ ├── V48__addScanSummaryIndexes.sql │ │ ├── V49__ortRunFinishedAt.sql │ │ ├── V4__ortRuns.sql │ │ ├── V50__indexesTextColumns.sql │ │ ├── V51__processedDeclaredLicenses.sql │ │ ├── V52__processedDeclaredLicenseNullable.sql │ │ ├── V53__scannerRunsScanners.sql │ │ ├── V54__infrastructureServicesExcludeNetrc.sql │ │ ├── V55__processedDeclaredLicensesIndexes.sql │ │ ├── V56__snippetChoices.sql │ │ ├── V57__infrastructureServicesCascade.sql │ │ ├── V58__notifierJob.sql │ │ ├── V59__notifierRun.sql │ │ ├── V5__analyzerJobs.sql │ │ ├── V60__reportsDownloadTokens.sql │ │ ├── V61__ortRunPath.sql │ │ ├── V62__licenseFindingsNullableScore.sql │ │ ├── V63__removeSnippetIndex.sql │ │ ├── V64__removeStorageConfigurationTables.sql │ │ ├── V65__removeUserInfoFromRepositoryUrl.sql │ │ ├── V66__infrastructureServicesCredentialsType.sql │ │ ├── V67__dropCreateMissingArchives.sql │ │ ├── V68__renameOrtIssuesToIssues.sql │ │ ├── V69__ortRunTraceId.sql │ │ ├── V6__analyzerRuns.sql │ │ ├── V70__addAffectedPathToIssue.sql │ │ ├── V71__projectsAnalyzerRuns.sql │ │ ├── V72__createIndexPackagesAuthorsPackageId.sql │ │ ├── V73__deduplicatePackagesAndProjects.sql │ │ ├── V74__addSkipExcluded.sql │ │ ├── V75__extendVulnerabilityReferences.sql │ │ ├── V76__addVulerabilityIndex.sql │ │ ├── V77__issuesOrtRun.sql │ │ ├── V78__analyzerIssuesOrtRun.sql │ │ ├── V79__advisorIssuesOrtRun.sql │ │ ├── V7__analyzerProjects.sql │ │ ├── V80__fixGitVcsInfoType.sql │ │ ├── V81__addEnvironmentConfigPath.sql │ │ ├── V82__scannerIssuesOrtRun.sql │ │ ├── V83__scannerSummariesIssuesTimestamps.sql │ │ ├── V84__deduplicateIssues.sql │ │ ├── V85__issuesIndexOnValueColumns.sql │ │ ├── V86__ortRunDeleteCascade.sql │ │ ├── V87__deduplicateScanResults.sql │ │ ├── V88__deleteObsoleteScanSummaries.sql │ │ ├── V89__addProjectDescription.sql │ │ ├── V8__analyzerPackages.sql │ │ ├── V90__addMissingScanSummaryIndex.sql │ │ ├── V91__scanSummaryHash.sql │ │ ├── V92__indexesForDurations.sql │ │ ├── V93__projectsPackagesCascadeDelete.sql │ │ ├── V94__addVariousIndexes.sql │ │ ├── V95__projectsOrphanEntitiesFix.sql │ │ ├── V96__addShortestDependencyPathsTable.sql │ │ ├── V97__addResolvedRevision.sql │ │ ├── V98__userDisplayNames.sql │ │ ├── V99__addOrphanDeletionIndexes.sql │ │ └── V9__analyzerIssues.sql │ ├── test │ └── kotlin │ │ ├── DatabaseTest.kt │ │ ├── UniqueConstrainsViolationTest.kt │ │ ├── Utils.kt │ │ ├── migrations │ │ ├── V65__removeUserInfoFromRepositoryUrlTest.kt │ │ ├── V70__addAffectedPathToIssueTest.kt │ │ ├── V71__projectsAnalyzerRunsTest.kt │ │ └── V73__deduplicatePackagesAndProjectsTest.kt │ │ ├── repositories │ │ ├── WorkerJobRepositoryTest.kt │ │ ├── advisorjob │ │ │ └── DaoAdvisorJobRepositoryTest.kt │ │ ├── advisorrun │ │ │ └── DaoAdvisorRunRepositoryTest.kt │ │ ├── analyzerjob │ │ │ └── DaoAnalyzerJobRepositoryTest.kt │ │ ├── analyzerrun │ │ │ └── DaoAnalyzerRunRepositoryTest.kt │ │ ├── evaluatorjob │ │ │ └── DaoEvaluatorJobRepositoryTest.kt │ │ ├── evaluatorrun │ │ │ └── DaoEvaluatorRunRepositoryTest.kt │ │ ├── notifierjob │ │ │ └── DaoNotifierJobRepositoryTest.kt │ │ ├── notifierrun │ │ │ └── DaoNotifierRunRepositoryTest.kt │ │ ├── organization │ │ │ └── DaoOrganizationRepositoryTest.kt │ │ ├── ortrun │ │ │ └── DaoOrtRunRepositoryTest.kt │ │ ├── product │ │ │ └── DaoProductRepositoryTest.kt │ │ ├── reporterjob │ │ │ └── DaoReporterJobRepositoryTest.kt │ │ ├── reporterrun │ │ │ └── DaoReporterRunRepositoryTest.kt │ │ ├── repository │ │ │ └── DaoRepositoryRepositoryTest.kt │ │ ├── repositoryconfiguration │ │ │ ├── DaoRepositoryConfigurationRepositoryTest.kt │ │ │ └── LicenseFindingCurationsTableTest.kt │ │ ├── resolvedconfiguration │ │ │ └── DaoResolvedConfigurationRepositoryTest.kt │ │ ├── scannerjob │ │ │ └── DaoScannerJobRepositoryTest.kt │ │ ├── scannerrun │ │ │ └── DaoScannerRunRepositoryTest.kt │ │ └── secret │ │ │ └── DaoSecretRepositoryTest.kt │ │ ├── tables │ │ ├── PackageProvenancesTableTest.kt │ │ └── ScanSummariesIssuesTableTest.kt │ │ └── utils │ │ ├── ListQueryTest.kt │ │ └── SortableTableTest.kt │ └── testFixtures │ ├── kotlin │ ├── DatabaseMigrationTestExtension.kt │ ├── DatabaseTestExtension.kt │ ├── Fixtures.kt │ ├── MockDatabaseModule.kt │ └── MockTransaction.kt │ └── resources │ └── logback-test.xml ├── docker-compose-maintenance.yml ├── docker-compose.yml ├── docker ├── Base.Dockerfile └── scripts │ ├── export_proxy_certificates.sh │ └── import_certificates.sh ├── gradle.properties ├── gradle ├── gradle-daemon-jvm.properties ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── integrations ├── completions │ ├── osc-completion.bash │ ├── osc-completion.fish │ └── osc-completion.zsh └── schemas │ ├── README.md │ └── repository-environment-config.json ├── logaccess ├── README.md ├── build.gradle.kts ├── loki │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── LokiConfig.kt │ │ │ ├── LokiLogFileProvider.kt │ │ │ ├── LokiLogFileProviderFactory.kt │ │ │ └── LokiModel.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.logaccess.LogFileProviderFactory │ │ └── test │ │ ├── kotlin │ │ ├── LokiConfigTest.kt │ │ └── LokiLogFileProviderTest.kt │ │ └── resources │ │ ├── loki-response-multi-streams.json.template │ │ └── loki-response.json.template └── spi │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ ├── LogFileProvider.kt │ │ ├── LogFileProviderFactory.kt │ │ └── LogFileService.kt │ ├── test │ └── kotlin │ │ ├── LogFileServiceTest.kt │ │ └── LogLevelTest.kt │ └── testFixtures │ ├── kotlin │ └── LogFileProviderFactoryForTesting.kt │ └── resources │ └── META-INF │ └── services │ └── org.eclipse.apoapsis.ortserver.logaccess.LogFileProviderFactory ├── model ├── build.gradle.kts └── src │ ├── commonMain │ └── kotlin │ │ ├── ActiveOrtRun.kt │ │ ├── AdvisorJob.kt │ │ ├── AnalyzerJob.kt │ │ ├── ContentManagementSection.kt │ │ ├── CountByCategory.kt │ │ ├── CredentialsType.kt │ │ ├── EcosystemStats.kt │ │ ├── EnvironmentConfig.kt │ │ ├── EnvironmentVariableDeclaration.kt │ │ ├── EvaluatorJob.kt │ │ ├── Hierarchy.kt │ │ ├── HierarchyId.kt │ │ ├── InfrastructureService.kt │ │ ├── InfrastructureServiceDeclaration.kt │ │ ├── JobConfigurations.kt │ │ ├── JobStatus.kt │ │ ├── Jobs.kt │ │ ├── LogLevel.kt │ │ ├── LogSource.kt │ │ ├── NotifierJob.kt │ │ ├── Organization.kt │ │ ├── OrtRun.kt │ │ ├── OrtRunSummary.kt │ │ ├── PluginConfig.kt │ │ ├── Product.kt │ │ ├── ProviderPluginConfiguration.kt │ │ ├── ReporterJob.kt │ │ ├── Repository.kt │ │ ├── RepositoryType.kt │ │ ├── ResolvablePluginConfig.kt │ │ ├── ResolvableProviderPluginConfig.kt │ │ ├── ResolvableSecret.kt │ │ ├── ScannerJob.kt │ │ ├── Secret.kt │ │ ├── SecretSource.kt │ │ ├── Severity.kt │ │ ├── SourceCodeOrigin.kt │ │ ├── User.kt │ │ ├── UserDisplayName.kt │ │ ├── VulnerabilityForRunsFilters.kt │ │ ├── VulnerabilityRating.kt │ │ ├── VulnerabilityWithAccumulatedData.kt │ │ ├── VulnerabilityWithDetails.kt │ │ ├── WorkerJob.kt │ │ ├── authentication │ │ └── OidcConfig.kt │ │ ├── orchestrator │ │ ├── AdvisorRequest.kt │ │ ├── AnalyzerRequest.kt │ │ ├── ConfigRequest.kt │ │ ├── EvaluatorRequest.kt │ │ ├── NotifierRequest.kt │ │ ├── OrchestratorMessage.kt │ │ ├── ReporterRequest.kt │ │ └── ScannerRequest.kt │ │ ├── repositories │ │ ├── AdvisorJobRepository.kt │ │ ├── AdvisorRunRepository.kt │ │ ├── AnalyzerJobRepository.kt │ │ ├── AnalyzerRunRepository.kt │ │ ├── EvaluatorJobRepository.kt │ │ ├── EvaluatorRunRepository.kt │ │ ├── NotifierJobRepository.kt │ │ ├── NotifierRunRepository.kt │ │ ├── OrganizationRepository.kt │ │ ├── OrtRunRepository.kt │ │ ├── ProductRepository.kt │ │ ├── ReporterJobRepository.kt │ │ ├── ReporterRunRepository.kt │ │ ├── RepositoryConfigurationRepository.kt │ │ ├── RepositoryRepository.kt │ │ ├── ResolvedConfigurationRepository.kt │ │ ├── ScannerJobRepository.kt │ │ ├── ScannerRunRepository.kt │ │ ├── SecretRepository.kt │ │ └── WorkerJobRepository.kt │ │ ├── resolvedconfiguration │ │ ├── PackageCurationProviderConfig.kt │ │ ├── ResolvedConfiguration.kt │ │ └── ResolvedPackageCurations.kt │ │ ├── runs │ │ ├── AnalyzerConfiguration.kt │ │ ├── AnalyzerRun.kt │ │ ├── DependencyGraph.kt │ │ ├── DependencyGraphEdge.kt │ │ ├── DependencyGraphNode.kt │ │ ├── DependencyGraphRoot.kt │ │ ├── DependencyGraphsWrapper.kt │ │ ├── Environment.kt │ │ ├── EvaluatorRun.kt │ │ ├── Identifier.kt │ │ ├── Issue.kt │ │ ├── Package.kt │ │ ├── PackageManagerConfiguration.kt │ │ ├── PackageRunData.kt │ │ ├── ProcessedDeclaredLicense.kt │ │ ├── Project.kt │ │ ├── RemoteArtifact.kt │ │ ├── RuleViolation.kt │ │ ├── ShortestDependencyPath.kt │ │ ├── VcsInfo.kt │ │ ├── advisor │ │ │ ├── AdvisorConfiguration.kt │ │ │ ├── AdvisorDetails.kt │ │ │ ├── AdvisorResult.kt │ │ │ ├── AdvisorRun.kt │ │ │ ├── Defect.kt │ │ │ ├── Vulnerability.kt │ │ │ └── VulnerabilityReference.kt │ │ ├── notifier │ │ │ └── NotifierRun.kt │ │ ├── reporter │ │ │ ├── Report.kt │ │ │ └── ReporterRun.kt │ │ ├── repository │ │ │ ├── Curations.kt │ │ │ ├── Excludes.kt │ │ │ ├── Includes.kt │ │ │ ├── IssueResolution.kt │ │ │ ├── LicenseChoices.kt │ │ │ ├── LicenseFindingCuration.kt │ │ │ ├── PackageConfiguration.kt │ │ │ ├── PackageCuration.kt │ │ │ ├── PackageCurationData.kt │ │ │ ├── PackageLicenseChoice.kt │ │ │ ├── PathExclude.kt │ │ │ ├── PathInclude.kt │ │ │ ├── ProvenanceSnippetChoices.kt │ │ │ ├── RepositoryAnalyzerConfiguration.kt │ │ │ ├── RepositoryConfiguration.kt │ │ │ ├── Resolutions.kt │ │ │ ├── RuleViolationResolution.kt │ │ │ ├── ScopeExclude.kt │ │ │ ├── SpdxLicenseChoice.kt │ │ │ ├── VcsInfoCurationData.kt │ │ │ ├── VcsMatcher.kt │ │ │ ├── VulnerabilityResolution.kt │ │ │ └── snippet │ │ │ │ ├── Provenance.kt │ │ │ │ ├── SnippetChoice.kt │ │ │ │ └── SnippetChoiceReason.kt │ │ └── scanner │ │ │ ├── CopyrightFinding.kt │ │ │ ├── LicenseFinding.kt │ │ │ ├── NestedProvenance.kt │ │ │ ├── NestedProvenanceScanResult.kt │ │ │ ├── Provenance.kt │ │ │ ├── ProvenanceResolutionResult.kt │ │ │ ├── ScanResult.kt │ │ │ ├── ScanSummary.kt │ │ │ ├── ScannerConfiguration.kt │ │ │ ├── ScannerDetail.kt │ │ │ ├── ScannerRun.kt │ │ │ ├── Snippet.kt │ │ │ ├── SnippetFinding.kt │ │ │ └── TextLocation.kt │ │ ├── util │ │ ├── Extensions.kt │ │ ├── FilterOperatorAndValue.kt │ │ ├── HierarchyFilter.kt │ │ ├── ListQueryParameters.kt │ │ ├── ListQueryResult.kt │ │ └── OptionalValue.kt │ │ └── validation │ │ └── ValidationException.kt │ └── jvmTest │ └── kotlin │ ├── CompoundHierarchyIdTest.kt │ ├── ResolvablePluginConfigTest.kt │ ├── ResolvableProviderPluginConfigTest.kt │ └── ResolvableSecretTest.kt ├── orchestrator ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ ├── Entrypoint.kt │ │ ├── Orchestrator.kt │ │ ├── WorkerJobRepositories.kt │ │ ├── WorkerScheduleContext.kt │ │ └── WorkerScheduleInfo.kt │ └── resources │ │ ├── application.conf │ │ └── logback.xml │ └── test │ └── kotlin │ ├── OrchestratorEndpointTest.kt │ └── OrchestratorTest.kt ├── renovate.json ├── scripts ├── cli │ └── generate_completion_scripts.sh ├── compose │ ├── config │ │ ├── evaluator.rules.kts │ │ └── ort-server.params.kts │ ├── grafana │ │ ├── grafana.ini │ │ └── provisioning │ │ │ ├── dashboards │ │ │ ├── dashboard.yaml │ │ │ ├── find-logs-without-component-label.json │ │ │ ├── log-viewer.json │ │ │ ├── ort-run-and-job-duration.json │ │ │ ├── ort-run-and-job-status.json │ │ │ └── ort-run-component-logs.json │ │ │ └── datasources │ │ │ └── datasource.yaml │ ├── graphite │ │ ├── conf │ │ │ ├── storage-aggregation.conf │ │ │ └── storage-schemas.conf │ │ └── storage │ │ │ └── .gitignore │ ├── logstash │ │ ├── logstash.yaml │ │ ├── loki.conf │ │ └── pipelines.yaml │ └── secrets.properties ├── docker │ ├── keycloak │ │ ├── HealthCheck.java │ │ ├── init-keycloak.sh │ │ └── master-realm.json │ └── rabbitmq │ │ ├── enabled_plugins │ │ ├── load_definition.json │ │ └── rabbitmq.conf ├── helm │ └── ort-server │ │ ├── .helmignore │ │ ├── Chart.lock │ │ ├── Chart.yaml │ │ ├── templates │ │ ├── artemis.yaml │ │ ├── keycloak-volume.yaml │ │ ├── ort-server-core.yaml │ │ ├── ort-server-orchestrator-volume.yaml │ │ ├── ort-server-orchestrator.yaml │ │ ├── postgres-volume.yaml │ │ └── rabbitmq-initialization.yaml │ │ └── values.yaml └── requests │ ├── README.md │ ├── authentication.http │ ├── env │ └── http-client.env.json │ ├── liveness.http │ ├── organizations.http │ ├── products.http │ ├── repositories.http │ ├── runs.http │ └── users.http ├── secrets ├── README.md ├── azure-keyvault │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ └── main │ │ ├── kotlin │ │ ├── AzureKeyvaultProvider.kt │ │ └── AzureKeyvaultProviderFactory.kt │ │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.secrets.SecretsProviderFactory │ │ └── application.conf ├── build.gradle.kts ├── file │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── FileBasedSecretsProvider.kt │ │ │ ├── FileBasedSecretsProviderFactory.kt │ │ │ └── model │ │ │ │ └── FileBasedSecretsStorage.kt │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.apoapsis.ortserver.secrets.SecretsProviderFactory │ │ │ └── application.conf │ │ └── test │ │ └── kotlin │ │ └── FileBasedSecretStorageTest.kt ├── scaleway │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── ScalewayConfiguration.kt │ │ │ ├── ScalewaySecretsModel.kt │ │ │ ├── ScalewaySecretsProvider.kt │ │ │ └── ScalewaySecretsProviderFactory.kt │ │ └── resources │ │ │ ├── META-INF │ │ │ └── services │ │ │ │ └── org.eclipse.apoapsis.ortserver.secrets.SecretsProviderFactory │ │ │ └── application.conf │ │ └── test │ │ └── kotlin │ │ ├── ScalewayConfigurationTest.kt │ │ └── ScalewaySecretsProviderTest.kt ├── spi │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── Path.kt │ │ │ ├── SecretStorage.kt │ │ │ ├── SecretValue.kt │ │ │ ├── SecretsProvider.kt │ │ │ └── SecretsProviderFactory.kt │ │ └── resources │ │ │ └── application.conf │ │ ├── test │ │ └── kotlin │ │ │ └── SecretStorageTest.kt │ │ └── testFixtures │ │ ├── kotlin │ │ └── SecretsProviderFactoryForTesting.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ └── org.eclipse.apoapsis.ortserver.secrets.SecretsProviderFactory └── vault │ ├── README.md │ ├── build.gradle.kts │ └── src │ ├── main │ ├── kotlin │ │ ├── VaultConfiguration.kt │ │ ├── VaultSecretsProvider.kt │ │ ├── VaultSecretsProviderFactory.kt │ │ └── model │ │ │ ├── VaultCredentials.kt │ │ │ ├── VaultLoginResponse.kt │ │ │ └── VaultSecretData.kt │ └── resources │ │ ├── META-INF │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.secrets.SecretsProviderFactory │ │ └── application.conf │ └── test │ └── kotlin │ ├── VaultConfigurationTest.kt │ ├── VaultSecretsProviderFactoryTest.kt │ ├── VaultSecretsProviderRequestsTest.kt │ ├── VaultSecretsProviderTest.kt │ └── VaultTestContainer.kt ├── services ├── admin-config │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── AdminConfig.kt │ │ │ ├── AdminConfigService.kt │ │ │ ├── MavenCentralMirror.kt │ │ │ ├── NotifierConfig.kt │ │ │ ├── ReporterConfig.kt │ │ │ ├── RuleSet.kt │ │ │ └── ScannerConfig.kt │ │ └── test │ │ └── kotlin │ │ ├── AdminConfigServiceTest.kt │ │ └── ReporterConfigTest.kt ├── authorization │ └── build.gradle.kts ├── content-management │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── ContentManagementService.kt ├── hierarchy │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── OrganizationService.kt │ │ │ ├── ProductService.kt │ │ │ ├── ProjectService.kt │ │ │ ├── RepositoryService.kt │ │ │ ├── ResourceNotFoundException.kt │ │ │ └── utils │ │ │ └── Extensions.kt │ │ └── test │ │ └── kotlin │ │ ├── OrganizationServiceTest.kt │ │ ├── ProductServiceTest.kt │ │ ├── ProjectServiceTest.kt │ │ ├── RepositoryServiceTest.kt │ │ └── utils │ │ └── ExtensionsTest.kt ├── ort-run │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── IssueService.kt │ │ │ ├── OrphanRemovalService.kt │ │ │ ├── OrtMappings.kt │ │ │ ├── OrtRunService.kt │ │ │ ├── OrtServerFileListStorage.kt │ │ │ ├── OrtServerMappings.kt │ │ │ ├── PackageService.kt │ │ │ ├── RuleViolationService.kt │ │ │ ├── Utils.kt │ │ │ └── VulnerabilityService.kt │ │ └── test │ │ └── kotlin │ │ ├── IssueServiceTest.kt │ │ ├── OrphanRemovalServiceTest.kt │ │ ├── OrtRunServiceTest.kt │ │ ├── OrtServerFileListStorageTest.kt │ │ ├── OrtServerMappingsTest.kt │ │ ├── PackageServiceTest.kt │ │ ├── RuleViolationServiceTest.kt │ │ ├── UtilsTest.kt │ │ └── VulnerabilityServiceTest.kt └── report-storage │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ └── ReportStorageService.kt │ └── test │ └── kotlin │ └── ReportStorageServiceTest.kt ├── settings.gradle.kts ├── shared ├── api-mappings │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ ├── InfrastructureServiceMappings.kt │ │ ├── OptionalValueMappings.kt │ │ └── PagedResponseMappings.kt ├── api-model │ ├── build.gradle.kts │ └── src │ │ └── commonMain │ │ └── kotlin │ │ ├── CredentialsType.kt │ │ ├── ErrorResponse.kt │ │ ├── InfrastructureService.kt │ │ ├── OptionalValue.kt │ │ └── PagedResponse.kt ├── ktor-utils │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── OpenApiHelpers.kt │ │ │ ├── PaginationHelpers.kt │ │ │ ├── ParameterHelpers.kt │ │ │ ├── ResponseHelpers.kt │ │ │ └── ValidationHelpers.kt │ │ ├── test │ │ └── kotlin │ │ │ └── PaginationHelpersTest.kt │ │ └── testFixtures │ │ └── kotlin │ │ ├── AbstractAuthorizationTest.kt │ │ ├── AbstractIntegrationTest.kt │ │ └── Matchers.kt ├── ort-test-data │ ├── build.gradle.kts │ └── src │ │ └── main │ │ └── kotlin │ │ └── OrtTestData.kt ├── package-curation-providers │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── DirPackageCurationProvider.kt │ │ └── test │ │ └── kotlin │ │ └── DirPackageCurationProviderTest.kt ├── plugin-info │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── PluginId.kt │ │ │ └── PluginInfo.kt │ │ └── test │ │ └── kotlin │ │ └── PluginInfoTest.kt └── reporters │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ ├── OrtResultReporter.kt │ │ ├── RunStatisticsReporter.kt │ │ └── SourceCodeBundleReporter.kt │ └── test │ └── kotlin │ ├── OrtResultReporterTest.kt │ ├── RunStatisticsReporterTest.kt │ └── SourceCodeBundleReporterTest.kt ├── storage ├── README.md ├── azure-blob │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── AzureBlobStorageProvider.kt │ │ │ └── AzureBlobStorageProviderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.storage.StorageProviderFactory │ │ └── test │ │ └── kotlin │ │ └── AzureBlobStorageProviderTest.kt ├── build.gradle.kts ├── database │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── DatabaseStorageProvider.kt │ │ │ ├── DatabaseStorageProviderFactory.kt │ │ │ ├── LargeObjects.kt │ │ │ └── StorageTable.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.storage.StorageProviderFactory │ │ └── test │ │ └── kotlin │ │ ├── DatabaseStorageTest.kt │ │ └── LargeObjectsTest.kt ├── s3 │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── S3StorageProvider.kt │ │ │ └── S3StorageProviderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ └── org.eclipse.apoapsis.ortserver.storage.StorageProviderFactory │ │ └── test │ │ └── kotlin │ │ └── S3StorageTest.kt └── spi │ ├── build.gradle.kts │ └── src │ ├── main │ └── kotlin │ │ ├── Key.kt │ │ ├── Storage.kt │ │ ├── StorageEntry.kt │ │ ├── StorageProvider.kt │ │ ├── StorageProviderFactory.kt │ │ └── TempFileInputStream.kt │ ├── test │ └── kotlin │ │ ├── StorageEntryTest.kt │ │ └── StorageTest.kt │ └── testFixtures │ ├── kotlin │ └── StorageProviderFactoryForTesting.kt │ └── resources │ └── META-INF │ └── services │ └── org.eclipse.apoapsis.ortserver.storage.StorageProviderFactory ├── tasks ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ ├── Task.kt │ │ ├── TaskRunner.kt │ │ └── impl │ │ │ ├── DeleteOldOrtRunsTask.kt │ │ │ ├── DeleteOrphanedEntitiesTask.kt │ │ │ └── kubernetes │ │ │ ├── FailedJobNotifier.kt │ │ │ ├── JobHandler.kt │ │ │ ├── LongRunningJobsFinderTask.kt │ │ │ ├── LostJobsFinderTask.kt │ │ │ ├── MonitorConfig.kt │ │ │ ├── ReaperTask.kt │ │ │ └── TimeHelper.kt │ └── resources │ │ ├── application.conf │ │ └── logback.xml │ └── test │ └── kotlin │ ├── TaskRunnerTest.kt │ └── impl │ ├── DeleteOldOrtRunsTaskTest.kt │ ├── DeleteOrphanedEntitiesTaskTest.kt │ └── kubernetes │ ├── FailedJobNotifierTest.kt │ ├── JobHandlerTest.kt │ ├── LongRunningJobsFinderTaskTest.kt │ ├── LostJobsFinderTaskTest.kt │ ├── MonitorConfigTest.kt │ ├── ReaperTaskTest.kt │ └── TimeHelperTest.kt ├── transport ├── README.md ├── activemqartemis │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── ArtemisConfig.kt │ │ │ ├── ArtemisMessageConverter.kt │ │ │ ├── ArtemisMessageReceiverFactory.kt │ │ │ ├── ArtemisMessageSender.kt │ │ │ └── ArtemisMessageSenderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── org.eclipse.apoapsis.ortserver.transport.MessageReceiverFactory │ │ │ └── org.eclipse.apoapsis.ortserver.transport.MessageSenderFactory │ │ └── test │ │ └── kotlin │ │ ├── ArtemisConfigTest.kt │ │ ├── ArtemisMessageReceiverFactoryTest.kt │ │ ├── ArtemisMessageSenderFactoryTest.kt │ │ └── ArtemisTestContainer.kt ├── azure-servicebus │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── AzureServicebusConfig.kt │ │ │ ├── AzureServicebusMessageConverter.kt │ │ │ ├── AzureServicebusMessageReceiverFactory.kt │ │ │ ├── AzureServicebusMessageSender.kt │ │ │ └── AzureServicebusMessageSenderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── org.eclipse.apoapsis.ortserver.transport.MessageReceiverFactory │ │ │ └── org.eclipse.apoapsis.ortserver.transport.MessageSenderFactory │ │ └── test │ │ └── kotlin │ │ └── AzureServicebusConfigTest.kt ├── build.gradle.kts ├── kubernetes │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── KubernetesMessageReceiverFactory.kt │ │ │ ├── KubernetesMessageSender.kt │ │ │ ├── KubernetesMessageSenderFactory.kt │ │ │ └── KubernetesSenderConfig.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── org.eclipse.apoapsis.ortserver.transport.MessageReceiverFactory │ │ │ └── org.eclipse.apoapsis.ortserver.transport.MessageSenderFactory │ │ └── test │ │ ├── kotlin │ │ ├── KubernetesMessageReceiverFactoryTest.kt │ │ ├── KubernetesMessageSenderFactoryTest.kt │ │ └── KubernetesMessageSenderTest.kt │ │ └── resources │ │ └── kubeconfig ├── rabbitmq │ ├── README.md │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── RabbitMqConfig.kt │ │ │ ├── RabbitMqMessageConverter.kt │ │ │ ├── RabbitMqMessageReceiverFactory.kt │ │ │ ├── RabbitMqMessageSender.kt │ │ │ └── RabbitMqMessageSenderFactory.kt │ │ └── resources │ │ │ └── META-INF │ │ │ └── services │ │ │ ├── org.eclipse.apoapsis.ortserver.transport.MessageReceiverFactory │ │ │ └── org.eclipse.apoapsis.ortserver.transport.MessageSenderFactory │ │ └── test │ │ └── kotlin │ │ ├── RabbitMqConfigTest.kt │ │ ├── RabbitMqMessageReceiverFactoryTest.kt │ │ ├── RabbitMqMessageSenderFactoryTest.kt │ │ └── RabbitMqTestContainer.kt ├── spi │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ ├── kotlin │ │ │ ├── Endpoint.kt │ │ │ ├── EndpointComponent.kt │ │ │ ├── Extensions.kt │ │ │ ├── Message.kt │ │ │ ├── MessagePublisher.kt │ │ │ ├── MessageReceiverFactory.kt │ │ │ ├── MessageSender.kt │ │ │ ├── MessageSenderFactory.kt │ │ │ ├── Utils.kt │ │ │ └── json │ │ │ │ └── JsonSerializer.kt │ │ └── resources │ │ │ └── application.conf │ │ ├── test │ │ ├── kotlin │ │ │ ├── EndpointComponentTest.kt │ │ │ ├── EndpointTest.kt │ │ │ ├── ExtensionsTest.kt │ │ │ ├── MessagePublisherTest.kt │ │ │ ├── MessageReceiverFactoryTest.kt │ │ │ ├── MessageSenderFactoryTest.kt │ │ │ └── json │ │ │ │ └── JsonSerializerTest.kt │ │ └── resources │ │ │ └── application.conf │ │ └── testFixtures │ │ ├── kotlin │ │ ├── TransportForTesting.kt │ │ └── Utils.kt │ │ └── resources │ │ └── META-INF │ │ └── services │ │ ├── org.eclipse.apoapsis.ortserver.transport.MessageReceiverFactory │ │ └── org.eclipse.apoapsis.ortserver.transport.MessageSenderFactory └── sqs │ ├── README.md │ ├── build.gradle.kts │ └── src │ ├── main │ ├── kotlin │ │ ├── SqsConfig.kt │ │ ├── SqsMessageConverter.kt │ │ ├── SqsMessageReceiverFactory.kt │ │ ├── SqsMessageSender.kt │ │ └── SqsMessageSenderFactory.kt │ └── resources │ │ └── META-INF │ │ └── services │ │ ├── org.eclipse.apoapsis.ortserver.transport.MessageReceiverFactory │ │ └── org.eclipse.apoapsis.ortserver.transport.MessageSenderFactory │ └── test │ └── kotlin │ ├── SqsConfigManager.kt │ ├── SqsMessageReceiverFactoryTest.kt │ └── SqsMessageSenderFactoryTest.kt ├── ui ├── .dockerignore ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── components.json ├── docker │ ├── UI.Dockerfile │ ├── entrypoint.sh │ └── nginx.conf.template ├── eslint.config.js ├── index.html ├── openapi-ts.config.ts ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── public │ └── favicon.svg ├── src │ ├── @types │ │ ├── @tanstack │ │ │ └── react-table.d.ts │ │ └── oidc-client-ts.d.ts │ ├── app.tsx │ ├── assets │ │ ├── cyclonedx-logo-black.svg │ │ ├── cyclonedx-logo-white.svg │ │ ├── home-icon.svg │ │ └── spdx-logo-color.svg │ ├── components │ │ ├── breakable-string.tsx │ │ ├── charts │ │ │ ├── cvss23-radar-chart.tsx │ │ │ ├── cvss4-radar-chart.tsx │ │ │ ├── cvss4-vector-card.tsx │ │ │ ├── epss-chart.tsx │ │ │ ├── job-durations.tsx │ │ │ └── vulnerability-metrics.tsx │ │ ├── color-theme-toggle.tsx │ │ ├── copy-to-clipboard.tsx │ │ ├── data-table-cards │ │ │ ├── data-table-cards-header.tsx │ │ │ ├── data-table-cards-sort.tsx │ │ │ └── data-table-cards.tsx │ │ ├── data-table │ │ │ ├── data-table-body.tsx │ │ │ ├── data-table-filter.tsx │ │ │ ├── data-table-header.tsx │ │ │ ├── data-table-pagination.tsx │ │ │ ├── data-table.tsx │ │ │ ├── filter-multi-select.tsx │ │ │ ├── filter-regex.tsx │ │ │ ├── filter-text.tsx │ │ │ └── mark-items.tsx │ │ ├── delete-dialog.tsx │ │ ├── delete-icon-button.tsx │ │ ├── dependency-paths.tsx │ │ ├── ellipsis-icon-button.tsx │ │ ├── error-component.tsx │ │ ├── footer.tsx │ │ ├── form │ │ │ ├── as-optional-field.ts │ │ │ ├── multi-select-field.tsx │ │ │ ├── optional-input.tsx │ │ │ ├── password-input.tsx │ │ │ └── runs-filter-form.tsx │ │ ├── formatted-value.tsx │ │ ├── header.tsx │ │ ├── loading-indicator.tsx │ │ ├── markdown-renderer.tsx │ │ ├── mode-toggle.tsx │ │ ├── not-found-error.ts │ │ ├── ort-run-job-status.tsx │ │ ├── package-curation.tsx │ │ ├── page-layout.tsx │ │ ├── providers.tsx │ │ ├── render-property.tsx │ │ ├── resolutions.tsx │ │ ├── run-duration.tsx │ │ ├── siblings.tsx │ │ ├── sidebar.tsx │ │ ├── statistics-card.tsx │ │ ├── theme-provider-context.tsx │ │ ├── theme-provider-state.tsx │ │ ├── theme-provider.tsx │ │ ├── timestamp-with-utc.tsx │ │ ├── toast-error.tsx │ │ ├── typography.tsx │ │ └── ui │ │ │ ├── accordion.tsx │ │ │ ├── alert-dialog.tsx │ │ │ ├── avatar.tsx │ │ │ ├── badge-variants.ts │ │ │ ├── badge.tsx │ │ │ ├── breadcrumb.tsx │ │ │ ├── button-variants.ts │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── chart.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form-context.ts │ │ │ ├── form.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── layout.tsx │ │ │ ├── multiple-selector.tsx │ │ │ ├── popover.tsx │ │ │ ├── radio-group.tsx │ │ │ ├── select.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── switch.tsx │ │ │ ├── table.tsx │ │ │ ├── tabs.tsx │ │ │ ├── textarea.tsx │ │ │ ├── toaster.tsx │ │ │ ├── tooltip.tsx │ │ │ └── user-group-row-actions.tsx │ ├── config.ts │ ├── globals.css │ ├── helpers │ │ ├── calculate-duration.ts │ │ ├── capitalize.ts │ │ ├── extract-initials.ts │ │ ├── get-issue-category.ts │ │ ├── get-status-class.ts │ │ ├── handle-multisort.ts │ │ ├── identifier-conversion.ts │ │ ├── job-helpers.ts │ │ ├── resolutions.ts │ │ ├── role-helpers.ts │ │ ├── set-custom-favicon.ts │ │ ├── sorting-functions.ts │ │ ├── value-or-na.ts │ │ └── vulnerability-statistics.ts │ ├── hooks │ │ ├── use-debounce.ts │ │ ├── use-infrastructure-services.ts │ │ ├── use-secrets.ts │ │ └── use-user.ts │ ├── lib │ │ ├── api-error.ts │ │ ├── constants.ts │ │ ├── permissions.ts │ │ ├── query-client.ts │ │ ├── toast.ts │ │ ├── types.ts │ │ └── utils.ts │ ├── main.tsx │ ├── routes │ │ ├── 403 │ │ │ └── index.tsx │ │ ├── __root.tsx │ │ ├── about │ │ │ └── index.tsx │ │ ├── admin │ │ │ ├── colors │ │ │ │ └── index.tsx │ │ │ ├── content-management │ │ │ │ └── branding │ │ │ │ │ ├── -components │ │ │ │ │ ├── favicon-form.tsx │ │ │ │ │ ├── footer-form.tsx │ │ │ │ │ ├── home-icon-form.tsx │ │ │ │ │ └── product-name-form.tsx │ │ │ │ │ └── index.tsx │ │ │ ├── index.tsx │ │ │ ├── plugins │ │ │ │ ├── $pluginType │ │ │ │ │ └── $pluginId │ │ │ │ │ │ ├── create-template │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── route.tsx │ │ │ ├── route.tsx │ │ │ ├── runs │ │ │ │ └── index.tsx │ │ │ └── users │ │ │ │ ├── authorization │ │ │ │ └── index.tsx │ │ │ │ ├── create-user │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── create-organization │ │ │ └── index.tsx │ │ ├── index.tsx │ │ ├── organizations │ │ │ └── $orgId │ │ │ │ ├── -components │ │ │ │ ├── organization-issues-statistics-card.tsx │ │ │ │ ├── organization-packages-statistics-card.tsx │ │ │ │ ├── organization-product-table.tsx │ │ │ │ ├── organization-products-statistics-card.tsx │ │ │ │ ├── organization-violations-statistics-card.tsx │ │ │ │ └── organization-vulnerabilities-statistics-card.tsx │ │ │ │ ├── create-product │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ ├── infrastructure-services │ │ │ │ ├── $serviceName │ │ │ │ │ └── edit │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── create │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── route.tsx │ │ │ │ ├── products │ │ │ │ └── $productId │ │ │ │ │ ├── -components │ │ │ │ │ ├── last-job-status.tsx │ │ │ │ │ ├── last-run-date.tsx │ │ │ │ │ ├── last-run-status.tsx │ │ │ │ │ ├── product-issues-statistics-card.tsx │ │ │ │ │ ├── product-packages-statistics-card.tsx │ │ │ │ │ ├── product-repositories-statistics-card.tsx │ │ │ │ │ ├── product-repository-table.tsx │ │ │ │ │ ├── product-violations-statistics-card.tsx │ │ │ │ │ ├── product-vulnerabilities-statistics-card.tsx │ │ │ │ │ └── total-runs.tsx │ │ │ │ │ ├── create-repository │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ ├── infrastructure-services │ │ │ │ │ ├── $serviceName │ │ │ │ │ │ └── edit │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── create │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── route.tsx │ │ │ │ │ ├── repositories │ │ │ │ │ └── $repoId │ │ │ │ │ │ ├── -components │ │ │ │ │ │ ├── advisor-fields.tsx │ │ │ │ │ │ ├── analyzer-fields.tsx │ │ │ │ │ │ ├── evaluator-fields.tsx │ │ │ │ │ │ ├── notifier-fields.tsx │ │ │ │ │ │ ├── package-manager-field.tsx │ │ │ │ │ │ ├── reporter-fields.tsx │ │ │ │ │ │ ├── repository-runs-table.tsx │ │ │ │ │ │ └── scanner-fields.tsx │ │ │ │ │ │ ├── _repo-layout │ │ │ │ │ │ ├── create-run │ │ │ │ │ │ │ ├── -create-run-utils.ts │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── infrastructure-services │ │ │ │ │ │ │ ├── $serviceName │ │ │ │ │ │ │ │ └── edit │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── create │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── route.tsx │ │ │ │ │ │ ├── route.tsx │ │ │ │ │ │ ├── runs │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── secrets │ │ │ │ │ │ │ ├── $secretName │ │ │ │ │ │ │ │ └── edit │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── create-secret │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── route.tsx │ │ │ │ │ │ ├── settings │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── users │ │ │ │ │ │ │ ├── -components │ │ │ │ │ │ │ └── repository-users-table.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── route.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── route.tsx │ │ │ │ │ │ └── runs │ │ │ │ │ │ └── $runIndex │ │ │ │ │ │ ├── -components │ │ │ │ │ │ ├── issues-statistics-card.tsx │ │ │ │ │ │ ├── packages-statistics-card.tsx │ │ │ │ │ │ ├── rule-violations-statistics-card.tsx │ │ │ │ │ │ ├── run-details-bar.tsx │ │ │ │ │ │ └── vulnerabilities-statistics-card.tsx │ │ │ │ │ │ ├── config │ │ │ │ │ │ ├── -components │ │ │ │ │ │ │ ├── advisor-job-details.tsx │ │ │ │ │ │ │ ├── analyzer-job-details.tsx │ │ │ │ │ │ │ ├── evaluator-job-details.tsx │ │ │ │ │ │ │ ├── job-title.tsx │ │ │ │ │ │ │ ├── notifier-job-details.tsx │ │ │ │ │ │ │ ├── reporter-job-details.tsx │ │ │ │ │ │ │ └── scanner-job-details.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── dependencies │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ ├── issues │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── license-findings │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── logs │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── packages │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── projects │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── reports │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── route.tsx │ │ │ │ │ │ ├── rule-violations │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── sbom │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── vulnerabilities │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── route.tsx │ │ │ │ │ ├── secrets │ │ │ │ │ ├── $secretName │ │ │ │ │ │ └── edit │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── create-secret │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── route.tsx │ │ │ │ │ ├── settings │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── users │ │ │ │ │ ├── -components │ │ │ │ │ │ └── product-users-table.tsx │ │ │ │ │ ├── index.tsx │ │ │ │ │ └── route.tsx │ │ │ │ │ └── vulnerabilities │ │ │ │ │ └── index.tsx │ │ │ │ ├── route.tsx │ │ │ │ ├── secrets │ │ │ │ ├── $secretName │ │ │ │ │ └── edit │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── create-secret │ │ │ │ │ └── index.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── route.tsx │ │ │ │ ├── settings │ │ │ │ └── index.tsx │ │ │ │ ├── users │ │ │ │ ├── -components │ │ │ │ │ └── organization-users-table.tsx │ │ │ │ ├── index.tsx │ │ │ │ └── route.tsx │ │ │ │ └── vulnerabilities │ │ │ │ └── index.tsx │ │ ├── runs │ │ │ └── $runId │ │ │ │ └── index.tsx │ │ └── settings │ │ │ └── index.tsx │ ├── schemas │ │ └── index.ts │ ├── store │ │ ├── table-prefs.store.ts │ │ └── user-settings.store.ts │ ├── ui-env.ts │ └── vite-env.d.ts ├── tailwind.config.js ├── tests │ └── smoke-test.spec.ts ├── tsconfig.json ├── tsconfig.node.json └── vite.config.ts ├── utils ├── config │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ └── Extensions.kt │ │ └── test │ │ └── kotlin │ │ └── ExtensionsTest.kt ├── logging │ ├── build.gradle.kts │ └── src │ │ ├── main │ │ └── kotlin │ │ │ ├── LoggingUtils.kt │ │ │ └── MdcConverter.kt │ │ └── test │ │ └── kotlin │ │ └── LoggingUtilsTest.kt ├── system │ ├── build.gradle.kts │ └── src │ │ ├── commonMain │ │ └── kotlin │ │ │ ├── Constants.kt │ │ │ └── Environment.kt │ │ ├── jvmMain │ │ └── kotlin │ │ │ └── Environment.jvm.kt │ │ ├── linuxMain │ │ └── kotlin │ │ │ └── Environment.linux.kt │ │ ├── macosMain │ │ └── kotlin │ │ │ └── Environment.macos.kt │ │ └── mingwMain │ │ └── kotlin │ │ └── Environment.mingw.kt └── test │ ├── build.gradle.kts │ └── src │ └── commonMain │ ├── kotlin │ └── Tags.kt │ └── resources │ └── logback.xml ├── website ├── .gitignore ├── .prettierignore ├── .prettierrc ├── README.md ├── api │ └── .gitignore ├── babel.config.js ├── docs │ ├── admin-guide │ │ ├── _category_.yml │ │ ├── architecture │ │ │ ├── _category_.yml │ │ │ ├── authorization.md │ │ │ └── gradle-modules.md │ │ ├── getting-started │ │ │ ├── _category_.yml │ │ │ └── docker-compose.md │ │ ├── guides │ │ │ ├── _category_.yml │ │ │ ├── config.md │ │ │ ├── development-helm-chart.md │ │ │ ├── different-tool-versions.md │ │ │ └── parameter-validation-script.md │ │ └── infrastructure │ │ │ ├── _category_.yml │ │ │ ├── index.md │ │ │ ├── secrets │ │ │ ├── _category_.yml │ │ │ ├── azure-keyvault.md │ │ │ ├── hashicorp-vault.md │ │ │ └── index.md │ │ │ ├── storage │ │ │ ├── _category_.yml │ │ │ ├── azure-blob-storage.md │ │ │ ├── database.md │ │ │ ├── index.md │ │ │ └── s3.md │ │ │ └── transport │ │ │ ├── _category_.yml │ │ │ ├── activemq-artemis.md │ │ │ ├── azure-service-bus.md │ │ │ ├── index.md │ │ │ ├── kubernetes.md │ │ │ ├── rabbitmq.md │ │ │ └── sqs.md │ ├── developer-guide │ │ ├── _category_.yml │ │ └── contributing.md │ ├── intro.md │ └── user-guide │ │ ├── _category_.yml │ │ ├── cli │ │ ├── _category_.yml │ │ └── getting-started.md │ │ └── concepts │ │ ├── _category_.yml │ │ ├── environment-variables.md │ │ ├── external-services.md │ │ └── structure.md ├── docusaurus.config.ts ├── package.json ├── pnpm-lock.yaml ├── sidebars.ts ├── sidebarsApi.ts ├── src │ ├── components │ │ └── HomepageFeatures │ │ │ ├── index.tsx │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ └── pages │ │ ├── index.module.css │ │ └── index.tsx ├── static │ ├── .nojekyll │ └── img │ │ ├── docusaurus.png │ │ ├── eclipse-foundation.svg │ │ ├── favicon.ico │ │ ├── ort-logo.svg │ │ ├── ort-server-logo.svg │ │ └── social-card.png └── tsconfig.json └── workers ├── README.md ├── advisor ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── advisor │ │ │ ├── AdvisorComponent.kt │ │ │ ├── AdvisorRunner.kt │ │ │ ├── AdvisorWorker.kt │ │ │ └── Entrypoint.kt │ └── resources │ │ └── application.conf │ └── test │ ├── kotlin │ ├── AdvisorEndpointTest.kt │ ├── AdvisorRunnerTest.kt │ └── AdvisorWorkerTest.kt │ └── resources │ └── resolutions.yml ├── analyzer ├── build.gradle.kts ├── docker │ ├── Analyzer.Dockerfile │ └── scripts │ │ └── set_apt_proxy.sh └── src │ ├── main │ ├── kotlin │ │ └── analyzer │ │ │ ├── AnalyzerComponent.kt │ │ │ ├── AnalyzerDownloader.kt │ │ │ ├── AnalyzerRunner.kt │ │ │ ├── AnalyzerRunnerConfig.kt │ │ │ ├── AnalyzerWorker.kt │ │ │ ├── Entrypoint.kt │ │ │ └── Utils.kt │ └── resources │ │ └── application.conf │ └── test │ ├── kotlin │ ├── AnalyzerDownloaderTest.kt │ ├── AnalyzerEndpointTest.kt │ ├── AnalyzerRunnerTest.kt │ ├── AnalyzerWorkerTest.kt │ └── UtilsTest.kt │ └── resources │ ├── mavenProject │ ├── .custom.ort.yml │ ├── .ort.env.yml │ ├── .ort.yml │ └── pom.xml │ └── resolutions.yml ├── common ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── common │ │ │ ├── Extensions.kt │ │ │ ├── JobIgnoredException.kt │ │ │ ├── OrtRunServiceModule.kt │ │ │ ├── OrtServerFileArchiveStorage.kt │ │ │ ├── RunResult.kt │ │ │ ├── Utils.kt │ │ │ ├── auth │ │ │ ├── AuthenticatedServices.kt │ │ │ ├── AuthenticationInfo.kt │ │ │ ├── AuthenticationListener.kt │ │ │ ├── CredentialResolver.kt │ │ │ ├── OrtServerAuthenticator.kt │ │ │ └── UserInfoSecretAuthenticator.kt │ │ │ ├── context │ │ │ ├── WorkerContext.kt │ │ │ ├── WorkerContextFactory.kt │ │ │ ├── WorkerContextImpl.kt │ │ │ ├── WorkerContextModule.kt │ │ │ └── WorkerOrtConfig.kt │ │ │ └── env │ │ │ ├── ConanGenerator.kt │ │ │ ├── ConfigFileBuilder.kt │ │ │ ├── EnvironmentConfigGenerator.kt │ │ │ ├── EnvironmentForkHelper.kt │ │ │ ├── EnvironmentModule.kt │ │ │ ├── EnvironmentService.kt │ │ │ ├── GeneratorLogger.kt │ │ │ ├── GitConfigGenerator.kt │ │ │ ├── GitCredentialsGenerator.kt │ │ │ ├── GradleInitGenerator.kt │ │ │ ├── MavenSettingsGenerator.kt │ │ │ ├── NetRcGenerator.kt │ │ │ ├── NetRcManager.kt │ │ │ ├── NpmRcGenerator.kt │ │ │ ├── NuGetGenerator.kt │ │ │ ├── YarnRcGenerator.kt │ │ │ ├── config │ │ │ ├── EnvironmentConfigLoader.kt │ │ │ ├── EnvironmentDefinitionFactory.kt │ │ │ ├── RepositoryEnvironmentConfig.kt │ │ │ ├── RepositoryEnvironmentVariableDefinition.kt │ │ │ ├── RepositoryInfrastructureService.kt │ │ │ └── ResolvedEnvironmentConfig.kt │ │ │ └── definition │ │ │ ├── ConanDefinition.kt │ │ │ ├── EnvironmentServiceDefinition.kt │ │ │ ├── EnvironmentVariableDefinition.kt │ │ │ ├── GradleDefinition.kt │ │ │ ├── MavenDefinition.kt │ │ │ ├── NpmDefinition.kt │ │ │ ├── NuGetDefinition.kt │ │ │ └── YarnDefinition.kt │ └── resources │ │ ├── application.conf │ │ ├── init.gradle.kts │ │ └── logback.xml │ └── test │ ├── kotlin │ └── common │ │ ├── ExtensionsTest.kt │ │ ├── JsonSchemaTest.kt │ │ ├── OrtServerFileArchiveStorageTest.kt │ │ ├── UtilsTest.kt │ │ ├── auth │ │ ├── AuthenticationInfoTest.kt │ │ ├── CredentialResolverTest.kt │ │ ├── OrtServerAuthenticatorTest.kt │ │ └── UserInfoSecretAuthenticatorTest.kt │ │ ├── context │ │ ├── WorkerContextTest.kt │ │ └── WorkerOrtConfigTest.kt │ │ └── env │ │ ├── ConanGeneratorTest.kt │ │ ├── ConfigFileBuilderTest.kt │ │ ├── EnvironmentConfigGeneratorTest.kt │ │ ├── EnvironmentForkHelperTest.kt │ │ ├── EnvironmentServiceTest.kt │ │ ├── GitConfigGeneratorTest.kt │ │ ├── GitCredentialsGeneratorTest.kt │ │ ├── GradleInitGeneratorTest.kt │ │ ├── MavenSettingsGeneratorTest.kt │ │ ├── MockConfigFileBuilder.kt │ │ ├── NetRcGeneratorTest.kt │ │ ├── NetRcManagerTest.kt │ │ ├── NpmRcGeneratorTest.kt │ │ ├── NuGetGeneratorTest.kt │ │ ├── YarnRcGeneratorTest.kt │ │ └── config │ │ ├── EnvironmentConfigLoaderTest.kt │ │ └── EnvironmentDefinitionFactoryTest.kt │ └── resources │ ├── .ort.env.all-options.yml │ ├── .ort.env.definitions-hierarchy-services.yml │ ├── .ort.env.definitions.yml │ ├── .ort.env.direct-variables.yml │ ├── .ort.env.no-credentials-types.yml │ ├── .ort.env.no-services.yml │ ├── .ort.env.non-strict.yml │ ├── .ort.env.simple.yml │ ├── .ort.env.variables-non-strict.yml │ ├── .ort.env.variables.yml │ ├── config │ ├── config1.txt │ ├── config2.txt │ └── dir │ │ ├── subConfig1.txt │ │ └── subConfig2.txt │ └── invalid │ ├── .ort.env.definitions-errors-non-strict.yml │ └── .ort.env.definitions-errors.yml ├── config ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ ├── ConfigComponent.kt │ │ ├── ConfigValidationResult.kt │ │ ├── ConfigValidator.kt │ │ ├── ConfigWorker.kt │ │ ├── Entrypoint.kt │ │ └── ValidationScriptTemplate.kt │ └── resources │ │ ├── META-INF │ │ └── kotlin │ │ │ └── script │ │ │ └── templates │ │ │ └── org.eclipse.apoapsis.ortserver.workers.config.ValidationScriptTemplate.classname │ │ └── application.conf │ └── test │ ├── kotlin │ ├── ConfigValidatorTest.kt │ ├── ConfigWorkerTest.kt │ └── EndpointTest.kt │ └── resources │ ├── validation-failure.params.kts │ └── validation-success.params.kts ├── evaluator ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── evaluator │ │ │ ├── Entrypoint.kt │ │ │ ├── EvaluatorComponent.kt │ │ │ ├── EvaluatorRunner.kt │ │ │ └── EvaluatorWorker.kt │ └── resources │ │ └── application.conf │ └── test │ ├── kotlin │ ├── EvaluatorEndpointTest.kt │ ├── EvaluatorRunnerTest.kt │ └── EvaluatorWorkerTest.kt │ └── resources │ ├── example.rules.kts │ ├── license-classifications.yml │ ├── package-configurations.rules.kts │ ├── package-configurations │ └── package-configuration.yml │ └── resolutions.yml ├── notifier ├── build.gradle.kts └── src │ ├── main │ ├── kotlin │ │ └── notifier │ │ │ ├── Entrypoint.kt │ │ │ ├── NotifierComponent.kt │ │ │ ├── NotifierOrtResultGenerator.kt │ │ │ ├── NotifierRunner.kt │ │ │ └── NotifierWorker.kt │ └── resources │ │ └── application.conf │ └── test │ ├── kotlin │ ├── NotifierEndpointTest.kt │ ├── NotifierRunnerTest.kt │ ├── NotifierWorkerTest.kt │ └── notifier │ │ └── NotifierOrtResultGeneratorTest.kt │ └── resources │ ├── example.notifications.kts │ └── resolutions.yml ├── reporter ├── build.gradle.kts ├── docker │ └── Reporter.Dockerfile └── src │ ├── main │ ├── kotlin │ │ └── reporter │ │ │ ├── CustomLicenseFactProvider.kt │ │ │ ├── Entrypoint.kt │ │ │ ├── ReportDownloadLinkGenerator.kt │ │ │ ├── ReportNameMapper.kt │ │ │ ├── ReportStorage.kt │ │ │ ├── ReporterComponent.kt │ │ │ ├── ReporterRunner.kt │ │ │ └── ReporterWorker.kt │ └── resources │ │ └── application.conf │ └── test │ ├── kotlin │ └── reporter │ │ ├── CustomLicenseFactProviderTest.kt │ │ ├── ReportDownloadLinkGeneratorTest.kt │ │ ├── ReportNameMapperTest.kt │ │ ├── ReportStorageTest.kt │ │ ├── ReporterComponentTest.kt │ │ ├── ReporterEndpointTest.kt │ │ ├── ReporterRunnerTest.kt │ │ └── ReporterWorkerTest.kt │ └── resources │ └── resolutions.yml └── scanner ├── build.gradle.kts ├── docker └── Scanner.Dockerfile └── src ├── main ├── kotlin │ └── scanner │ │ ├── Entrypoint.kt │ │ ├── OrtServerNestedProvenanceStorage.kt │ │ ├── OrtServerPackageProvenanceStorage.kt │ │ ├── OrtServerScanResultStorage.kt │ │ ├── PackageProvenanceCache.kt │ │ ├── ScanSummaryHash.kt │ │ ├── ScannerComponent.kt │ │ ├── ScannerRunner.kt │ │ └── ScannerWorker.kt └── resources │ └── application.conf └── test ├── kotlin ├── OrtServerNestedProvenanceStorageTest.kt ├── OrtServerPackageProvenanceStorageTest.kt ├── OrtServerScanResultStorageTest.kt ├── ScanResultFixtures.kt ├── ScanSummaryHashTest.kt ├── ScannerEndpointTest.kt ├── ScannerRunnerTest.kt ├── ScannerWorkerTest.kt └── scanner │ └── PackageProvenanceCacheTest.kt └── resources └── resolutions.yml /.commitlintrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.commitlintrc.yml -------------------------------------------------------------------------------- /.detekt.license.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.detekt.license.template -------------------------------------------------------------------------------- /.detekt.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.detekt.yml -------------------------------------------------------------------------------- /.git-blame-ignore-revs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.git-blame-ignore-revs -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/actions/free-disk-space/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/actions/free-disk-space/action.yml -------------------------------------------------------------------------------- /.github/ort/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/ort/config.yml -------------------------------------------------------------------------------- /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/check-issue-links.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/check-issue-links.yml -------------------------------------------------------------------------------- /.github/workflows/docker-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/docker-build.yml -------------------------------------------------------------------------------- /.github/workflows/ort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/ort.yml -------------------------------------------------------------------------------- /.github/workflows/publish-website.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/publish-website.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/static-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/static-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/website-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.github/workflows/website-test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/copyright/Apache_2_0_ORT_Server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.idea/copyright/Apache_2_0_ORT_Server.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.idea/icon.png -------------------------------------------------------------------------------- /.idea/icon_dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.idea/icon_dark.png -------------------------------------------------------------------------------- /.mailmap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.mailmap -------------------------------------------------------------------------------- /.ort.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.ort.yml -------------------------------------------------------------------------------- /.run/Advisor Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Advisor Worker.run.xml -------------------------------------------------------------------------------- /.run/Analyzer Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Analyzer Worker.run.xml -------------------------------------------------------------------------------- /.run/Compose Latest.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Compose Latest.run.xml -------------------------------------------------------------------------------- /.run/Config Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Config Worker.run.xml -------------------------------------------------------------------------------- /.run/Core.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Core.run.xml -------------------------------------------------------------------------------- /.run/Evaluator Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Evaluator Worker.run.xml -------------------------------------------------------------------------------- /.run/Notifier Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Notifier Worker.run.xml -------------------------------------------------------------------------------- /.run/Orchestrator.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Orchestrator.run.xml -------------------------------------------------------------------------------- /.run/Reporter Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Reporter Worker.run.xml -------------------------------------------------------------------------------- /.run/Run ORT Server (minikube).run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Run ORT Server (minikube).run.xml -------------------------------------------------------------------------------- /.run/Run ORT Server.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Run ORT Server.run.xml -------------------------------------------------------------------------------- /.run/Scanner Worker.run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/Scanner Worker.run.xml -------------------------------------------------------------------------------- /.run/osc --version [jvm].run.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/.run/osc --version [jvm].run.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/LICENSES/Apache-2.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/LICENSES/CC-BY-3.0.txt -------------------------------------------------------------------------------- /LICENSES/CC-BY-ND-4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/LICENSES/CC-BY-ND-4.0.txt -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/LICENSES/MIT.txt -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/README.md -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/REUSE.toml -------------------------------------------------------------------------------- /api/v1/client/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/build.gradle.kts -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/Exceptions.kt -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/HttpClientUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/HttpClientUtils.kt -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/OrtServerClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/OrtServerClient.kt -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/api/RunsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/api/RunsApi.kt -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/api/VersionsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/api/VersionsApi.kt -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/auth/AuthService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/auth/AuthService.kt -------------------------------------------------------------------------------- /api/v1/client/src/commonMain/kotlin/auth/TokenInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/commonMain/kotlin/auth/TokenInfo.kt -------------------------------------------------------------------------------- /api/v1/client/src/jvmTest/kotlin/AuthServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/jvmTest/kotlin/AuthServiceTest.kt -------------------------------------------------------------------------------- /api/v1/client/src/jvmTest/kotlin/HttpClientUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/jvmTest/kotlin/HttpClientUtilsTest.kt -------------------------------------------------------------------------------- /api/v1/client/src/jvmTest/kotlin/RepositoriesApiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/jvmTest/kotlin/RepositoriesApiTest.kt -------------------------------------------------------------------------------- /api/v1/client/src/jvmTest/kotlin/RunsApiTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/jvmTest/kotlin/RunsApiTest.kt -------------------------------------------------------------------------------- /api/v1/client/src/jvmTest/kotlin/TestUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/client/src/jvmTest/kotlin/TestUtils.kt -------------------------------------------------------------------------------- /api/v1/mapping/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/mapping/build.gradle.kts -------------------------------------------------------------------------------- /api/v1/mapping/src/commonMain/kotlin/ApiMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/mapping/src/commonMain/kotlin/ApiMappings.kt -------------------------------------------------------------------------------- /api/v1/model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/build.gradle.kts -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/AdvisorDetails.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/AdvisorDetails.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/AdvisorJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/AdvisorJob.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/AnalyzerJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/AnalyzerJob.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/EcosystemStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/EcosystemStats.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/EnvironmentConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/EnvironmentConfig.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/EvaluatorJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/EvaluatorJob.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Identifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Identifier.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Issue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Issue.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/IssueResolution.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/IssueResolution.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/JobConfigurations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/JobConfigurations.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/JobStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/JobStatus.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Licenses.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Licenses.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/LogLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/LogLevel.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/LogSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/LogSource.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/NotifierJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/NotifierJob.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/OidcConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/OidcConfig.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Options.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Options.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Organization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Organization.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/OrtRun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/OrtRun.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/OrtRunStatistics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/OrtRunStatistics.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/OrtRunSummary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/OrtRunSummary.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Package.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/PluginConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/PluginConfig.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Product.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Product.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Project.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Project.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/RemoteArtifact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/RemoteArtifact.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/ReporterJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/ReporterJob.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Repository.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/RuleViolation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/RuleViolation.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/ScannerJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/ScannerJob.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Severity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Severity.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/SourceCodeOrigin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/SourceCodeOrigin.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/User.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/UserDisplayName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/UserDisplayName.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/VcsInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/VcsInfo.kt -------------------------------------------------------------------------------- /api/v1/model/src/commonMain/kotlin/Vulnerability.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/commonMain/kotlin/Vulnerability.kt -------------------------------------------------------------------------------- /api/v1/model/src/jvmTest/kotlin/RepositoryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/api/v1/model/src/jvmTest/kotlin/RepositoryTest.kt -------------------------------------------------------------------------------- /cli/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/build.gradle.kts -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/AuthCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/AuthCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/ContextStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/ContextStorage.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/DownloadCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/DownloadCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/Extensions.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/InfoCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/InfoCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/LoginCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/LoginCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/LogoutCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/LogoutCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/LogsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/LogsCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/OrtServerMain.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/OrtServerMain.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/ReportsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/ReportsCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/RunsCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/RunsCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/StartCommand.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/StartCommand.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/model/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/model/Exceptions.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/utils/ConfigDirHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/utils/ConfigDirHelper.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/utils/FileHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/utils/FileHelpers.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/utils/OrtServerClientUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/utils/OrtServerClientUtils.kt -------------------------------------------------------------------------------- /cli/src/commonMain/kotlin/utils/PrintHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/commonMain/kotlin/utils/PrintHelper.kt -------------------------------------------------------------------------------- /cli/src/jvmMain/kotlin/utils/ConfigDirHelper.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmMain/kotlin/utils/ConfigDirHelper.jvm.kt -------------------------------------------------------------------------------- /cli/src/jvmMain/kotlin/utils/FileHelpers.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmMain/kotlin/utils/FileHelpers.jvm.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/AuthLoginCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/AuthLoginCommandTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/AuthLogoutCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/AuthLogoutCommandTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/AuthenticationStorageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/AuthenticationStorageTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/ExtensionsTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/InfoCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/InfoCommandTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/LogsCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/LogsCommandTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/ReportsCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/ReportsCommandTest.kt -------------------------------------------------------------------------------- /cli/src/jvmTest/kotlin/StartCommandTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/jvmTest/kotlin/StartCommandTest.kt -------------------------------------------------------------------------------- /cli/src/linuxMain/kotlin/utils/ConfigDirHelper.linux.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/linuxMain/kotlin/utils/ConfigDirHelper.linux.kt -------------------------------------------------------------------------------- /cli/src/linuxMain/kotlin/utils/FileHelpers.linux.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/linuxMain/kotlin/utils/FileHelpers.linux.kt -------------------------------------------------------------------------------- /cli/src/macosMain/kotlin/utils/ConfigDirHelper.macos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/macosMain/kotlin/utils/ConfigDirHelper.macos.kt -------------------------------------------------------------------------------- /cli/src/macosMain/kotlin/utils/FileHelpers.macos.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/macosMain/kotlin/utils/FileHelpers.macos.kt -------------------------------------------------------------------------------- /cli/src/mingwMain/kotlin/utils/ConfigDirHelper.mingw.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/mingwMain/kotlin/utils/ConfigDirHelper.mingw.kt -------------------------------------------------------------------------------- /cli/src/mingwMain/kotlin/utils/FileHelpers.mingw.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/cli/src/mingwMain/kotlin/utils/FileHelpers.mingw.kt -------------------------------------------------------------------------------- /clients/keycloak/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/build.gradle.kts -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/ClientHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/ClientHelper.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/Group.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/Group.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/GroupCount.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/GroupCount.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/GroupId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/GroupId.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/GroupName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/GroupName.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/KeycloakClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/KeycloakClient.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/Role.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/Role.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/RoleId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/RoleId.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/RoleIdHolder.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/RoleIdHolder.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/RoleName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/RoleName.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/User.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/UserCredentials.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/UserCredentials.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/UserId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/UserId.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/UserName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/UserName.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/internal/Client.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/internal/Client.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/internal/Credential.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/internal/Credential.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/internal/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/internal/Extensions.kt -------------------------------------------------------------------------------- /clients/keycloak/src/main/kotlin/internal/TokenInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/main/kotlin/internal/TokenInfo.kt -------------------------------------------------------------------------------- /clients/keycloak/src/test/kotlin/KeycloakTestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/test/kotlin/KeycloakTestData.kt -------------------------------------------------------------------------------- /clients/keycloak/src/testFixtures/kotlin/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/testFixtures/kotlin/Extensions.kt -------------------------------------------------------------------------------- /clients/keycloak/src/testFixtures/kotlin/TestRealm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/clients/keycloak/src/testFixtures/kotlin/TestRealm.kt -------------------------------------------------------------------------------- /components/admin-config/api-model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/admin-config/api-model/build.gradle.kts -------------------------------------------------------------------------------- /components/admin-config/backend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/admin-config/backend/build.gradle.kts -------------------------------------------------------------------------------- /components/authorization/api-model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/authorization/api-model/build.gradle.kts -------------------------------------------------------------------------------- /components/authorization/backend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/authorization/backend/build.gradle.kts -------------------------------------------------------------------------------- /components/plugin-manager/api-model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/plugin-manager/api-model/build.gradle.kts -------------------------------------------------------------------------------- /components/plugin-manager/backend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/plugin-manager/backend/build.gradle.kts -------------------------------------------------------------------------------- /components/secrets/api-model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/secrets/api-model/build.gradle.kts -------------------------------------------------------------------------------- /components/secrets/backend/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/secrets/backend/build.gradle.kts -------------------------------------------------------------------------------- /components/secrets/backend/src/routes/kotlin/Routing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/components/secrets/backend/src/routes/kotlin/Routing.kt -------------------------------------------------------------------------------- /compositions/secrets-routes/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/compositions/secrets-routes/build.gradle.kts -------------------------------------------------------------------------------- /compositions/secrets-routes/src/main/kotlin/Routing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/compositions/secrets-routes/src/main/kotlin/Routing.kt -------------------------------------------------------------------------------- /config/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/README.md -------------------------------------------------------------------------------- /config/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/build.gradle.kts -------------------------------------------------------------------------------- /config/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/git/README.md -------------------------------------------------------------------------------- /config/git/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/git/build.gradle.kts -------------------------------------------------------------------------------- /config/git/src/main/kotlin/GitConfigFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/git/src/main/kotlin/GitConfigFileProvider.kt -------------------------------------------------------------------------------- /config/git/src/test/kotlin/GitConfigFileProviderTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/git/src/test/kotlin/GitConfigFileProviderTest.kt -------------------------------------------------------------------------------- /config/github/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/github/README.md -------------------------------------------------------------------------------- /config/github/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/github/build.gradle.kts -------------------------------------------------------------------------------- /config/github/src/main/kotlin/GitHubConfigCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/github/src/main/kotlin/GitHubConfigCache.kt -------------------------------------------------------------------------------- /config/github/src/main/kotlin/GitHubConfigFileCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/github/src/main/kotlin/GitHubConfigFileCache.kt -------------------------------------------------------------------------------- /config/github/src/main/kotlin/GitHubConfigNoCache.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/github/src/main/kotlin/GitHubConfigNoCache.kt -------------------------------------------------------------------------------- /config/local/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/local/build.gradle.kts -------------------------------------------------------------------------------- /config/local/src/main/kotlin/LocalConfigFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/local/src/main/kotlin/LocalConfigFileProvider.kt -------------------------------------------------------------------------------- /config/secret-file/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/secret-file/README.md -------------------------------------------------------------------------------- /config/secret-file/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/secret-file/build.gradle.kts -------------------------------------------------------------------------------- /config/spi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/build.gradle.kts -------------------------------------------------------------------------------- /config/spi/src/main/kotlin/ConfigFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/main/kotlin/ConfigFileProvider.kt -------------------------------------------------------------------------------- /config/spi/src/main/kotlin/ConfigFileProviderFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/main/kotlin/ConfigFileProviderFactory.kt -------------------------------------------------------------------------------- /config/spi/src/main/kotlin/ConfigManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/main/kotlin/ConfigManager.kt -------------------------------------------------------------------------------- /config/spi/src/main/kotlin/ConfigSecretProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/main/kotlin/ConfigSecretProvider.kt -------------------------------------------------------------------------------- /config/spi/src/main/kotlin/Context.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/main/kotlin/Context.kt -------------------------------------------------------------------------------- /config/spi/src/main/kotlin/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/main/kotlin/Path.kt -------------------------------------------------------------------------------- /config/spi/src/test/kotlin/ConfigManagerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/config/spi/src/test/kotlin/ConfigManagerTest.kt -------------------------------------------------------------------------------- /config/spi/src/test/resources/config/root.txt: -------------------------------------------------------------------------------- 1 | Root config file. 2 | -------------------------------------------------------------------------------- /config/spi/src/test/resources/config/sub/sub1.txt: -------------------------------------------------------------------------------- 1 | sub1 config 2 | -------------------------------------------------------------------------------- /config/spi/src/test/resources/config/sub/sub2.txt: -------------------------------------------------------------------------------- 1 | sub2 config 2 | -------------------------------------------------------------------------------- /config/spi/src/testFixtures/resources/config-files/test.txt: -------------------------------------------------------------------------------- 1 | Test config file. 2 | -------------------------------------------------------------------------------- /core/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/build.gradle.kts -------------------------------------------------------------------------------- /core/src/main/kotlin/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/Application.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/AdminRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/AdminRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/AuthenticationException.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/AuthenticationException.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/AuthenticationRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/AuthenticationRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/DownloadsRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/DownloadsRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/Health.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/Health.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/Liveness.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/Liveness.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/OrganizationsRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/OrganizationsRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/ProductsRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/ProductsRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/RepositoriesRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/RepositoriesRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/RunsRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/RunsRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/UserWithGroupsHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/UserWithGroupsHelper.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/api/VersionsRoute.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/api/VersionsRoute.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/AdminDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/AdminDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/Authentication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/Authentication.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/Constants.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/DownloadsDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/DownloadsDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/HealthDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/HealthDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/OrganizationsDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/OrganizationsDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/ProductsDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/ProductsDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/RepositoriesDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/RepositoriesDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/RunsDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/RunsDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/apiDocs/VersionsDocs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/apiDocs/VersionsDocs.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/di/Module.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/di/Module.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/HTTP.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/HTTP.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Koin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Koin.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Lifecycle.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Lifecycle.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Metrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Metrics.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Monitoring.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Monitoring.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/OpenApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/OpenApi.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Routing.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Routing.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Serialization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Serialization.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/StatusPages.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/StatusPages.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/plugins/Validation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/plugins/Validation.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/services/OrchestratorService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/services/OrchestratorService.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/utils/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/utils/Extensions.kt -------------------------------------------------------------------------------- /core/src/main/kotlin/utils/JobMetrics.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/kotlin/utils/JobMetrics.kt -------------------------------------------------------------------------------- /core/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/resources/application.conf -------------------------------------------------------------------------------- /core/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/main/resources/logback.xml -------------------------------------------------------------------------------- /core/src/test/kotlin/ApplicationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/ApplicationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/Extensions.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/IntegrationTestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/IntegrationTestData.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/AbstractIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/AbstractIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/AdminRouteIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/AdminRouteIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/ErrorsIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/ErrorsIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/HealthIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/HealthIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/OpenApiIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/OpenApiIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/RunsRouteIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/RunsRouteIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/UserWithGroupsHelperTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/UserWithGroupsHelperTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/api/VersionsIntegrationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/api/VersionsIntegrationTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/utils/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/utils/ExtensionsTest.kt -------------------------------------------------------------------------------- /core/src/test/kotlin/utils/GenerateOpenApiSpec.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/kotlin/utils/GenerateOpenApiSpec.kt -------------------------------------------------------------------------------- /core/src/test/resources/application-test-auth.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/resources/application-test-auth.conf -------------------------------------------------------------------------------- /core/src/test/resources/application-test.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/core/src/test/resources/application-test.conf -------------------------------------------------------------------------------- /dao/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/build.gradle.kts -------------------------------------------------------------------------------- /dao/src/main/kotlin/DataSourceConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/DataSourceConfig.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/Database.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/Database.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/Exceptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/Exceptions.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/Query.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/Query.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/SqlQueryTraceLogger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/SqlQueryTraceLogger.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/repositories/ortrun/LabelsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/repositories/ortrun/LabelsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/repositories/ortrun/OrtRunsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/repositories/ortrun/OrtRunsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/CopyrightFindingsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/CopyrightFindingsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/LicenseFindingsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/LicenseFindingsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/NestedProvenancesTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/NestedProvenancesTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/ScanResultsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/ScanResultsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/ScanSummariesTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/ScanSummariesTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/SnippetFindingsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/SnippetFindingsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/SnippetsTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/SnippetsTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/shared/IssuesTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/shared/IssuesTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/shared/VariablesTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/shared/VariablesTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/tables/shared/VcsInfoTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/tables/shared/VcsInfoTable.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/ArrayAggUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/ArrayAggUtils.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/DigestFunction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/DigestFunction.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/Extensions.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/JsonHashFunction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/JsonHashFunction.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/JsonbSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/JsonbSupport.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/SortableEntityClass.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/SortableEntityClass.kt -------------------------------------------------------------------------------- /dao/src/main/kotlin/utils/SortableTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/kotlin/utils/SortableTable.kt -------------------------------------------------------------------------------- /dao/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/resources/application.conf -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V20__secrets.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/resources/db/migration/V20__secrets.sql -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V26__storage.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/resources/db/migration/V26__storage.sql -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V2__products.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/resources/db/migration/V2__products.sql -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V32__removePackageVerificationCode.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE scan_summaries 2 | DROP COLUMN package_verification_code; 3 | -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V4__ortRuns.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/main/resources/db/migration/V4__ortRuns.sql -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V61__ortRunPath.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ort_runs 2 | ADD COLUMN path text NULL; 3 | -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V67__dropCreateMissingArchives.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE scanner_configurations 2 | DROP COLUMN create_missing_archives; 3 | -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V69__ortRunTraceId.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ort_runs 2 | ADD COLUMN trace_id text NULL; 3 | -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V81__addEnvironmentConfigPath.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ort_runs 2 | ADD COLUMN environment_config_path text NULL; 3 | -------------------------------------------------------------------------------- /dao/src/main/resources/db/migration/V97__addResolvedRevision.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE ort_runs 2 | ADD COLUMN resolved_revision text NULL; 3 | -------------------------------------------------------------------------------- /dao/src/test/kotlin/DatabaseTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/test/kotlin/DatabaseTest.kt -------------------------------------------------------------------------------- /dao/src/test/kotlin/UniqueConstrainsViolationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/test/kotlin/UniqueConstrainsViolationTest.kt -------------------------------------------------------------------------------- /dao/src/test/kotlin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/test/kotlin/Utils.kt -------------------------------------------------------------------------------- /dao/src/test/kotlin/utils/ListQueryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/test/kotlin/utils/ListQueryTest.kt -------------------------------------------------------------------------------- /dao/src/test/kotlin/utils/SortableTableTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/test/kotlin/utils/SortableTableTest.kt -------------------------------------------------------------------------------- /dao/src/testFixtures/kotlin/DatabaseTestExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/testFixtures/kotlin/DatabaseTestExtension.kt -------------------------------------------------------------------------------- /dao/src/testFixtures/kotlin/Fixtures.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/testFixtures/kotlin/Fixtures.kt -------------------------------------------------------------------------------- /dao/src/testFixtures/kotlin/MockDatabaseModule.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/testFixtures/kotlin/MockDatabaseModule.kt -------------------------------------------------------------------------------- /dao/src/testFixtures/kotlin/MockTransaction.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/testFixtures/kotlin/MockTransaction.kt -------------------------------------------------------------------------------- /dao/src/testFixtures/resources/logback-test.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/dao/src/testFixtures/resources/logback-test.xml -------------------------------------------------------------------------------- /docker-compose-maintenance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/docker-compose-maintenance.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Base.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/docker/Base.Dockerfile -------------------------------------------------------------------------------- /docker/scripts/export_proxy_certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/docker/scripts/export_proxy_certificates.sh -------------------------------------------------------------------------------- /docker/scripts/import_certificates.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/docker/scripts/import_certificates.sh -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/gradle-daemon-jvm.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradle/gradle-daemon-jvm.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/gradlew.bat -------------------------------------------------------------------------------- /integrations/completions/osc-completion.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/integrations/completions/osc-completion.bash -------------------------------------------------------------------------------- /integrations/completions/osc-completion.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/integrations/completions/osc-completion.fish -------------------------------------------------------------------------------- /integrations/completions/osc-completion.zsh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/integrations/completions/osc-completion.zsh -------------------------------------------------------------------------------- /integrations/schemas/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/integrations/schemas/README.md -------------------------------------------------------------------------------- /logaccess/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/README.md -------------------------------------------------------------------------------- /logaccess/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/build.gradle.kts -------------------------------------------------------------------------------- /logaccess/loki/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/loki/README.md -------------------------------------------------------------------------------- /logaccess/loki/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/loki/build.gradle.kts -------------------------------------------------------------------------------- /logaccess/loki/src/main/kotlin/LokiConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/loki/src/main/kotlin/LokiConfig.kt -------------------------------------------------------------------------------- /logaccess/loki/src/main/kotlin/LokiModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/loki/src/main/kotlin/LokiModel.kt -------------------------------------------------------------------------------- /logaccess/loki/src/test/kotlin/LokiConfigTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/loki/src/test/kotlin/LokiConfigTest.kt -------------------------------------------------------------------------------- /logaccess/spi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/spi/build.gradle.kts -------------------------------------------------------------------------------- /logaccess/spi/src/main/kotlin/LogFileProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/spi/src/main/kotlin/LogFileProvider.kt -------------------------------------------------------------------------------- /logaccess/spi/src/main/kotlin/LogFileService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/spi/src/main/kotlin/LogFileService.kt -------------------------------------------------------------------------------- /logaccess/spi/src/test/kotlin/LogFileServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/spi/src/test/kotlin/LogFileServiceTest.kt -------------------------------------------------------------------------------- /logaccess/spi/src/test/kotlin/LogLevelTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/logaccess/spi/src/test/kotlin/LogLevelTest.kt -------------------------------------------------------------------------------- /model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/build.gradle.kts -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/ActiveOrtRun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/ActiveOrtRun.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/AdvisorJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/AdvisorJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/AnalyzerJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/AnalyzerJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/CountByCategory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/CountByCategory.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/CredentialsType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/CredentialsType.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/EcosystemStats.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/EcosystemStats.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/EnvironmentConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/EnvironmentConfig.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/EvaluatorJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/EvaluatorJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Hierarchy.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Hierarchy.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/HierarchyId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/HierarchyId.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/InfrastructureService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/InfrastructureService.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/JobConfigurations.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/JobConfigurations.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/JobStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/JobStatus.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Jobs.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Jobs.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/LogLevel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/LogLevel.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/LogSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/LogSource.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/NotifierJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/NotifierJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Organization.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Organization.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/OrtRun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/OrtRun.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/OrtRunSummary.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/OrtRunSummary.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/PluginConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/PluginConfig.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Product.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Product.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/ReporterJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/ReporterJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Repository.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Repository.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/RepositoryType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/RepositoryType.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/ResolvableSecret.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/ResolvableSecret.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/ScannerJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/ScannerJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Secret.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Secret.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/SecretSource.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/SecretSource.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/Severity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/Severity.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/SourceCodeOrigin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/SourceCodeOrigin.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/User.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/User.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/UserDisplayName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/UserDisplayName.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/VulnerabilityRating.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/VulnerabilityRating.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/WorkerJob.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/WorkerJob.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/AnalyzerRun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/AnalyzerRun.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/DependencyGraph.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/DependencyGraph.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/Environment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/Environment.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/EvaluatorRun.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/EvaluatorRun.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/Identifier.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/Identifier.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/Issue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/Issue.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/Package.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/Package.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/PackageRunData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/PackageRunData.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/Project.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/Project.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/RemoteArtifact.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/RemoteArtifact.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/RuleViolation.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/RuleViolation.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/VcsInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/VcsInfo.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/advisor/Defect.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/advisor/Defect.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/reporter/Report.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/reporter/Report.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/runs/scanner/Snippet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/runs/scanner/Snippet.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/util/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/util/Extensions.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/util/HierarchyFilter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/util/HierarchyFilter.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/util/ListQueryResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/util/ListQueryResult.kt -------------------------------------------------------------------------------- /model/src/commonMain/kotlin/util/OptionalValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/commonMain/kotlin/util/OptionalValue.kt -------------------------------------------------------------------------------- /model/src/jvmTest/kotlin/CompoundHierarchyIdTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/jvmTest/kotlin/CompoundHierarchyIdTest.kt -------------------------------------------------------------------------------- /model/src/jvmTest/kotlin/ResolvableSecretTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/model/src/jvmTest/kotlin/ResolvableSecretTest.kt -------------------------------------------------------------------------------- /orchestrator/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/build.gradle.kts -------------------------------------------------------------------------------- /orchestrator/src/main/kotlin/Entrypoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/src/main/kotlin/Entrypoint.kt -------------------------------------------------------------------------------- /orchestrator/src/main/kotlin/Orchestrator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/src/main/kotlin/Orchestrator.kt -------------------------------------------------------------------------------- /orchestrator/src/main/kotlin/WorkerScheduleInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/src/main/kotlin/WorkerScheduleInfo.kt -------------------------------------------------------------------------------- /orchestrator/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/src/main/resources/application.conf -------------------------------------------------------------------------------- /orchestrator/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/src/main/resources/logback.xml -------------------------------------------------------------------------------- /orchestrator/src/test/kotlin/OrchestratorTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/orchestrator/src/test/kotlin/OrchestratorTest.kt -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/renovate.json -------------------------------------------------------------------------------- /scripts/cli/generate_completion_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/cli/generate_completion_scripts.sh -------------------------------------------------------------------------------- /scripts/compose/config/evaluator.rules.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/config/evaluator.rules.kts -------------------------------------------------------------------------------- /scripts/compose/config/ort-server.params.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/config/ort-server.params.kts -------------------------------------------------------------------------------- /scripts/compose/grafana/grafana.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/grafana/grafana.ini -------------------------------------------------------------------------------- /scripts/compose/graphite/conf/storage-schemas.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/graphite/conf/storage-schemas.conf -------------------------------------------------------------------------------- /scripts/compose/graphite/storage/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !.gitignore 3 | -------------------------------------------------------------------------------- /scripts/compose/logstash/logstash.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/logstash/logstash.yaml -------------------------------------------------------------------------------- /scripts/compose/logstash/loki.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/logstash/loki.conf -------------------------------------------------------------------------------- /scripts/compose/logstash/pipelines.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/logstash/pipelines.yaml -------------------------------------------------------------------------------- /scripts/compose/secrets.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/compose/secrets.properties -------------------------------------------------------------------------------- /scripts/docker/keycloak/HealthCheck.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/docker/keycloak/HealthCheck.java -------------------------------------------------------------------------------- /scripts/docker/keycloak/init-keycloak.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/docker/keycloak/init-keycloak.sh -------------------------------------------------------------------------------- /scripts/docker/keycloak/master-realm.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/docker/keycloak/master-realm.json -------------------------------------------------------------------------------- /scripts/docker/rabbitmq/enabled_plugins: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/docker/rabbitmq/enabled_plugins -------------------------------------------------------------------------------- /scripts/docker/rabbitmq/load_definition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/docker/rabbitmq/load_definition.json -------------------------------------------------------------------------------- /scripts/docker/rabbitmq/rabbitmq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/docker/rabbitmq/rabbitmq.conf -------------------------------------------------------------------------------- /scripts/helm/ort-server/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/helm/ort-server/.helmignore -------------------------------------------------------------------------------- /scripts/helm/ort-server/Chart.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/helm/ort-server/Chart.lock -------------------------------------------------------------------------------- /scripts/helm/ort-server/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/helm/ort-server/Chart.yaml -------------------------------------------------------------------------------- /scripts/helm/ort-server/templates/artemis.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/helm/ort-server/templates/artemis.yaml -------------------------------------------------------------------------------- /scripts/helm/ort-server/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/helm/ort-server/values.yaml -------------------------------------------------------------------------------- /scripts/requests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/README.md -------------------------------------------------------------------------------- /scripts/requests/authentication.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/authentication.http -------------------------------------------------------------------------------- /scripts/requests/env/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/env/http-client.env.json -------------------------------------------------------------------------------- /scripts/requests/liveness.http: -------------------------------------------------------------------------------- 1 | ### Check application health 2 | GET {{host}}/liveness 3 | -------------------------------------------------------------------------------- /scripts/requests/organizations.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/organizations.http -------------------------------------------------------------------------------- /scripts/requests/products.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/products.http -------------------------------------------------------------------------------- /scripts/requests/repositories.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/repositories.http -------------------------------------------------------------------------------- /scripts/requests/runs.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/runs.http -------------------------------------------------------------------------------- /scripts/requests/users.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/scripts/requests/users.http -------------------------------------------------------------------------------- /secrets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/README.md -------------------------------------------------------------------------------- /secrets/azure-keyvault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/azure-keyvault/README.md -------------------------------------------------------------------------------- /secrets/azure-keyvault/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/azure-keyvault/build.gradle.kts -------------------------------------------------------------------------------- /secrets/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/build.gradle.kts -------------------------------------------------------------------------------- /secrets/file/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/file/build.gradle.kts -------------------------------------------------------------------------------- /secrets/file/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/file/src/main/resources/application.conf -------------------------------------------------------------------------------- /secrets/scaleway/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/scaleway/build.gradle.kts -------------------------------------------------------------------------------- /secrets/scaleway/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/scaleway/src/main/resources/application.conf -------------------------------------------------------------------------------- /secrets/spi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/build.gradle.kts -------------------------------------------------------------------------------- /secrets/spi/src/main/kotlin/Path.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/src/main/kotlin/Path.kt -------------------------------------------------------------------------------- /secrets/spi/src/main/kotlin/SecretStorage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/src/main/kotlin/SecretStorage.kt -------------------------------------------------------------------------------- /secrets/spi/src/main/kotlin/SecretValue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/src/main/kotlin/SecretValue.kt -------------------------------------------------------------------------------- /secrets/spi/src/main/kotlin/SecretsProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/src/main/kotlin/SecretsProvider.kt -------------------------------------------------------------------------------- /secrets/spi/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/src/main/resources/application.conf -------------------------------------------------------------------------------- /secrets/spi/src/test/kotlin/SecretStorageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/spi/src/test/kotlin/SecretStorageTest.kt -------------------------------------------------------------------------------- /secrets/vault/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/vault/README.md -------------------------------------------------------------------------------- /secrets/vault/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/vault/build.gradle.kts -------------------------------------------------------------------------------- /secrets/vault/src/main/kotlin/VaultConfiguration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/vault/src/main/kotlin/VaultConfiguration.kt -------------------------------------------------------------------------------- /secrets/vault/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/vault/src/main/resources/application.conf -------------------------------------------------------------------------------- /secrets/vault/src/test/kotlin/VaultTestContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/secrets/vault/src/test/kotlin/VaultTestContainer.kt -------------------------------------------------------------------------------- /services/admin-config/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/admin-config/build.gradle.kts -------------------------------------------------------------------------------- /services/admin-config/src/main/kotlin/AdminConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/admin-config/src/main/kotlin/AdminConfig.kt -------------------------------------------------------------------------------- /services/admin-config/src/main/kotlin/RuleSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/admin-config/src/main/kotlin/RuleSet.kt -------------------------------------------------------------------------------- /services/authorization/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/authorization/build.gradle.kts -------------------------------------------------------------------------------- /services/content-management/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/content-management/build.gradle.kts -------------------------------------------------------------------------------- /services/hierarchy/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/hierarchy/build.gradle.kts -------------------------------------------------------------------------------- /services/hierarchy/src/main/kotlin/ProductService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/hierarchy/src/main/kotlin/ProductService.kt -------------------------------------------------------------------------------- /services/hierarchy/src/main/kotlin/ProjectService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/hierarchy/src/main/kotlin/ProjectService.kt -------------------------------------------------------------------------------- /services/ort-run/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/build.gradle.kts -------------------------------------------------------------------------------- /services/ort-run/src/main/kotlin/IssueService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/main/kotlin/IssueService.kt -------------------------------------------------------------------------------- /services/ort-run/src/main/kotlin/OrtMappings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/main/kotlin/OrtMappings.kt -------------------------------------------------------------------------------- /services/ort-run/src/main/kotlin/OrtRunService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/main/kotlin/OrtRunService.kt -------------------------------------------------------------------------------- /services/ort-run/src/main/kotlin/PackageService.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/main/kotlin/PackageService.kt -------------------------------------------------------------------------------- /services/ort-run/src/main/kotlin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/main/kotlin/Utils.kt -------------------------------------------------------------------------------- /services/ort-run/src/test/kotlin/IssueServiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/test/kotlin/IssueServiceTest.kt -------------------------------------------------------------------------------- /services/ort-run/src/test/kotlin/UtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/ort-run/src/test/kotlin/UtilsTest.kt -------------------------------------------------------------------------------- /services/report-storage/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/services/report-storage/build.gradle.kts -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /shared/api-mappings/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/api-mappings/build.gradle.kts -------------------------------------------------------------------------------- /shared/api-model/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/api-model/build.gradle.kts -------------------------------------------------------------------------------- /shared/ktor-utils/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/ktor-utils/build.gradle.kts -------------------------------------------------------------------------------- /shared/ktor-utils/src/main/kotlin/OpenApiHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/ktor-utils/src/main/kotlin/OpenApiHelpers.kt -------------------------------------------------------------------------------- /shared/ktor-utils/src/main/kotlin/ResponseHelpers.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/ktor-utils/src/main/kotlin/ResponseHelpers.kt -------------------------------------------------------------------------------- /shared/ort-test-data/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/ort-test-data/build.gradle.kts -------------------------------------------------------------------------------- /shared/ort-test-data/src/main/kotlin/OrtTestData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/ort-test-data/src/main/kotlin/OrtTestData.kt -------------------------------------------------------------------------------- /shared/package-curation-providers/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/package-curation-providers/build.gradle.kts -------------------------------------------------------------------------------- /shared/plugin-info/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/plugin-info/build.gradle.kts -------------------------------------------------------------------------------- /shared/plugin-info/src/main/kotlin/PluginId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/plugin-info/src/main/kotlin/PluginId.kt -------------------------------------------------------------------------------- /shared/plugin-info/src/main/kotlin/PluginInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/plugin-info/src/main/kotlin/PluginInfo.kt -------------------------------------------------------------------------------- /shared/plugin-info/src/test/kotlin/PluginInfoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/plugin-info/src/test/kotlin/PluginInfoTest.kt -------------------------------------------------------------------------------- /shared/reporters/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/shared/reporters/build.gradle.kts -------------------------------------------------------------------------------- /storage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/README.md -------------------------------------------------------------------------------- /storage/azure-blob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/azure-blob/README.md -------------------------------------------------------------------------------- /storage/azure-blob/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/azure-blob/build.gradle.kts -------------------------------------------------------------------------------- /storage/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/build.gradle.kts -------------------------------------------------------------------------------- /storage/database/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/database/README.md -------------------------------------------------------------------------------- /storage/database/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/database/build.gradle.kts -------------------------------------------------------------------------------- /storage/database/src/main/kotlin/LargeObjects.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/database/src/main/kotlin/LargeObjects.kt -------------------------------------------------------------------------------- /storage/database/src/main/kotlin/StorageTable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/database/src/main/kotlin/StorageTable.kt -------------------------------------------------------------------------------- /storage/database/src/test/kotlin/LargeObjectsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/database/src/test/kotlin/LargeObjectsTest.kt -------------------------------------------------------------------------------- /storage/s3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/s3/README.md -------------------------------------------------------------------------------- /storage/s3/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/s3/build.gradle.kts -------------------------------------------------------------------------------- /storage/s3/src/main/kotlin/S3StorageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/s3/src/main/kotlin/S3StorageProvider.kt -------------------------------------------------------------------------------- /storage/s3/src/test/kotlin/S3StorageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/s3/src/test/kotlin/S3StorageTest.kt -------------------------------------------------------------------------------- /storage/spi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/build.gradle.kts -------------------------------------------------------------------------------- /storage/spi/src/main/kotlin/Key.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/main/kotlin/Key.kt -------------------------------------------------------------------------------- /storage/spi/src/main/kotlin/Storage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/main/kotlin/Storage.kt -------------------------------------------------------------------------------- /storage/spi/src/main/kotlin/StorageEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/main/kotlin/StorageEntry.kt -------------------------------------------------------------------------------- /storage/spi/src/main/kotlin/StorageProvider.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/main/kotlin/StorageProvider.kt -------------------------------------------------------------------------------- /storage/spi/src/main/kotlin/TempFileInputStream.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/main/kotlin/TempFileInputStream.kt -------------------------------------------------------------------------------- /storage/spi/src/test/kotlin/StorageEntryTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/test/kotlin/StorageEntryTest.kt -------------------------------------------------------------------------------- /storage/spi/src/test/kotlin/StorageTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/storage/spi/src/test/kotlin/StorageTest.kt -------------------------------------------------------------------------------- /tasks/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/build.gradle.kts -------------------------------------------------------------------------------- /tasks/src/main/kotlin/Task.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/kotlin/Task.kt -------------------------------------------------------------------------------- /tasks/src/main/kotlin/TaskRunner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/kotlin/TaskRunner.kt -------------------------------------------------------------------------------- /tasks/src/main/kotlin/impl/DeleteOldOrtRunsTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/kotlin/impl/DeleteOldOrtRunsTask.kt -------------------------------------------------------------------------------- /tasks/src/main/kotlin/impl/kubernetes/JobHandler.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/kotlin/impl/kubernetes/JobHandler.kt -------------------------------------------------------------------------------- /tasks/src/main/kotlin/impl/kubernetes/ReaperTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/kotlin/impl/kubernetes/ReaperTask.kt -------------------------------------------------------------------------------- /tasks/src/main/kotlin/impl/kubernetes/TimeHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/kotlin/impl/kubernetes/TimeHelper.kt -------------------------------------------------------------------------------- /tasks/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/resources/application.conf -------------------------------------------------------------------------------- /tasks/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/main/resources/logback.xml -------------------------------------------------------------------------------- /tasks/src/test/kotlin/TaskRunnerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/tasks/src/test/kotlin/TaskRunnerTest.kt -------------------------------------------------------------------------------- /transport/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/README.md -------------------------------------------------------------------------------- /transport/activemqartemis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/activemqartemis/README.md -------------------------------------------------------------------------------- /transport/activemqartemis/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/activemqartemis/build.gradle.kts -------------------------------------------------------------------------------- /transport/azure-servicebus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/azure-servicebus/README.md -------------------------------------------------------------------------------- /transport/azure-servicebus/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/azure-servicebus/build.gradle.kts -------------------------------------------------------------------------------- /transport/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/build.gradle.kts -------------------------------------------------------------------------------- /transport/kubernetes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/kubernetes/README.md -------------------------------------------------------------------------------- /transport/kubernetes/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/kubernetes/build.gradle.kts -------------------------------------------------------------------------------- /transport/kubernetes/src/test/resources/kubeconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/kubernetes/src/test/resources/kubeconfig -------------------------------------------------------------------------------- /transport/rabbitmq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/rabbitmq/README.md -------------------------------------------------------------------------------- /transport/rabbitmq/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/rabbitmq/build.gradle.kts -------------------------------------------------------------------------------- /transport/rabbitmq/src/main/kotlin/RabbitMqConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/rabbitmq/src/main/kotlin/RabbitMqConfig.kt -------------------------------------------------------------------------------- /transport/spi/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/build.gradle.kts -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/Endpoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/Endpoint.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/EndpointComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/EndpointComponent.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/Extensions.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/Message.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/Message.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/MessagePublisher.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/MessagePublisher.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/MessageSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/MessageSender.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/Utils.kt -------------------------------------------------------------------------------- /transport/spi/src/main/kotlin/json/JsonSerializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/kotlin/json/JsonSerializer.kt -------------------------------------------------------------------------------- /transport/spi/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/main/resources/application.conf -------------------------------------------------------------------------------- /transport/spi/src/test/kotlin/EndpointTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/test/kotlin/EndpointTest.kt -------------------------------------------------------------------------------- /transport/spi/src/test/kotlin/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/test/kotlin/ExtensionsTest.kt -------------------------------------------------------------------------------- /transport/spi/src/test/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/test/resources/application.conf -------------------------------------------------------------------------------- /transport/spi/src/testFixtures/kotlin/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/spi/src/testFixtures/kotlin/Utils.kt -------------------------------------------------------------------------------- /transport/sqs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/sqs/README.md -------------------------------------------------------------------------------- /transport/sqs/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/sqs/build.gradle.kts -------------------------------------------------------------------------------- /transport/sqs/src/main/kotlin/SqsConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/sqs/src/main/kotlin/SqsConfig.kt -------------------------------------------------------------------------------- /transport/sqs/src/main/kotlin/SqsMessageConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/sqs/src/main/kotlin/SqsMessageConverter.kt -------------------------------------------------------------------------------- /transport/sqs/src/main/kotlin/SqsMessageSender.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/sqs/src/main/kotlin/SqsMessageSender.kt -------------------------------------------------------------------------------- /transport/sqs/src/test/kotlin/SqsConfigManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/transport/sqs/src/test/kotlin/SqsConfigManager.kt -------------------------------------------------------------------------------- /ui/.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore 2 | *.md 3 | dist 4 | node_modules 5 | -------------------------------------------------------------------------------- /ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/.gitignore -------------------------------------------------------------------------------- /ui/.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | src/routeTree.gen.ts 3 | build/ 4 | -------------------------------------------------------------------------------- /ui/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/.prettierrc -------------------------------------------------------------------------------- /ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/README.md -------------------------------------------------------------------------------- /ui/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/components.json -------------------------------------------------------------------------------- /ui/docker/UI.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/docker/UI.Dockerfile -------------------------------------------------------------------------------- /ui/docker/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/docker/entrypoint.sh -------------------------------------------------------------------------------- /ui/docker/nginx.conf.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/docker/nginx.conf.template -------------------------------------------------------------------------------- /ui/eslint.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/eslint.config.js -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/openapi-ts.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/openapi-ts.config.ts -------------------------------------------------------------------------------- /ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/package.json -------------------------------------------------------------------------------- /ui/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/playwright.config.ts -------------------------------------------------------------------------------- /ui/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/pnpm-lock.yaml -------------------------------------------------------------------------------- /ui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/postcss.config.js -------------------------------------------------------------------------------- /ui/public/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/public/favicon.svg -------------------------------------------------------------------------------- /ui/src/@types/@tanstack/react-table.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/@types/@tanstack/react-table.d.ts -------------------------------------------------------------------------------- /ui/src/@types/oidc-client-ts.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/@types/oidc-client-ts.d.ts -------------------------------------------------------------------------------- /ui/src/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/app.tsx -------------------------------------------------------------------------------- /ui/src/assets/cyclonedx-logo-black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/assets/cyclonedx-logo-black.svg -------------------------------------------------------------------------------- /ui/src/assets/cyclonedx-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/assets/cyclonedx-logo-white.svg -------------------------------------------------------------------------------- /ui/src/assets/home-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/assets/home-icon.svg -------------------------------------------------------------------------------- /ui/src/assets/spdx-logo-color.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/assets/spdx-logo-color.svg -------------------------------------------------------------------------------- /ui/src/components/breakable-string.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/breakable-string.tsx -------------------------------------------------------------------------------- /ui/src/components/charts/cvss23-radar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/charts/cvss23-radar-chart.tsx -------------------------------------------------------------------------------- /ui/src/components/charts/cvss4-radar-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/charts/cvss4-radar-chart.tsx -------------------------------------------------------------------------------- /ui/src/components/charts/cvss4-vector-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/charts/cvss4-vector-card.tsx -------------------------------------------------------------------------------- /ui/src/components/charts/epss-chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/charts/epss-chart.tsx -------------------------------------------------------------------------------- /ui/src/components/charts/job-durations.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/charts/job-durations.tsx -------------------------------------------------------------------------------- /ui/src/components/charts/vulnerability-metrics.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/charts/vulnerability-metrics.tsx -------------------------------------------------------------------------------- /ui/src/components/color-theme-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/color-theme-toggle.tsx -------------------------------------------------------------------------------- /ui/src/components/copy-to-clipboard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/copy-to-clipboard.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/data-table-body.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/data-table-body.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/data-table-filter.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/data-table-filter.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/data-table-header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/data-table-header.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/data-table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/data-table.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/filter-multi-select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/filter-multi-select.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/filter-regex.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/filter-regex.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/filter-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/filter-text.tsx -------------------------------------------------------------------------------- /ui/src/components/data-table/mark-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/data-table/mark-items.tsx -------------------------------------------------------------------------------- /ui/src/components/delete-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/delete-dialog.tsx -------------------------------------------------------------------------------- /ui/src/components/delete-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/delete-icon-button.tsx -------------------------------------------------------------------------------- /ui/src/components/dependency-paths.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/dependency-paths.tsx -------------------------------------------------------------------------------- /ui/src/components/ellipsis-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ellipsis-icon-button.tsx -------------------------------------------------------------------------------- /ui/src/components/error-component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/error-component.tsx -------------------------------------------------------------------------------- /ui/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/footer.tsx -------------------------------------------------------------------------------- /ui/src/components/form/as-optional-field.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/form/as-optional-field.ts -------------------------------------------------------------------------------- /ui/src/components/form/multi-select-field.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/form/multi-select-field.tsx -------------------------------------------------------------------------------- /ui/src/components/form/optional-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/form/optional-input.tsx -------------------------------------------------------------------------------- /ui/src/components/form/password-input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/form/password-input.tsx -------------------------------------------------------------------------------- /ui/src/components/form/runs-filter-form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/form/runs-filter-form.tsx -------------------------------------------------------------------------------- /ui/src/components/formatted-value.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/formatted-value.tsx -------------------------------------------------------------------------------- /ui/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/header.tsx -------------------------------------------------------------------------------- /ui/src/components/loading-indicator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/loading-indicator.tsx -------------------------------------------------------------------------------- /ui/src/components/markdown-renderer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/markdown-renderer.tsx -------------------------------------------------------------------------------- /ui/src/components/mode-toggle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/mode-toggle.tsx -------------------------------------------------------------------------------- /ui/src/components/not-found-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/not-found-error.ts -------------------------------------------------------------------------------- /ui/src/components/ort-run-job-status.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ort-run-job-status.tsx -------------------------------------------------------------------------------- /ui/src/components/package-curation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/package-curation.tsx -------------------------------------------------------------------------------- /ui/src/components/page-layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/page-layout.tsx -------------------------------------------------------------------------------- /ui/src/components/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/providers.tsx -------------------------------------------------------------------------------- /ui/src/components/render-property.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/render-property.tsx -------------------------------------------------------------------------------- /ui/src/components/resolutions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/resolutions.tsx -------------------------------------------------------------------------------- /ui/src/components/run-duration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/run-duration.tsx -------------------------------------------------------------------------------- /ui/src/components/siblings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/siblings.tsx -------------------------------------------------------------------------------- /ui/src/components/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/sidebar.tsx -------------------------------------------------------------------------------- /ui/src/components/statistics-card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/statistics-card.tsx -------------------------------------------------------------------------------- /ui/src/components/theme-provider-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/theme-provider-context.tsx -------------------------------------------------------------------------------- /ui/src/components/theme-provider-state.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/theme-provider-state.tsx -------------------------------------------------------------------------------- /ui/src/components/theme-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/theme-provider.tsx -------------------------------------------------------------------------------- /ui/src/components/timestamp-with-utc.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/timestamp-with-utc.tsx -------------------------------------------------------------------------------- /ui/src/components/toast-error.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/toast-error.tsx -------------------------------------------------------------------------------- /ui/src/components/typography.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/typography.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/accordion.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/alert-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/alert-dialog.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/badge-variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/badge-variants.ts -------------------------------------------------------------------------------- /ui/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/breadcrumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/breadcrumb.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/button-variants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/button-variants.ts -------------------------------------------------------------------------------- /ui/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/button.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/card.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/chart.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/chart.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/command.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/form-context.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/form-context.ts -------------------------------------------------------------------------------- /ui/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/form.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/input.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/label.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/layout.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/multiple-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/multiple-selector.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/radio-group.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/radio-group.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/select.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/select.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/switch.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/table.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/table.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/tabs.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/toaster.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/toaster.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /ui/src/components/ui/user-group-row-actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/components/ui/user-group-row-actions.tsx -------------------------------------------------------------------------------- /ui/src/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/config.ts -------------------------------------------------------------------------------- /ui/src/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/globals.css -------------------------------------------------------------------------------- /ui/src/helpers/calculate-duration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/calculate-duration.ts -------------------------------------------------------------------------------- /ui/src/helpers/capitalize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/capitalize.ts -------------------------------------------------------------------------------- /ui/src/helpers/extract-initials.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/extract-initials.ts -------------------------------------------------------------------------------- /ui/src/helpers/get-issue-category.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/get-issue-category.ts -------------------------------------------------------------------------------- /ui/src/helpers/get-status-class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/get-status-class.ts -------------------------------------------------------------------------------- /ui/src/helpers/handle-multisort.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/handle-multisort.ts -------------------------------------------------------------------------------- /ui/src/helpers/identifier-conversion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/identifier-conversion.ts -------------------------------------------------------------------------------- /ui/src/helpers/job-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/job-helpers.ts -------------------------------------------------------------------------------- /ui/src/helpers/resolutions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/resolutions.ts -------------------------------------------------------------------------------- /ui/src/helpers/role-helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/role-helpers.ts -------------------------------------------------------------------------------- /ui/src/helpers/set-custom-favicon.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/set-custom-favicon.ts -------------------------------------------------------------------------------- /ui/src/helpers/sorting-functions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/sorting-functions.ts -------------------------------------------------------------------------------- /ui/src/helpers/value-or-na.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/value-or-na.ts -------------------------------------------------------------------------------- /ui/src/helpers/vulnerability-statistics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/helpers/vulnerability-statistics.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-debounce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/hooks/use-debounce.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-infrastructure-services.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/hooks/use-infrastructure-services.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-secrets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/hooks/use-secrets.ts -------------------------------------------------------------------------------- /ui/src/hooks/use-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/hooks/use-user.ts -------------------------------------------------------------------------------- /ui/src/lib/api-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/api-error.ts -------------------------------------------------------------------------------- /ui/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/constants.ts -------------------------------------------------------------------------------- /ui/src/lib/permissions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/permissions.ts -------------------------------------------------------------------------------- /ui/src/lib/query-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/query-client.ts -------------------------------------------------------------------------------- /ui/src/lib/toast.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/toast.ts -------------------------------------------------------------------------------- /ui/src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/types.ts -------------------------------------------------------------------------------- /ui/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/lib/utils.ts -------------------------------------------------------------------------------- /ui/src/main.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/main.tsx -------------------------------------------------------------------------------- /ui/src/routes/403/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/403/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/__root.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/__root.tsx -------------------------------------------------------------------------------- /ui/src/routes/about/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/about/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/colors/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/colors/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/plugins/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/plugins/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/plugins/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/plugins/route.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/route.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/runs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/runs/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/users/authorization/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/users/authorization/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/users/create-user/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/users/create-user/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/admin/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/admin/users/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/create-organization/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/create-organization/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/organizations/$orgId/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/organizations/$orgId/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/organizations/$orgId/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/organizations/$orgId/route.tsx -------------------------------------------------------------------------------- /ui/src/routes/organizations/$orgId/secrets/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/organizations/$orgId/secrets/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/organizations/$orgId/secrets/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/organizations/$orgId/secrets/route.tsx -------------------------------------------------------------------------------- /ui/src/routes/organizations/$orgId/users/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/organizations/$orgId/users/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/organizations/$orgId/users/route.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/organizations/$orgId/users/route.tsx -------------------------------------------------------------------------------- /ui/src/routes/runs/$runId/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/runs/$runId/index.tsx -------------------------------------------------------------------------------- /ui/src/routes/settings/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/routes/settings/index.tsx -------------------------------------------------------------------------------- /ui/src/schemas/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/schemas/index.ts -------------------------------------------------------------------------------- /ui/src/store/table-prefs.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/store/table-prefs.store.ts -------------------------------------------------------------------------------- /ui/src/store/user-settings.store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/store/user-settings.store.ts -------------------------------------------------------------------------------- /ui/src/ui-env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/ui-env.ts -------------------------------------------------------------------------------- /ui/src/vite-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/src/vite-env.d.ts -------------------------------------------------------------------------------- /ui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/tailwind.config.js -------------------------------------------------------------------------------- /ui/tests/smoke-test.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/tests/smoke-test.spec.ts -------------------------------------------------------------------------------- /ui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/tsconfig.json -------------------------------------------------------------------------------- /ui/tsconfig.node.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/tsconfig.node.json -------------------------------------------------------------------------------- /ui/vite.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/ui/vite.config.ts -------------------------------------------------------------------------------- /utils/config/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/config/build.gradle.kts -------------------------------------------------------------------------------- /utils/config/src/main/kotlin/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/config/src/main/kotlin/Extensions.kt -------------------------------------------------------------------------------- /utils/config/src/test/kotlin/ExtensionsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/config/src/test/kotlin/ExtensionsTest.kt -------------------------------------------------------------------------------- /utils/logging/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/logging/build.gradle.kts -------------------------------------------------------------------------------- /utils/logging/src/main/kotlin/LoggingUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/logging/src/main/kotlin/LoggingUtils.kt -------------------------------------------------------------------------------- /utils/logging/src/main/kotlin/MdcConverter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/logging/src/main/kotlin/MdcConverter.kt -------------------------------------------------------------------------------- /utils/logging/src/test/kotlin/LoggingUtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/logging/src/test/kotlin/LoggingUtilsTest.kt -------------------------------------------------------------------------------- /utils/system/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/system/build.gradle.kts -------------------------------------------------------------------------------- /utils/system/src/commonMain/kotlin/Constants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/system/src/commonMain/kotlin/Constants.kt -------------------------------------------------------------------------------- /utils/system/src/commonMain/kotlin/Environment.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/system/src/commonMain/kotlin/Environment.kt -------------------------------------------------------------------------------- /utils/system/src/jvmMain/kotlin/Environment.jvm.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/system/src/jvmMain/kotlin/Environment.jvm.kt -------------------------------------------------------------------------------- /utils/test/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/test/build.gradle.kts -------------------------------------------------------------------------------- /utils/test/src/commonMain/kotlin/Tags.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/test/src/commonMain/kotlin/Tags.kt -------------------------------------------------------------------------------- /utils/test/src/commonMain/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/utils/test/src/commonMain/resources/logback.xml -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | -------------------------------------------------------------------------------- /website/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/.prettierrc -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/README.md -------------------------------------------------------------------------------- /website/api/.gitignore: -------------------------------------------------------------------------------- 1 | # Ignore generated API docs 2 | *.mdx 3 | sidebar.ts 4 | -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/docs/admin-guide/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 2 2 | label: Admin Guide 3 | -------------------------------------------------------------------------------- /website/docs/admin-guide/architecture/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 3 2 | label: Architecture 3 | -------------------------------------------------------------------------------- /website/docs/admin-guide/getting-started/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 1 2 | label: Getting Started 3 | -------------------------------------------------------------------------------- /website/docs/admin-guide/guides/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 2 2 | label: Guides 3 | -------------------------------------------------------------------------------- /website/docs/admin-guide/guides/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docs/admin-guide/guides/config.md -------------------------------------------------------------------------------- /website/docs/admin-guide/infrastructure/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 4 2 | label: Infrastructure 3 | -------------------------------------------------------------------------------- /website/docs/admin-guide/infrastructure/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docs/admin-guide/infrastructure/index.md -------------------------------------------------------------------------------- /website/docs/admin-guide/infrastructure/secrets/_category_.yml: -------------------------------------------------------------------------------- 1 | label: Secrets 2 | -------------------------------------------------------------------------------- /website/docs/admin-guide/infrastructure/storage/_category_.yml: -------------------------------------------------------------------------------- 1 | label: Storage 2 | -------------------------------------------------------------------------------- /website/docs/admin-guide/infrastructure/transport/_category_.yml: -------------------------------------------------------------------------------- 1 | label: Message Transport 2 | -------------------------------------------------------------------------------- /website/docs/developer-guide/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 3 2 | label: Developer Guide 3 | -------------------------------------------------------------------------------- /website/docs/developer-guide/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docs/developer-guide/contributing.md -------------------------------------------------------------------------------- /website/docs/intro.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docs/intro.md -------------------------------------------------------------------------------- /website/docs/user-guide/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 4 2 | label: User Guide 3 | -------------------------------------------------------------------------------- /website/docs/user-guide/cli/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 2 2 | label: CLI 3 | -------------------------------------------------------------------------------- /website/docs/user-guide/cli/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docs/user-guide/cli/getting-started.md -------------------------------------------------------------------------------- /website/docs/user-guide/concepts/_category_.yml: -------------------------------------------------------------------------------- 1 | position: 1 2 | label: Concepts 3 | -------------------------------------------------------------------------------- /website/docs/user-guide/concepts/structure.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docs/user-guide/concepts/structure.md -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/package.json -------------------------------------------------------------------------------- /website/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/pnpm-lock.yaml -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/sidebarsApi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/sidebarsApi.ts -------------------------------------------------------------------------------- /website/src/components/HomepageFeatures/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/src/components/HomepageFeatures/index.tsx -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/src/pages/index.module.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/static/img/docusaurus.png -------------------------------------------------------------------------------- /website/static/img/eclipse-foundation.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/static/img/eclipse-foundation.svg -------------------------------------------------------------------------------- /website/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/static/img/favicon.ico -------------------------------------------------------------------------------- /website/static/img/ort-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/static/img/ort-logo.svg -------------------------------------------------------------------------------- /website/static/img/ort-server-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/static/img/ort-server-logo.svg -------------------------------------------------------------------------------- /website/static/img/social-card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/static/img/social-card.png -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /workers/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/README.md -------------------------------------------------------------------------------- /workers/advisor/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/advisor/build.gradle.kts -------------------------------------------------------------------------------- /workers/advisor/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/advisor/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/advisor/src/test/kotlin/AdvisorRunnerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/advisor/src/test/kotlin/AdvisorRunnerTest.kt -------------------------------------------------------------------------------- /workers/advisor/src/test/kotlin/AdvisorWorkerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/advisor/src/test/kotlin/AdvisorWorkerTest.kt -------------------------------------------------------------------------------- /workers/advisor/src/test/resources/resolutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/advisor/src/test/resources/resolutions.yml -------------------------------------------------------------------------------- /workers/analyzer/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/build.gradle.kts -------------------------------------------------------------------------------- /workers/analyzer/docker/Analyzer.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/docker/Analyzer.Dockerfile -------------------------------------------------------------------------------- /workers/analyzer/docker/scripts/set_apt_proxy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/docker/scripts/set_apt_proxy.sh -------------------------------------------------------------------------------- /workers/analyzer/src/main/kotlin/analyzer/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/src/main/kotlin/analyzer/Utils.kt -------------------------------------------------------------------------------- /workers/analyzer/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/analyzer/src/test/kotlin/UtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/src/test/kotlin/UtilsTest.kt -------------------------------------------------------------------------------- /workers/analyzer/src/test/resources/resolutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/analyzer/src/test/resources/resolutions.yml -------------------------------------------------------------------------------- /workers/common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/build.gradle.kts -------------------------------------------------------------------------------- /workers/common/src/main/kotlin/common/Extensions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/main/kotlin/common/Extensions.kt -------------------------------------------------------------------------------- /workers/common/src/main/kotlin/common/RunResult.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/main/kotlin/common/RunResult.kt -------------------------------------------------------------------------------- /workers/common/src/main/kotlin/common/Utils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/main/kotlin/common/Utils.kt -------------------------------------------------------------------------------- /workers/common/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/common/src/main/resources/init.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/main/resources/init.gradle.kts -------------------------------------------------------------------------------- /workers/common/src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/main/resources/logback.xml -------------------------------------------------------------------------------- /workers/common/src/test/kotlin/common/UtilsTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/common/src/test/kotlin/common/UtilsTest.kt -------------------------------------------------------------------------------- /workers/common/src/test/resources/config/config1.txt: -------------------------------------------------------------------------------- 1 | Configuration1 -------------------------------------------------------------------------------- /workers/common/src/test/resources/config/config2.txt: -------------------------------------------------------------------------------- 1 | Configuration2 -------------------------------------------------------------------------------- /workers/common/src/test/resources/config/dir/subConfig1.txt: -------------------------------------------------------------------------------- 1 | subConfig1 -------------------------------------------------------------------------------- /workers/common/src/test/resources/config/dir/subConfig2.txt: -------------------------------------------------------------------------------- 1 | subConfig2 -------------------------------------------------------------------------------- /workers/config/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/build.gradle.kts -------------------------------------------------------------------------------- /workers/config/src/main/kotlin/ConfigComponent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/main/kotlin/ConfigComponent.kt -------------------------------------------------------------------------------- /workers/config/src/main/kotlin/ConfigValidator.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/main/kotlin/ConfigValidator.kt -------------------------------------------------------------------------------- /workers/config/src/main/kotlin/ConfigWorker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/main/kotlin/ConfigWorker.kt -------------------------------------------------------------------------------- /workers/config/src/main/kotlin/Entrypoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/main/kotlin/Entrypoint.kt -------------------------------------------------------------------------------- /workers/config/src/main/resources/META-INF/kotlin/script/templates/org.eclipse.apoapsis.ortserver.workers.config.ValidationScriptTemplate.classname: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /workers/config/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/config/src/test/kotlin/ConfigWorkerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/test/kotlin/ConfigWorkerTest.kt -------------------------------------------------------------------------------- /workers/config/src/test/kotlin/EndpointTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/config/src/test/kotlin/EndpointTest.kt -------------------------------------------------------------------------------- /workers/evaluator/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/evaluator/build.gradle.kts -------------------------------------------------------------------------------- /workers/evaluator/src/test/resources/resolutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/evaluator/src/test/resources/resolutions.yml -------------------------------------------------------------------------------- /workers/notifier/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/notifier/build.gradle.kts -------------------------------------------------------------------------------- /workers/notifier/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/notifier/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/notifier/src/test/resources/resolutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/notifier/src/test/resources/resolutions.yml -------------------------------------------------------------------------------- /workers/reporter/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/reporter/build.gradle.kts -------------------------------------------------------------------------------- /workers/reporter/docker/Reporter.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/reporter/docker/Reporter.Dockerfile -------------------------------------------------------------------------------- /workers/reporter/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/reporter/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/reporter/src/test/resources/resolutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/reporter/src/test/resources/resolutions.yml -------------------------------------------------------------------------------- /workers/scanner/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/scanner/build.gradle.kts -------------------------------------------------------------------------------- /workers/scanner/docker/Scanner.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/scanner/docker/Scanner.Dockerfile -------------------------------------------------------------------------------- /workers/scanner/src/main/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/scanner/src/main/resources/application.conf -------------------------------------------------------------------------------- /workers/scanner/src/test/kotlin/ScannerRunnerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/scanner/src/test/kotlin/ScannerRunnerTest.kt -------------------------------------------------------------------------------- /workers/scanner/src/test/kotlin/ScannerWorkerTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/scanner/src/test/kotlin/ScannerWorkerTest.kt -------------------------------------------------------------------------------- /workers/scanner/src/test/resources/resolutions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/eclipse-apoapsis/ort-server/HEAD/workers/scanner/src/test/resources/resolutions.yml --------------------------------------------------------------------------------