diff --git a/build.gradle.kts b/build.gradle.kts index 4b09f7f..d94f467 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -55,7 +55,6 @@ publishing { } repositories { - mavenLocal() maven { name = "GitHubPackages" url = uri("https://maven.pkg.github.com/Cosmo-Tech/cosmotech-api-common") @@ -152,7 +151,7 @@ val springWebVersion = "6.1.4" val springBootVersion = "3.2.5" // Implementation -val cosmotechApiCommonVersion = "1.0.2-SNAPSHOT" +val cosmotechApiCommonVersion = "1.0.1" val azureSpringBootBomVersion = "3.14.0" val azureSDKBomVersion = "1.2.7" val azureKustoIngestVersion = "3.2.0" diff --git a/src/main/kotlin/com/cosmotech/api/azure/CsmAzureSecurityConfiguration.kt b/src/main/kotlin/com/cosmotech/api/azure/CsmAzureSecurityConfiguration.kt index 336d4c6..a8fc2ab 100644 --- a/src/main/kotlin/com/cosmotech/api/azure/CsmAzureSecurityConfiguration.kt +++ b/src/main/kotlin/com/cosmotech/api/azure/CsmAzureSecurityConfiguration.kt @@ -34,7 +34,8 @@ import org.springframework.util.StringUtils @Configuration @EnableWebSecurity -@ConditionalOnProperty(name = ["csm.platform.identityProvider.code"], havingValue = "azure", matchIfMissing = true) +@ConditionalOnProperty( + name = ["csm.platform.identityProvider.code"], havingValue = "azure", matchIfMissing = true) @EnableMethodSecurity(securedEnabled = true, prePostEnabled = true, proxyTargetClass = true) internal open class CsmAzureSecurityConfiguration( private val csmPlatformProperties: CsmPlatformProperties,