Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ class LicenseFileValidation : DependencyFilter {

data.allDependencies.forEach { mod ->
val licenses =
(mod.manifests.map { it.license } +
(mod.manifests.flatMap { manifest -> manifest.licenses.map { it.name } } +
mod.licenseFiles.flatMap { it.fileDetails }.map { it.license } +
mod.poms.flatMap { it.licenses }.map { it.name })
.distinct()
Expand Down
16 changes: 9 additions & 7 deletions extensions/auth/opa/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,18 @@ plugins {
}

val intTestJvmVersion = 21
val intTestBase by configurations.creating {
isCanBeConsumed = false
isCanBeResolved = false
}
val intTestBase =
configurations.create("intTestBase") {
isCanBeConsumed = false
isCanBeResolved = false
}
val intTestBaseSources = sourceSets.create("intTestBase")
val jsonSchemaGenerator = sourceSets.create("jsonSchemaGenerator")
val jsonSchemaGeneratorImplementation by configurations.getting
val jsonSchemaGeneratorImplementation =
configurations.getByName("jsonSchemaGeneratorImplementation")
val opaStartupAction = sourceSets.create("opaStartupAction")
val opaStartupActionCompileOnly by configurations.getting
val opaStartupActionImplementation by configurations.getting
val opaStartupActionCompileOnly = configurations.getByName("opaStartupActionCompileOnly")
val opaStartupActionImplementation = configurations.getByName("opaStartupActionImplementation")
val opaBearerTokenRefreshIntervalProperty =
"polaris.authorization.opa.auth.bearer.file-based.refresh-interval"

Expand Down
2 changes: 1 addition & 1 deletion tools/immutables/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,5 @@ dependencies {
api(libs.immutables.value.annotations)

processor(libs.immutables.value.processor)
processor(project)
processor(project(":polaris-immutables"))
}