This is an automated email from the ASF dual-hosted git repository.
snazy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/polaris.git
The following commit(s) were added to refs/heads/main by this push:
new b67e1a594f Update LICENSE/NOTICE for 1.4.0 release (#3864)
b67e1a594f is described below
commit b67e1a594f740c580fc95b9d7a6cb78810bf6aeb
Author: Robert Stupp <[email protected]>
AuthorDate: Tue Mar 10 17:38:58 2026 +0100
Update LICENSE/NOTICE for 1.4.0 release (#3864)
* Validates the _presence_ of Maven group/artifact-IDs in the LICENSE files.
* Merges the LICENSE/NOTICE files from admin-tool + server into the
distribution's LICENSE/NOTICE files
---
LICENSE | 2 +-
.../src/main/kotlin/LicenseFileValidation.kt | 115 --
.../main/kotlin/licenses/LicenseFileValidation.kt | 141 ++
.../src/main/kotlin/licenses/LicenseNoticeMerge.kt | 151 ++
.../main/kotlin/polaris-license-report.gradle.kts | 21 +-
build.gradle.kts | 4 +-
runtime/admin/build.gradle.kts | 9 +-
runtime/admin/distribution/LICENSE | 3 +-
runtime/distribution/LICENSE | 1526 --------------------
LICENSE => runtime/distribution/LICENSE-HEADER | 146 --
runtime/distribution/NOTICE | 924 ------------
runtime/distribution/NOTICE-HEADER | 8 +
runtime/distribution/build.gradle.kts | 17 +-
runtime/server/build.gradle.kts | 23 +-
runtime/server/distribution/LICENSE | 3 +-
15 files changed, 359 insertions(+), 2734 deletions(-)
diff --git a/LICENSE b/LICENSE
index b84fe17271..19d700dedc 100644
--- a/LICENSE
+++ b/LICENSE
@@ -277,7 +277,7 @@ This product includes code from Project Nessie.
* .github/actions/ci-incr-build-cache-prepare/action.yml
* .github/actions/ci-incr-build-cache-save/action.yml
* .github/actions/setup-test-env/action.yml
-* build-logic/src/main/kotlin/LicenseFileValidation.kt
+* build-logic/src/main/kotlin/licenses/LicenseFileValidation.kt
* build-logic/src/main/kotlin/copiedcode/CopiedCodeCheckerPlugin.kt
* build-logic/src/main/kotlin/copiedcode/CopiedCodeCheckerExtension.kt
* build-logic/src/main/kotlin/publishing/PublishingHelperPlugin.kt
diff --git a/build-logic/src/main/kotlin/LicenseFileValidation.kt
b/build-logic/src/main/kotlin/LicenseFileValidation.kt
deleted file mode 100644
index 0381cef523..0000000000
--- a/build-logic/src/main/kotlin/LicenseFileValidation.kt
+++ /dev/null
@@ -1,115 +0,0 @@
-/*
- * Copyright (C) 2024 Dremio
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-import com.github.jk1.license.LicenseReportExtension
-import com.github.jk1.license.ProjectData
-import com.github.jk1.license.filter.DependencyFilter
-import java.io.File
-import org.gradle.api.GradleException
-
-/**
- * Validates that all dependencies with MIT/BSD/Go/UPL/ISC licenses, and
Apache license, are
- * mentioned in the `LICENSE` file.
- */
-class LicenseFileValidation : DependencyFilter {
- val needsApacheLicenseMention = setOf("Apache")
-
- val needsFullLicenseMention = setOf("MIT", "BSD", "Go", "ISC", "Universal
Permissive")
-
- fun doesNeedApacheMention(licenses: List<String?>): Boolean {
- for (license in licenses) {
- if (license != null) {
- if (needsApacheLicenseMention.any { license.contains(it) }) {
- return true
- }
- }
- }
- return false
- }
-
- fun doesNeedFullMention(licenses: List<String?>): Boolean {
- for (license in licenses) {
- if (license != null) {
- if (needsFullLicenseMention.any { license.contains(it) }) {
- return true
- }
- }
- }
- // no licenses !
- return true
- }
-
- override fun filter(data: ProjectData?): ProjectData {
- data!!
-
- val rootLicenseFile =
data.project.rootProject.file("LICENSE-BINARY-DIST").readText()
-
- val licenseReport =
data.project.extensions.getByType(LicenseReportExtension::class.java)
-
- val missingApacheMentions = mutableSetOf<String>()
- val missingFullMentions = mutableMapOf<String, String>()
-
- data.allDependencies.forEach { mod ->
- val licenses =
- (mod.manifests.map { it.license } +
- mod.licenseFiles.flatMap { it.fileDetails }.map { it.license } +
- mod.poms.flatMap { it.licenses }.map { it.name })
- .distinct()
-
- val groupModule = "${mod.group}:${mod.name}"
- val groupModuleRegex = "^$groupModule$".toRegex(RegexOption.MULTILINE)
- if (!groupModuleRegex.containsMatchIn(rootLicenseFile)) {
- if (doesNeedApacheMention(licenses)) {
- missingApacheMentions.add(groupModule)
- } else if (doesNeedFullMention(licenses)) {
- missingFullMentions[groupModule] =
- """
- ---
- $groupModule
-
- ${mod.licenseFiles.flatMap { it.fileDetails }.filter { it.file !=
null }.map { it.file }
- .map {
File("${licenseReport.absoluteOutputDir}/$it").readText().trim() }
- .distinct()
- .map { "\n\n$it\n" }
- .joinToString("\n")
- }
- """
- .trimIndent()
- }
- }
- }
-
- val missingError = StringBuilder()
- if (!missingApacheMentions.isEmpty()) {
- missingError.append("\n\nMissing Apache License mentions:")
- missingError.append("\n--------------------------------\n")
- missingApacheMentions.sorted().forEach { missingError.append("\n$it") }
- }
- if (!missingFullMentions.isEmpty()) {
- missingError.append("\n\nMissing full license mentions:")
- missingError.append("\n------------------------------\n")
- missingFullMentions.toSortedMap().values.forEach {
missingError.append("\n$it") }
- }
- if (!missingApacheMentions.isEmpty() || !missingFullMentions.isEmpty()) {
-
- throw GradleException(
- "License information for the following artifacts is missing in the
root LICENSE file: $missingError"
- )
- }
-
- return data
- }
-}
diff --git a/build-logic/src/main/kotlin/licenses/LicenseFileValidation.kt
b/build-logic/src/main/kotlin/licenses/LicenseFileValidation.kt
new file mode 100644
index 0000000000..f9a7731ed1
--- /dev/null
+++ b/build-logic/src/main/kotlin/licenses/LicenseFileValidation.kt
@@ -0,0 +1,141 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package licenses
+
+import com.github.jk1.license.LicenseReportExtension
+import com.github.jk1.license.ProjectData
+import com.github.jk1.license.filter.DependencyFilter
+import java.io.File
+import org.gradle.api.GradleException
+
+/**
+ * Validates that all dependencies with MIT/BSD/Go/UPL/ISC licenses, and
Apache license, are
+ * mentioned in the `LICENSE` file.
+ */
+class LicenseFileValidation : DependencyFilter {
+ companion object {
+ const val LICENSE_MENTION_PREFIX = "* Maven group:artifact IDs: "
+ const val SEPARATOR =
+
"--------------------------------------------------------------------------------"
+ }
+
+ fun doesNeedApacheMention(licenses: List<String?>): Boolean =
+ licenses.filterNotNull().any { it.contains("Apache") }
+
+ override fun filter(data: ProjectData?): ProjectData {
+ data!!
+
+ val licenseFile = data.project.file("distribution/LICENSE").readText()
+
+ val licenseReport =
data.project.extensions.getByType(LicenseReportExtension::class.java)
+
+ val missingApacheMentions = mutableSetOf<String>()
+ val missingFullMentions = mutableMapOf<String, String>()
+
+ val allDependenciesGroupArtifactIds =
+ data.allDependencies.map { "${it.group}:${it.name}" }.toSet()
+ val superfluousDependencies =
+ licenseFile
+ .lines()
+ .filter { it.startsWith(LICENSE_MENTION_PREFIX) }
+ .map { it.substring(LICENSE_MENTION_PREFIX.length) }
+ .filter { !allDependenciesGroupArtifactIds.contains(it.trim()) }
+
+ data.allDependencies.forEach { mod ->
+ val licenses =
+ (mod.manifests.map { it.license } +
+ mod.licenseFiles.flatMap { it.fileDetails }.map { it.license } +
+ mod.poms.flatMap { it.licenses }.map { it.name })
+ .distinct()
+
+ val groupModule = "${mod.group}:${mod.name}"
+ val groupModuleRegex =
+ "^\\Q* Maven group:artifact IDs:
$groupModule\\E$".toRegex(RegexOption.MULTILINE)
+ if (!groupModuleRegex.containsMatchIn(licenseFile)) {
+ if (doesNeedApacheMention(licenses)) {
+ missingApacheMentions.add(groupModule)
+ } else {
+ missingFullMentions[groupModule] =
+ """
+ $SEPARATOR
+ This product bundles ...<fill-in-name>.
+
+ * Maven group:artifact IDs: $groupModule
+
+ ${mod.licenseFiles.asSequence()
+ .flatMap { it.fileDetails }
+ .filter { it.file != null }
+ .map { it.file }
+ .map {
File("${licenseReport.absoluteOutputDir}/$it").readText().trim() }
+ .distinct()
+ .joinToString("\n") { "\n\n$it\n" }
+ }
+ """
+ .trimIndent()
+ }
+ }
+ }
+
+ val missingError = StringBuilder()
+ if (!missingApacheMentions.isEmpty()) {
+ missingError.append(
+ """
+
+
+ Missing Apache License mentions:
+ --------------------------------
+ ${missingApacheMentions.sorted().joinToString("\n") {
"$LICENSE_MENTION_PREFIX$it" }}
+ """
+ .trimIndent()
+ )
+ }
+ if (!missingFullMentions.isEmpty()) {
+ missingError.append(
+ """
+
+
+ Missing full license mentions:
+ ------------------------------
+ ${missingFullMentions.toSortedMap().values.joinToString("\n") {
"$LICENSE_MENTION_PREFIX$it" }}
+ """
+ .trimIndent()
+ )
+ }
+ if (!superfluousDependencies.isEmpty()) {
+ missingError.append(
+ """
+
+
+ Superfluous license mentions, should be removed:
+ ------------------------------------------------
+ ${superfluousDependencies.sorted().joinToString("\n") {
"$LICENSE_MENTION_PREFIX$it" }}
+ """
+ .trimIndent()
+ )
+ }
+ if (!missingError.isEmpty()) {
+ throw GradleException(
+ "License information for the following artifacts is missing in the
root LICENSE file: $missingError"
+ )
+ }
+
+ return data
+ }
+}
diff --git a/build-logic/src/main/kotlin/licenses/LicenseNoticeMerge.kt
b/build-logic/src/main/kotlin/licenses/LicenseNoticeMerge.kt
new file mode 100644
index 0000000000..d0dfbb6fb7
--- /dev/null
+++ b/build-logic/src/main/kotlin/licenses/LicenseNoticeMerge.kt
@@ -0,0 +1,151 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package licenses
+
+import javax.inject.Inject
+import org.gradle.api.DefaultTask
+import org.gradle.api.GradleException
+import org.gradle.api.file.ConfigurableFileCollection
+import org.gradle.api.file.DirectoryProperty
+import org.gradle.api.file.RegularFileProperty
+import org.gradle.api.model.ObjectFactory
+import org.gradle.api.tasks.InputFile
+import org.gradle.api.tasks.InputFiles
+import org.gradle.api.tasks.OutputDirectory
+import org.gradle.api.tasks.TaskAction
+import org.gradle.work.DisableCachingByDefault
+
+@DisableCachingByDefault(because = "not worth caching")
+abstract class LicenseNoticeMerge @Inject constructor(objectFactory:
ObjectFactory) :
+ DefaultTask() {
+ @get:OutputDirectory
+ val mergedLicenseNotice: DirectoryProperty =
+ objectFactory
+ .directoryProperty()
+ .convention(project.layout.buildDirectory.dir("merged-license-notice"))
+
+ @get:InputFiles abstract val sourceLicenseNotice: ConfigurableFileCollection
+
+ @get:InputFile
+ val licenseHeaderFile: RegularFileProperty =
+
objectFactory.fileProperty().convention(project.layout.projectDirectory.file("LICENSE-HEADER"))
+
+ @get:InputFile
+ val noticeHeaderFile: RegularFileProperty =
+
objectFactory.fileProperty().convention(project.layout.projectDirectory.file("NOTICE-HEADER"))
+
+ @TaskAction
+ fun mergeLicenseNotices() {
+ val licenseBlocks = readLicenseBlocks()
+ val noticeBlocks = readNoticeFiles()
+
+ mergedLicenseNotice.file("LICENSE").get().asFile.writer().use { writer ->
+ writer.write(licenseHeaderFile.get().asFile.readText())
+ licenseBlocks.forEach { block ->
+ writer.write("\n${LicenseFileValidation.SEPARATOR}\n\n")
+ writer.write("${block.header}\n\n")
+ writer.write("${block.dependencies.joinToString("\n")}\n\n")
+ writer.write("${block.suffix}\n")
+ }
+ writer.write("\n${LicenseFileValidation.SEPARATOR}\n")
+ }
+
+ mergedLicenseNotice.file("NOTICE").get().asFile.writer().use { writer ->
+ writer.write(noticeHeaderFile.get().asFile.readText())
+ noticeBlocks.forEach { block ->
+ writer.write("\n${LicenseFileValidation.SEPARATOR}\n\n")
+ writer.write("${block}\n\n")
+ }
+ writer.write("\n${LicenseFileValidation.SEPARATOR}\n")
+ }
+ }
+
+ data class LicenseBlock(val header: String, val dependencies: List<String>,
val suffix: String)
+
+ private fun readLicenseBlocks(): Collection<LicenseBlock> {
+ val errors = mutableListOf<String>()
+ val blocks =
+ sourceLicenseNotice
+ .flatMap { it ->
+ val license = it.resolve("LICENSE").readText()
+ license
+ .split("\n${LicenseFileValidation.SEPARATOR}\n")
+ .map { it.trim() }
+ .filterIndexed { i, s -> i > 0 && !s.isBlank() }
+ .map {
+ val lines = it.split("\n")
+ val iter = lines.iterator()
+ val header = iter.next()
+ if (!iter.next().isBlank()) {
+ errors.add(
+ "* Invalid line after license block header for '$header',
expected an empty line"
+ )
+ }
+ val dependencies = mutableListOf<String>()
+ val suffix = StringBuilder()
+ while (iter.hasNext()) {
+ val ln = iter.next().trim()
+ if
(ln.startsWith(LicenseFileValidation.LICENSE_MENTION_PREFIX)) {
+ dependencies.add(ln)
+ } else {
+ suffix.append(ln).append("\n")
+ while (iter.hasNext()) {
+ suffix.append(iter.next().trim()).append("\n")
+ }
+ break
+ }
+ }
+ LicenseBlock(header, dependencies, suffix.toString().trim())
+ }
+ }
+ .groupingBy { it.header }
+ .reduce { key, accumulator, element ->
+ if (accumulator.suffix != element.suffix) {
+ errors.add(
+ "* License information for '$key' differs across the imported
LICENSE files:\n${accumulator.suffix}\n${element.suffix}\n"
+ )
+ }
+ LicenseBlock(
+ key,
+
accumulator.dependencies.plus(element.dependencies).sorted().distinct(),
+ accumulator.suffix,
+ )
+ }
+ .values
+
+ if (errors.isNotEmpty())
+ throw GradleException("License information validation failed:\n" +
errors.joinToString("\n"))
+
+ return blocks
+ }
+
+ private fun readNoticeFiles(): Collection<String> =
+ sourceLicenseNotice
+ .flatMap { it ->
+ it
+ .resolve("NOTICE")
+ .readText()
+ .split("\n${LicenseFileValidation.SEPARATOR}\n")
+ .map { it.trim() }
+ .drop(1)
+ .filter { it.isNotBlank() }
+ }
+ .distinct()
+}
diff --git a/build-logic/src/main/kotlin/polaris-license-report.gradle.kts
b/build-logic/src/main/kotlin/polaris-license-report.gradle.kts
index ab0a76bea4..4a0e53c043 100644
--- a/build-logic/src/main/kotlin/polaris-license-report.gradle.kts
+++ b/build-logic/src/main/kotlin/polaris-license-report.gradle.kts
@@ -20,8 +20,10 @@
import com.github.jk1.license.filter.LicenseBundleNormalizer
import com.github.jk1.license.render.InventoryHtmlReportRenderer
import com.github.jk1.license.render.JsonReportRenderer
+import com.github.jk1.license.render.ReportRenderer
import com.github.jk1.license.render.XmlReportRenderer
-import java.util.*
+import com.github.jk1.license.task.ReportTask
+import licenses.LicenseFileValidation
plugins { id("com.github.jk1.dependency-license-report") }
@@ -37,24 +39,29 @@ afterEvaluate {
)
allowedLicensesFile =
rootProject.projectDir.resolve("gradle/license/allowed-licenses.json")
renderers =
- arrayOf(InventoryHtmlReportRenderer("index.html"), JsonReportRenderer(),
XmlReportRenderer())
+ arrayOf<ReportRenderer>(
+ InventoryHtmlReportRenderer("index.html"),
+ JsonReportRenderer(),
+ XmlReportRenderer(),
+ )
excludeBoms = true
outputDir =
"${project.layout.buildDirectory.get()}/reports/dependency-license"
+ configurations = arrayOf("quarkusProdRuntimeClasspathConfiguration")
}
}
val generateLicenseReport =
- tasks.named("generateLicenseReport") {
+ tasks.named<ReportTask>("generateLicenseReport") {
inputs
.files(
rootProject.projectDir.resolve("gradle/license/normalizer-bundle.json"),
rootProject.projectDir.resolve("gradle/license/allowed-licenses.json"),
)
.withPathSensitivity(PathSensitivity.RELATIVE)
- inputs.property("renderersHash", Arrays.hashCode(licenseReport.renderers))
- inputs.property("filtersHash", Arrays.hashCode(licenseReport.filters))
- inputs.property("excludesHash", Arrays.hashCode(licenseReport.excludes))
- inputs.property("excludeGroupsHash",
Arrays.hashCode(licenseReport.excludeGroups))
+ inputs.property("renderersHash", licenseReport.renderers.contentHashCode())
+ inputs.property("filtersHash", licenseReport.filters.contentHashCode())
+ inputs.property("excludesHash", licenseReport.excludes.contentHashCode())
+ inputs.property("excludeGroupsHash",
licenseReport.excludeGroups.contentHashCode())
}
val licenseReportZip =
diff --git a/build.gradle.kts b/build.gradle.kts
index 322cb783f8..5a892fba86 100644
--- a/build.gradle.kts
+++ b/build.gradle.kts
@@ -63,8 +63,8 @@ tasks.named<RatTask>("rat").configure {
excludes.add("ide-name.txt")
excludes.add("version.txt")
- excludes.add("LICENSE")
- excludes.add("NOTICE")
+ excludes.add("**/LICENSE*")
+ excludes.add("**/NOTICE*")
excludes.add("**/no-license-notice-marker")
diff --git a/runtime/admin/build.gradle.kts b/runtime/admin/build.gradle.kts
index 042502cb46..f1deffd143 100644
--- a/runtime/admin/build.gradle.kts
+++ b/runtime/admin/build.gradle.kts
@@ -21,7 +21,7 @@ plugins {
alias(libs.plugins.quarkus)
id("org.kordamp.gradle.jandex")
id("polaris-runtime")
- // id("polaris-license-report")
+ id("polaris-license-report")
}
dependencies {
@@ -94,7 +94,14 @@ val distributionElements by
isCanBeResolved = false
}
+val licenseNoticeElements by
+ configurations.creating {
+ isCanBeConsumed = true
+ isCanBeResolved = false
+ }
+
// Register the quarkus app directory as an artifact
artifacts {
add("distributionElements", layout.buildDirectory.dir("quarkus-app")) {
builtBy("quarkusBuild") }
+ add("licenseNoticeElements", layout.projectDirectory.dir("distribution"))
}
diff --git a/runtime/admin/distribution/LICENSE
b/runtime/admin/distribution/LICENSE
index 232700b425..5e614a7d47 100644
--- a/runtime/admin/distribution/LICENSE
+++ b/runtime/admin/distribution/LICENSE
@@ -297,6 +297,7 @@ This product bundles Quarkus.
* Maven group:artifact IDs: io.quarkus:quarkus-datasource
* Maven group:artifact IDs: io.quarkus:quarkus-datasource-common
* Maven group:artifact IDs: io.quarkus:quarkus-development-mode-spi
+* Maven group:artifact IDs: io.quarkus:quarkus-devservices
* Maven group:artifact IDs: io.quarkus:quarkus-fs-util
* Maven group:artifact IDs: io.quarkus:quarkus-ide-launcher
* Maven group:artifact IDs: io.quarkus:quarkus-jdbc-postgresql
@@ -308,7 +309,6 @@ This product bundles Quarkus.
* Maven group:artifact IDs: io.quarkus:quarkus-narayana-jta
* Maven group:artifact IDs: io.quarkus:quarkus-netty
* Maven group:artifact IDs: io.quarkus:quarkus-picocli
-* Maven group:artifact IDs: io.quarkus:quarkus-registry
* Maven group:artifact IDs: io.quarkus:quarkus-security-runtime-spi
* Maven group:artifact IDs: io.quarkus:quarkus-smallrye-context-propagation
* Maven group:artifact IDs: io.quarkus:quarkus-tls-registry
@@ -317,6 +317,7 @@ This product bundles Quarkus.
* Maven group:artifact IDs: io.quarkus:quarkus-vertx
* Maven group:artifact IDs: io.quarkus:quarkus-vertx-http
* Maven group:artifact IDs: io.quarkus:quarkus-vertx-latebound-mdc-provider
+* Maven group:artifact IDs: io.quarkus:quarkus-value-registry
* Maven group:artifact IDs: io.quarkus:quarkus-virtual-threads
* Maven group:artifact IDs: io.quarkus.security:quarkus-security
diff --git a/runtime/distribution/LICENSE b/runtime/distribution/LICENSE
deleted file mode 100644
index 3d74aa5500..0000000000
--- a/runtime/distribution/LICENSE
+++ /dev/null
@@ -1,1526 +0,0 @@
- Apache License
- Version 2.0, January 2004
- http://www.apache.org/licenses/
-
- TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
-
- 1. Definitions.
-
- "License" shall mean the terms and conditions for use, reproduction,
- and distribution as defined by Sections 1 through 9 of this document.
-
- "Licensor" shall mean the copyright owner or entity authorized by
- the copyright owner that is granting the License.
-
- "Legal Entity" shall mean the union of the acting entity and all
- other entities that control, are controlled by, or are under common
- control with that entity. For the purposes of this definition,
- "control" means (i) the power, direct or indirect, to cause the
- direction or management of such entity, whether by contract or
- otherwise, or (ii) ownership of fifty percent (50%) or more of the
- outstanding shares, or (iii) beneficial ownership of such entity.
-
- "You" (or "Your") shall mean an individual or Legal Entity
- exercising permissions granted by this License.
-
- "Source" form shall mean the preferred form for making modifications,
- including but not limited to software source code, documentation
- source, and configuration files.
-
- "Object" form shall mean any form resulting from mechanical
- transformation or translation of a Source form, including but
- not limited to compiled object code, generated documentation,
- and conversions to other media types.
-
- "Work" shall mean the work of authorship, whether in Source or
- Object form, made available under the License, as indicated by a
- copyright notice that is included in or attached to the work
- (an example is provided in the Appendix below).
-
- "Derivative Works" shall mean any work, whether in Source or Object
- form, that is based on (or derived from) the Work and for which the
- editorial revisions, annotations, elaborations, or other modifications
- represent, as a whole, an original work of authorship. For the purposes
- of this License, Derivative Works shall not include works that remain
- separable from, or merely link (or bind by name) to the interfaces of,
- the Work and Derivative Works thereof.
-
- "Contribution" shall mean any work of authorship, including
- the original version of the Work and any modifications or additions
- to that Work or Derivative Works thereof, that is intentionally
- submitted to Licensor for inclusion in the Work by the copyright owner
- or by an individual or Legal Entity authorized to submit on behalf of
- the copyright owner. For the purposes of this definition, "submitted"
- means any form of electronic, verbal, or written communication sent
- to the Licensor or its representatives, including but not limited to
- communication on electronic mailing lists, source code control systems,
- and issue tracking systems that are managed by, or on behalf of, the
- Licensor for the purpose of discussing and improving the Work, but
- excluding communication that is conspicuously marked or otherwise
- designated in writing by the copyright owner as "Not a Contribution."
-
- "Contributor" shall mean Licensor and any individual or Legal Entity
- on behalf of whom a Contribution has been received by Licensor and
- subsequently incorporated within the Work.
-
- 2. Grant of Copyright License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- copyright license to reproduce, prepare Derivative Works of,
- publicly display, publicly perform, sublicense, and distribute the
- Work and such Derivative Works in Source or Object form.
-
- 3. Grant of Patent License. Subject to the terms and conditions of
- this License, each Contributor hereby grants to You a perpetual,
- worldwide, non-exclusive, no-charge, royalty-free, irrevocable
- (except as stated in this section) patent license to make, have made,
- use, offer to sell, sell, import, and otherwise transfer the Work,
- where such license applies only to those patent claims licensable
- by such Contributor that are necessarily infringed by their
- Contribution(s) alone or by combination of their Contribution(s)
- with the Work to which such Contribution(s) was submitted. If You
- institute patent litigation against any entity (including a
- cross-claim or counterclaim in a lawsuit) alleging that the Work
- or a Contribution incorporated within the Work constitutes direct
- or contributory patent infringement, then any patent licenses
- granted to You under this License for that Work shall terminate
- as of the date such litigation is filed.
-
- 4. Redistribution. You may reproduce and distribute copies of the
- Work or Derivative Works thereof in any medium, with or without
- modifications, and in Source or Object form, provided that You
- meet the following conditions:
-
- (a) You must give any other recipients of the Work or
- Derivative Works a copy of this License; and
-
- (b) You must cause any modified files to carry prominent notices
- stating that You changed the files; and
-
- (c) You must retain, in the Source form of any Derivative Works
- that You distribute, all copyright, patent, trademark, and
- attribution notices from the Source form of the Work,
- excluding those notices that do not pertain to any part of
- the Derivative Works; and
-
- (d) If the Work includes a "NOTICE" text file as part of its
- distribution, then any Derivative Works that You distribute must
- include a readable copy of the attribution notices contained
- within such NOTICE file, excluding those notices that do not
- pertain to any part of the Derivative Works, in at least one
- of the following places: within a NOTICE text file distributed
- as part of the Derivative Works; within the Source form or
- documentation, if provided along with the Derivative Works; or,
- within a display generated by the Derivative Works, if and
- wherever such third-party notices normally appear. The contents
- of the NOTICE file are for informational purposes only and
- do not modify the License. You may add Your own attribution
- notices within Derivative Works that You distribute, alongside
- or as an addendum to the NOTICE text from the Work, provided
- that such additional attribution notices cannot be construed
- as modifying the License.
-
- You may add Your own copyright statement to Your modifications and
- may provide additional or different license terms and conditions
- for use, reproduction, or distribution of Your modifications, or
- for any such Derivative Works as a whole, provided Your use,
- reproduction, and distribution of the Work otherwise complies with
- the conditions stated in this License.
-
- 5. Submission of Contributions. Unless You explicitly state otherwise,
- any Contribution intentionally submitted for inclusion in the Work
- by You to the Licensor shall be under the terms and conditions of
- this License, without any additional terms or conditions.
- Notwithstanding the above, nothing herein shall supersede or modify
- the terms of any separate license agreement you may have executed
- with Licensor regarding such Contributions.
-
- 6. Trademarks. This License does not grant permission to use the trade
- names, trademarks, service marks, or product names of the Licensor,
- except as required for reasonable and customary use in describing the
- origin of the Work and reproducing the content of the NOTICE file.
-
- 7. Disclaimer of Warranty. Unless required by applicable law or
- agreed to in writing, Licensor provides the Work (and each
- Contributor provides its Contributions) on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
- implied, including, without limitation, any warranties or conditions
- of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
- PARTICULAR PURPOSE. You are solely responsible for determining the
- appropriateness of using or redistributing the Work and assume any
- risks associated with Your exercise of permissions under this License.
-
- 8. Limitation of Liability. In no event and under no legal theory,
- whether in tort (including negligence), contract, or otherwise,
- unless required by applicable law (such as deliberate and grossly
- negligent acts) or agreed to in writing, shall any Contributor be
- liable to You for damages, including any direct, indirect, special,
- incidental, or consequential damages of any character arising as a
- result of this License or out of the use or inability to use the
- Work (including but not limited to damages for loss of goodwill,
- work stoppage, computer failure or malfunction, or any and all
- other commercial damages or losses), even if such Contributor
- has been advised of the possibility of such damages.
-
- 9. Accepting Warranty or Additional Liability. While redistributing
- the Work or Derivative Works thereof, You may choose to offer,
- and charge a fee for, acceptance of support, warranty, indemnity,
- or other liability obligations and/or rights consistent with this
- License. However, in accepting such obligations, You may act only
- on Your own behalf and on Your sole responsibility, not on behalf
- of any other Contributor, and only if You agree to indemnify,
- defend, and hold each Contributor harmless for any liability
- incurred by, or claims asserted against, such Contributor by reason
- of your accepting any such warranty or additional liability.
-
- END OF TERMS AND CONDITIONS
-
- APPENDIX: How to apply the Apache License to your work.
-
- To apply the Apache License to your work, attach the following
- boilerplate notice, with the fields enclosed by brackets "[]"
- replaced with your own identifying information. (Don't include
- the brackets!) The text should be enclosed in the appropriate
- comment syntax for the file format. We also recommend that a
- file or class name and description of purpose be included on the
- same "printed page" as the copyright notice for easier
- identification within third-party archives.
-
- Copyright [yyyy] [name of copyright owner]
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
-
---------------------------------------------------------------------------------
-
-This propduct bundles and includes code from Apache Iceberg.
-
-Copyright: Copyright 2017-2025 The Apache Software Foundation
-Home page: https://iceberg.apache.org
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles and includes code from Netty.
-
-Copyright: Copyright © 2025 The Netty project
-Home page: https://netty.io/
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles org.crac.
-
-Project URL: https://github.com/crac/org.crac
-License: BSD 2-Clause
-| Copyright 2017-2022 Azul Systems, Inc.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| 1. Redistributions of source code must retain the above copyright notice,
-| this list of conditions and the following disclaimer.
-|
-| 2. Redistributions in binary form must reproduce the above copyright notice,
-| this list of conditions and the following disclaimer in the documentation
-| and/or other materials provided with the distribution.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-| ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
-| POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Quarkus.
-
-Project URL: https://quarkus.io/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles SmallRye.
-
-Project URL: https://smallrye.io/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Quarkus Amazon Services.
-
-Project URL: https://github.com/quarkiverse/quarkus-amazon-services
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles JBoss Loggging.
-
-Project URL: http://www.jboss.org
-License: Apache License 2.0 -
https://repository.jboss.org/licenses/apache-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Brotli4j.
-
-Project URL: https://github.com/hyperxpro/Brotli4j
-License: Apache License 2.0 -
https://github.com/hyperxpro/Brotli4j/blob/v1.16.0/LICENSE
-
---------------------------------------------------------------------------------
-
-This product bundles Auth0 Java JWT.
-
-License: MIT License
-| The MIT License (MIT)
-|
-| Copyright (c) 2015 Auth0, Inc. <[email protected]> (http://auth0.com)
-|
-| Permission is hereby granted, free of charge, to any person obtaining a copy
-| of this software and associated documentation files (the "Software"), to deal
-| in the Software without restriction, including without limitation the rights
-| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-| copies of the Software, and to permit persons to whom the Software is
-| furnished to do so, subject to the following conditions:
-|
-| The above copyright notice and this permission notice shall be included in
all
-| copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-| SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles Azure SDK for Java.
-
-Project URL: https://github.com/Azure/azure-sdk-for-java
-License: MIT License
-| The MIT License (MIT)
-|
-| Copyright (c) 2015 Microsoft
-|
-| Permission is hereby granted, free of charge, to any person obtaining a copy
-| of this software and associated documentation files (the "Software"), to deal
-| in the Software without restriction, including without limitation the rights
-| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-| copies of the Software, and to permit persons to whom the Software is
-| furnished to do so, subject to the following conditions:
-|
-| The above copyright notice and this permission notice shall be included in
all
-| copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
-| SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles FasterXML Java Classmate.
-
-Project URL: https://github.com/FasterXML/java-classmate
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Jackson JSON Processor.
-
-Project URL: https://github.com/FasterXML/jackson
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Woodstox.
-
-Project URL: https://github.com/FasterXML/woodstox
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Caffeine.
-
-Project URL: https://github.com/ben-manes/caffeine
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Android Annotations.
-
-Project URL: http://source.android.com/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google API Client.
-
-Project URL: https://github.com/googleapis/google-api-java-client
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google API Common.
-
-Project URL: https://github.com/googleapis/api-common-java
-License: BSD 3-Clause
-| Copyright 2016, Google Inc.
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are
-| met:
-|
-| * Redistributions of source code must retain the above copyright
-| notice, this list of conditions and the following disclaimer.
-| * Redistributions in binary form must reproduce the above
-| copyright notice, this list of conditions and the following disclaimer
-| in the documentation and/or other materials provided with the
-| distribution.
-| * Neither the name of Google Inc. nor the names of its
-| contributors may be used to endorse or promote products derived from
-| this software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Google GAX.
-
-Project URL: https://github.com/googleapis/gax-java
-License: BSD 3-Clause
-| Copyright 2016, Google Inc. All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are
-| met:
-|
-| * Redistributions of source code must retain the above copyright
-| notice, this list of conditions and the following disclaimer.
-| * Redistributions in binary form must reproduce the above
-| copyright notice, this list of conditions and the following disclaimer
-| in the documentation and/or other materials provided with the
-| distribution.
-| * Neither the name of Google Inc. nor the names of its
-| contributors may be used to endorse or promote products derived from
-| this software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Google Storage APIs.
-
-Project URL: https://github.com/googleapis/java-storage
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This produt bundles Google SDK Platform for Java.
-
-Project URL: https://github.com/googleapis/sdk-platform-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google Auth Library.
-
-Project URL: https://github.com/googleapis/google-auth-library-java
-License: BSD 3-Clause
-| Copyright 2014, Google Inc. All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are
-| met:
-|
-| * Redistributions of source code must retain the above copyright
-| notice, this list of conditions and the following disclaimer.
-| * Redistributions in binary form must reproduce the above
-| copyright notice, this list of conditions and the following disclaimer
-| in the documentation and/or other materials provided with the
-| distribution.
-|
-| * Neither the name of Google Inc. nor the names of its
-| contributors may be used to endorse or promote products derived from
-| this software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Google Auto Value annotations.
-
-Project URL: https://github.com/google/auto
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google Cloud APIs for Java.
-
-Project URL: https://github.com/googleapis/google-cloud-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles GCP OpenTelemetry.
-
-Project URL:
https://github.com/GoogleCloudPlatform/opentelemetry-operations-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles GSon.
-
-Project URL: https://github.com/google/gson
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles ErrorProne annotations.
-
-Project URL: https://errorprone.info
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Guava.
-
-Project URL: https://github.com/google/guava
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google Http Client.
-
-Project URL: https://github.com/googleapis/google-http-java-client
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google j2objc annotations.
-
-Project URL: https://github.com/google/j2objc/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Google OAuth Client.
-
-Project URL: https://github.com/googleapis/google-oauth-java-client
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Protobuf.
-
-Project URL: https://developers.google.com/protocol-buffers/
-License: BSD 3-Clause
-| Copyright 2008 Google Inc. All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are
-| met:
-|
-| * Redistributions of source code must retain the above copyright
-| notice, this list of conditions and the following disclaimer.
-| * Redistributions in binary form must reproduce the above
-| copyright notice, this list of conditions and the following disclaimer
-| in the documentation and/or other materials provided with the
-| distribution.
-| * Neither the name of Google Inc. nor the names of its
-| contributors may be used to endorse or promote products derived from
-| this software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-|
-| Code generated by the Protocol Buffer compiler is owned by the owner
-| of the input file used when generating it. This code is not
-| standalone and requires a support library to be linked with it. This
-| support library is itself covered by the above license.
-
---------------------------------------------------------------------------------
-
-This product bundles Google re2j.
-
-Project URL: http://github.com/google/re2j
-License: Go License
-| This is a work derived from Russ Cox's RE2 in Go, whose license
-| http://golang.org/LICENSE is as follows:
-|
-| Copyright (c) 2009 The Go Authors. All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are
-| met:
-|
-| * Redistributions of source code must retain the above copyright
-| notice, this list of conditions and the following disclaimer.
-|
-| * Redistributions in binary form must reproduce the above copyright
-| notice, this list of conditions and the following disclaimer in
-| the documentation and/or other materials provided with the
-| distribution.
-|
-| * Neither the name of Google Inc. nor the names of its contributors
-| may be used to endorse or promote products derived from this
-| software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
-| OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
-| SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
-| DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
-| THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
-| (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles JCraft JSch.
-
-Project URL: http://www.jcraft.com/jsch/
-License: BSD License
-| Copyright (c) 2002-2015 Atsuhiko Yamanaka, JCraft,Inc.
-| All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| 1. Redistributions of source code must retain the above copyright notice,
-| this list of conditions and the following disclaimer.
-|
-| 2. Redistributions in binary form must reproduce the above copyright
-| notice, this list of conditions and the following disclaimer in
-| the documentation and/or other materials provided with the distribution.
-|
-| 3. The names of the authors may not be used to endorse or promote products
-| derived from this software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
-| INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
-| FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL JCRAFT,
-| INC. OR ANY CONTRIBUTORS TO THIS SOFTWARE BE LIABLE FOR ANY DIRECT, INDIRECT,
-| INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
-| LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA,
-| OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-| LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-| NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
-| EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Azure Microsoft Authentication Library for Java (msal4j).
-
-Project URL:
https://github.com/AzureAD/microsoft-authentication-library-for-java
-License: MIT License
-| MIT License
-|
-| Copyright (c) Microsoft Corporation. All rights reserved.
-|
-| Permission is hereby granted, free of charge, to any person obtaining a
copy
-| of this software and associated documentation files (the "Software"), to
deal
-| in the Software without restriction, including without limitation the
rights
-| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-| copies of the Software, and to permit persons to whom the Software is
-| furnished to do so, subject to the following conditions:
-|
-| The above copyright notice and this permission notice shall be included
in all
-| copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
OR
-| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE
-| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM,
-| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
IN THE
-| SOFTWARE
-
---------------------------------------------------------------------------------
-
-This product bundles Nimbus Jose JWT.
-
-Project URL: https://bitbucket.org/connect2id/nimbus-jose-jwt
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons CLI.
-
-Project URL: https://commons.apache.org/proper/commons-cli/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Codec.
-
-Project URL: https://commons.apache.org/proper/commons-codec/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Collections.
-
-Project URL: http://commons.apache.org/collections/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons IO.
-
-Project URL: https://commons.apache.org/proper/commons-io/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Logging.
-
-Project URL: https://commons.apache.org/proper/commons-logging/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Net.
-
-Project URL: https://commons.apache.org/proper/commons-net/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Failsafe.
-
-Project URL: https://failsafe.dev
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles DNS Java.
-
-Project URL: https://github.com/dnsjava/dnsjava
-License: BSD 3-Clause
-| Copyright (c) 1998-2019, Brian Wellington
-| Copyright (c) 2005 VeriSign. All rights reserved.
-| Copyright (c) 2019-2023, dnsjava authors
-|
-| All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| 1. Redistributions of source code must retain the above copyright notice,
this
-| list of conditions and the following disclaimer.
-|
-| 2. Redistributions in binary form must reproduce the above copyright notice,
-| this list of conditions and the following disclaimer in the documentation
-| and/or other materials provided with the distribution.
-|
-| 3. Neither the name of the copyright holder nor the names of its
-| contributors may be used to endorse or promote products derived from
-| this software without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE
-| DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-| FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-| DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-| SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-| CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-| OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Picocli.
-
-Project URL: https://picocli.info
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------`
-
-This product bundles Agroal.
-
-Project URL: https://agroal.github.io/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Airlift AirCompressor.
-
-Project URL: https://github.com/airlift/aircompressor
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles gRPC.
-
-Project URL: https://github.com/grpc/grpc-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Micrometer.
-
-Project URL: https://github.com/micrometer-metrics/micrometer
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles OpenCensus.
-
-Project URL: https://github.com/census-instrumentation/opencensus-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles OpenTelemetry Java Contrib.
-
-Project URL: https://github.com/open-telemetry/opentelemetry-java-contrib
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles OpenTelemetry Java Instrumentation.
-
-Project URL:
https://github.com/open-telemetry/opentelemetry-java-instrumentation
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles OpenTelemetry.
-
-Project URL: https://github.com/open-telemetry/opentelemetry-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles OpenTelemetry Semconv.
-
-Project URL: https://github.com/open-telemetry/semantic-conventions-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Perfmark.
-
-Project URL: https://github.com/perfmark/perfmark
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Reactor Netty.
-
-Project URL: https://github.com/reactor/reactor-netty
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Reactor Core.
-
-Project URL: https://github.com/reactor/reactor-core
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Prometheus Client.
-
-Project URL: http://github.com/prometheus/client_java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Swagger.
-
-Project URL: https://github.com/swagger-api/swagger-core
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles VertX.
-
-Project URL: https://vertx.io/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.activation-api.
-
-Project URL: https://github.com/jakartaee/jaf-api
-License: EDL 1.0 - http://www.eclipse.org/org/documents/edl-v10.php
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.annotation-api.
-
-Project URL: https://projects.eclipse.org/projects/ee4j.ca
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.el-api.
-
-Project URL: https://projects.eclipse.org/projects/ee4j.el
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles CDI API.
-
-Project URL: http://cdi-spec.org
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.enterprise.lang-model.
-
-Project URL: https://projects.eclipse.org/projects/ee4j
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.inject-api.
-
-Project URL: https://github.com/eclipse-ee4j/injection-api
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.interceptor-api.
-
-Project URL: https://github.com/jakartaee/interceptors
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.json-api.
-
-Project URL: https://github.com/eclipse-ee4j/jsonp
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.resource-api.
-
-Project URL: https://github.com/jakartaee/connectors
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.servlet-api.
-
-Project URL: https://projects.eclipse.org/projects/ee4j.servlet
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.transaction-api.
-
-Project URL: https://projects.eclipse.org/projects/ee4j.jta
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.validation-api.
-
-Project URL: https://beanvalidation.org
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.ws.rs-api.
-
-Project URL: https://github.com/eclipse-ee4j/jaxrs-api
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.xml.bind.
-
-Project URL: https://github.com/jakartaee/jaxb-api
-License: Eclipse Distribution License 1.0 -
http://www.eclipse.org/org/documents/edl-v10.php
-
---------------------------------------------------------------------------------
-
-This product bundles javax.servlet.
-
-Project URL: http://servlet-spec.java.net
-License: CDDL License - http://www.opensource.org/licenses/cddl1.php
-
---------------------------------------------------------------------------------
-
-This product bundles javax.validation-api.
-
-Project URL: https://beanvalidation.org
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jsr311-api.
-
-Project URL: https://jsr311.dev.java.net
-License: CDDL License - http://www.opensource.org/licenses/cddl1.php
-
---------------------------------------------------------------------------------
-
-This product bundles JNA.
-
-Project URL: https://github.com/java-native-access/jna
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Avro.
-
-Project URL: https://avro.apache.org
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Compress.
-
-Project URL: https://commons.apache.org/proper/commons-compress/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Configuration.
-
-Project URL: https://commons.apache.org/proper/commons-configuration/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Lang.
-
-Project URL: https://commons.apache.org/proper/commons-lang/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Math.
-
-Project URL: http://commons.apache.org/proper/commons-math/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Commons Text.
-
-Project URL: https://commons.apache.org/proper/commons-text
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Curator.
-
-Project URL: http://curator.apache.org
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Hadoop.
-
-Project URL: https://hadoop.apache.org/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache HttpComponents (core and client).
-
-Project URL: https://hc.apache.org/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Apache Kerby.
-
-Project URL: https://directory.apache.org/kerby/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles jose4j.
-
-Project URL: https://bitbucket.org/b_c/jose4j/src/master/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles bouncycastle.
-
-Project URL: https://www.bouncycastle.org/download/bouncy-castle-java/
-License: MIT License
-| Copyright (c) 2000 - 2024 The Legion of the Bouncy Castle Inc.
(https://www.bouncycastle.org)
-|
-| Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:
-|
-| The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles checker-qual.
-
-Project URL: https://checkerframework.org/
-License: MIT License
-| The annotations are licensed under the MIT License. (The text of this
-| license appears below.) More specifically, all the parts of the Checker
-| Framework that you might want to include with your own program use the
-| MIT License. This is the checker-qual.jar file and all the files that
-| appear in it: every file in a qual/ directory, plus utility files such
-| as NullnessUtil.java, RegexUtil.java, SignednessUtil.java, etc.
-| In addition, the cleanroom implementations of third-party annotations,
-| which the Checker Framework recognizes as aliases for its own
-| annotations, are licensed under the MIT License.
-|
-| Permission is hereby granted, free of charge, to any person obtaining a copy
-| of this software and associated documentation files (the "Software"), to deal
-| in the Software without restriction, including without limitation the rights
-| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-| copies of the Software, and to permit persons to whom the Software is
-| furnished to do so, subject to the following conditions:
-|
-| The above copyright notice and this permission notice shall be included in
-| all copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-| THE SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles jettison.
-
-Project URL: https://github.com/jettison-json/jettison
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles animal-sniffer-annotations.
-
-Project URL: https://www.mojohaus.org/animal-sniffer
-License: MIT license
-| The MIT License
-|
-| Copyright (c) 2009 codehaus.org.
-|
-| Permission is hereby granted, free of charge, to any person obtaining a copy
-| of this software and associated documentation files (the "Software"), to deal
-| in the Software without restriction, including without limitation the rights
-| to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-| copies of the Software, and to permit persons to whom the Software is
-| furnished to do so, subject to the following conditions:
-|
-| The above copyright notice and this permission notice shall be included in
-| all copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-| IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-| FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-| AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-| LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-| OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-| THE SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles stax2-api.
-
-Project URL: http://github.com/FasterXML/stax2-api
-License: BSD 2-Clause
-| BSD 2-Clause License
-|
-| Copyright (c) 2008+, FasterXML, LLC
-| All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| * Redistributions of source code must retain the above copyright notice, this
-| list of conditions and the following disclaimer.
-|
-| * Redistributions in binary form must reproduce the above copyright notice,
-| this list of conditions and the following disclaimer in the documentation
-| and/or other materials provided with the distribution.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
ARE
-| DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
-| FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
-| DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
-| SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
-| CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
-| OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
-| OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles conscrypt (openjdk-uber).
-
-Project URL: https://conscrypt.org/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Jetty.
-
-Project URL: https://eclipse.org/jetty
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Microprofile.
-
-Project URL: http://microprofile.io
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Parsson.
-
-Project URL: https://github.com/eclipse-ee4j/parsson
-License: Eclipse Public License 2.0 -
https://projects.eclipse.org/license/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles Expressly.
-
-Project URL: https://projects.eclipse.org/projects/ee4j
-License: EPL 2.0 - https://www.eclipse.org/legal/epl-2.0
-
---------------------------------------------------------------------------------
-
-This product bundles HdrHistogram.
-
-Project URL: http://hdrhistogram.github.io/HdrHistogram/
-License: BSD 2-Clause
-| The code in this repository code was Written by Gil Tene, Michael Barker,
-| and Matt Warren, and released to the public domain, as explained at
-| http://creativecommons.org/publicdomain/zero/1.0/
-|
-| For users of this code who wish to consume it under the "BSD" license
-| rather than under the public domain or CC0 contribution text mentioned
-| above, the code found under this directory is *also* provided under the
-| following license (commonly referred to as the BSD 2-Clause License). This
-| license does not detract from the above stated release of the code into
-| the public domain, and simply represents an additional license granted by
-| the Author.
-|
-| -----------------------------------------------------------------------------
-| ** Beginning of "BSD 2-Clause License" text. **
-|
-| Copyright (c) 2012, 2013, 2014, 2015, 2016 Gil Tene
-| Copyright (c) 2014 Michael Barker
-| Copyright (c) 2014 Matt Warren
-| All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| 1. Redistributions of source code must retain the above copyright notice,
-| this list of conditions and the following disclaimer.
-|
-| 2. Redistributions in binary form must reproduce the above copyright notice,
-| this list of conditions and the following disclaimer in the documentation
-| and/or other materials provided with the distribution.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-| ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-| THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Hibernate Validator.
-
-Project URL: http://hibernate.org/validator
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles Javassist.
-
-Project URL: http://www.javassist.org/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles JBoss (logmanager, transaction, narayana).
-
-Project URL: http://www.jboss.org
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles JCTools Core.
-
-Project URL: https://github.com/JCTools/JCTools
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles JSpecify.
-
-Project URL: http://jspecify.org/
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles LatencyUtils.
-
-Project URL: http://latencyutils.github.io/LatencyUtils/
-License: BSD 2-Clause
-| * This code was Written by Gil Tene of Azul Systems, and released to the
-| * public domain, as explained at
http://creativecommons.org/publicdomain/zero/1.0/
-|
-| For users of this code who wish to consume it under the "BSD" license
-| rather than under the public domain or CC0 contribution text mentioned
-| above, the code found under this directory is *also* provided under the
-| following license (commonly referred to as the BSD 2-Clause License). This
-| license does not detract from the above stated release of the code into
-| the public domain, and simply represents an additional license granted by
-| the Author.
-|
-|
-----------------------------------------------------------------------------
-| ** Beginning of "BSD 2-Clause License" text. **
-|
-| Copyright (c) 2012, 2013, 2014 Gil Tene
-| All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| 1. Redistributions of source code must retain the above copyright notice,
-| this list of conditions and the following disclaimer.
-|
-| 2. Redistributions in binary form must reproduce the above copyright
notice,
-| this list of conditions and the following disclaimer in the
documentation
-| and/or other materials provided with the distribution.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
-| AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
-| IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
-| ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
-| LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
-| CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
-| SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
-| INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
-| CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
-| ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
-| THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles PostgreSQL JDBC Driver.
-
-Project URL: https://jdbc.postgresql.org/
-License: BSD 2-Clause
-| Copyright (c) 1997, PostgreSQL Global Development Group All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
-|
-| 1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
-| 2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer
-| in the documentation and/or other materials provided with the
distribution.
-|
-| This Software Is Provided By The Copyright Holders And Contributors “as Is”
And Any Express Or Implied Warranties, Including, But
-| Not Limited To, The Implied Warranties Of Merchantability And Fitness For A
Particular Purpose Are Disclaimed. In No Event Shall
-| The Copyright Owner Or Contributors Be Liable For Any Direct, Indirect,
Incidental, Special, Exemplary, Or Consequential Damages
-| (including, But Not Limited To, Procurement Of Substitute Goods Or Services;
Loss Of Use, Data, Or Profits; Or Business
-| Interruption) However Caused And On Any Theory Of Liability, Whether In
Contract, Strict Liability, Or Tort (including Negligence Or
-| Otherwise) Arising In Any Way Out Of The Use Of This Software, Even If
Advised Of The Possibility Of Such Damage.
-
---------------------------------------------------------------------------------
-
-This product bundles Reactive Streams.
-
-Project URL: http://www.reactive-streams.org/
-License: MIT License
-| MIT No Attribution
-|
-| Copyright 2014 Reactive Streams
-|
-| Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles Reflections.
-
-Project URL: http://github.com/ronmamo/reflections
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles RoaringBitmap.
-
-Project URL: https://github.com/RoaringBitmap/RoaringBitmap
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles SLF4J.
-
-Project URL: http://www.slf4j.org
-License: MIT License
-| Copyright (c) 2004-2022 QOS.ch Sarl (Switzerland)
-| All rights reserved.
-|
-| Permission is hereby granted, free of charge, to any person obtaining
-| a copy of this software and associated documentation files (the
-| "Software"), to deal in the Software without restriction, including
-| without limitation the rights to use, copy, modify, merge, publish,
-| distribute, sublicense, and/or sell copies of the Software, and to
-| permit persons to whom the Software is furnished to do so, subject to
-| the following conditions:
-|
-| The above copyright notice and this permission notice shall be
-| included in all copies or substantial portions of the Software.
-|
-| THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
-| EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
-| MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
-| NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
-| LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
-| OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
-| WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
-
---------------------------------------------------------------------------------
-
-This product bundles ThreetenBP.
-
-Project URL: https://www.threeten.org/threetenbp
-License: BSD 3-Clause
-| Copyright (c) 2007-present, Stephen Colebourne & Michael Nascimento Santos.
-|
-| All rights reserved.
-|
-| Redistribution and use in source and binary forms, with or without
-| modification, are permitted provided that the following conditions are met:
-|
-| * Redistributions of source code must retain the above copyright notice,
-| this list of conditions and the following disclaimer.
-|
-| * Redistributions in binary form must reproduce the above copyright notice,
-| this list of conditions and the following disclaimer in the documentation
-| and/or other materials provided with the distribution.
-|
-| * Neither the name of JSR-310 nor the names of its contributors
-| may be used to endorse or promote products derived from this software
-| without specific prior written permission.
-|
-| THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
-| "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
-| LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
-| A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
-| CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
-| EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
-| PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
-| PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
-| LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
-| NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
-| SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
---------------------------------------------------------------------------------
-
-This product bundles Snappy Java.
-
-Project URL: https://github.com/xerial/snappy-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles SnakeYAML.
-
-Project URL: https://bitbucket.org/snakeyaml/snakeyaml
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles AWS SDK for Java.
-
-Project URL: https://aws.amazon.com/sdkforjava
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
-
-This product bundles AWS EventStream Java.
-
-Project URL: https://github.com/awslabs/aws-eventstream-java
-License: Apache License 2.0 - https://www.apache.org/licenses/LICENSE-2.0.txt
-
---------------------------------------------------------------------------------
diff --git a/LICENSE b/runtime/distribution/LICENSE-HEADER
similarity index 57%
copy from LICENSE
copy to runtime/distribution/LICENSE-HEADER
index b84fe17271..261eeb9e9f 100644
--- a/LICENSE
+++ b/runtime/distribution/LICENSE-HEADER
@@ -199,149 +199,3 @@
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-
---------------------------------------------------------------------------------
-
-This product includes a gradle wrapper.
-
-* gradlew
-* gradle/wrapper/gradle-wrapper.properties
-
-Copyright: 2010-2019 Gradle Authors.
-Home page: https://github.com/gradle/gradle
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product includes code from Apache Iceberg.
-
-* spec/iceberg-rest-catalog-open-api.yaml
-* spec/polaris-catalog-apis/oauth-tokens-api.yaml
-*
integration-tests/src/main/java/org/apache/polaris/service/it/test/PolarisRestCatalogIntegrationBase.java
-*
runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/IcebergCatalog.java
-*
runtime/service/src/main/java/org/apache/polaris/service/catalog/iceberg/CatalogHandlerUtils.java
-*
plugins/spark/v3.5/spark/src/main/java/org/apache/polaris/spark/PolarisRESTCatalog.java
-*
plugins/spark/v3.5/spark/src/main/java/org/apache/polaris/spark/SparkCatalog.java
-*
runtime/service/src/main/java/org/apache/polaris/service/catalog/common/LocationUtils.java
-
-Copyright: Copyright 2017-2025 The Apache Software Foundation
-Home page: https://iceberg.apache.org
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product includes code from Netty.
-
-*
persistence/nosql/persistence/cdi/quarkus-distcache/src/main/java/org/apache/polaris/persistence/nosql/quarkus/distcache/ResolvConf.java
-
-Copyright: Copyright © 2025 The Netty project
-Home page: https://netty.io/
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product includes code from OpenAPITool openapi-generator
-
-* server-templates/formParams.mustache
-* server-templates/apiService.mustache
-* server-templates/bodyParams.mustache
-* server-templates/pojo.mustache
-* server-templates/headerParams.mustache
-* server-templates/apiServiceImpl.mustache
-* server-templates/queryParams.mustache
-* server-templates/api.mustache
-
-Copyright: Copyright 2018 OpenAPI-Generator Contributors
(https://openapi-generator.tech)
- Copyright 2018 SmartBear Software
-Home page: https://openapi-generator.tech/
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product includes code from Google Docsy.
-
-* site/layouts/community/list.html
-* site/layouts/docs/baseof.html
-* site/layouts/partials/community_links.html
-* site/layouts/partials/head.html
-* site/layouts/partials/navbar.html
-* site/layouts/shortcodes/redoc-polaris.html
-
-Home page: https://www.docsy.dev/
-License: https://www.apache.org/licenses/LICENSE-2.0
-
---------------------------------------------------------------------------------
-
-This product includes code from Project Nessie.
-
-* .github/actions/ci-incr-build-cache-prepare/action.yml
-* .github/actions/ci-incr-build-cache-save/action.yml
-* .github/actions/setup-test-env/action.yml
-* build-logic/src/main/kotlin/LicenseFileValidation.kt
-* build-logic/src/main/kotlin/copiedcode/CopiedCodeCheckerPlugin.kt
-* build-logic/src/main/kotlin/copiedcode/CopiedCodeCheckerExtension.kt
-* build-logic/src/main/kotlin/publishing/PublishingHelperPlugin.kt
-* build-logic/src/main/kotlin/Utilities.kt
-* build-logic/src/main/kotlin/polaris-shadow-jar.gradle.kts
-* build-logic/src/main/kotlin/polaris-runtime.gradle.kts
-* getting-started/assets/keycloak/iceberg-realm.json
-*
tools/config-docs/annotations/src/main/java/org/apache/polaris/docs/ConfigDocs.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/DocGenDoclet.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/MarkdownFormatter.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/MarkdownPropertyFormatter.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/MarkdownTypeFormatter.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/PropertiesConfigItem.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/PropertiesConfigPageGroup.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/PropertiesConfigs.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/PropertyInfo.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/SmallRyeConfigMappingInfo.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/SmallRyeConfigPropertyInfo.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/SmallRyeConfigs.java
-*
tools/config-docs/generator/src/main/java/org/apache/polaris/docs/generator/ReferenceConfigDocsGenerator.java
-*
tools/config-docs/generator/src/test/java/org/apache/polaris/docs/generator/TestDocGenTool.java
-* tools/config-docs/generator/src/test/java/tests/properties/ConfigProps.java
-* tools/config-docs/generator/src/test/java/tests/properties/MoreProps.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/AllTypes.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/ExtremelyNested.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/InterfaceOne.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/InterfaceThree.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/InterfaceTwo.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/MappedA.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedA.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedA1.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedA11.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedA2.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedB.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedB1.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedB12.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedSectionA.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedSectionB.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/NestedSectionC.java
-*
tools/config-docs/generator/src/test/java/tests/smallrye/NestedSectionTypeA.java
-*
tools/config-docs/generator/src/test/java/tests/smallrye/NestedSectionTypeB.java
-*
tools/config-docs/generator/src/test/java/tests/smallrye/NestedSectionsRoot.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/OtherMapped.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/SomeEnum.java
-* tools/config-docs/generator/src/test/java/tests/smallrye/VeryNested.java
-*
tools/container-spec-helper/src/main/java/org/apache/polaris/containerspec/ContainerSpecHelper.java
-*
tools/minio-testcontainer/src/main/java/org/apache/polaris/test/minio/Minio.java
-*
tools/minio-testcontainer/src/main/java/org/apache/polaris/test/minio/MinioAccess.java
-*
tools/minio-testcontainer/src/main/java/org/apache/polaris/test/minio/MinioContainer.java
-*
tools/minio-testcontainer/src/main/java/org/apache/polaris/test/minio/MinioExtension.java
-*
tools/rustfs-testcontainer/src/main/java/org/apache/polaris/test/rustfs/Rustfs.java
-*
tools/rustfs-testcontainer/src/main/java/org/apache/polaris/test/rustfs/RustfsAccess.java
-*
tools/rustfs-testcontainer/src/main/java/org/apache/polaris/test/rustfs/RustfsContainer.java
-*
tools/rustfs-testcontainer/src/main/java/org/apache/polaris/test/rustfs/RustfsExtension.java
-*
runtime/admin/src/main/java/org/apache/polaris/admintool/PolarisAdminTool.java
-*
runtime/service/src/main/java/org/apache/polaris/service/storage/aws/StsClientsPool.java
-* helm/polaris/tests/logging_storage_test.yaml
-* helm/polaris/tests/quantity_test.yaml
-* helm/polaris/tests/service_monitor_test.yaml
-* helm/polaris/templates/_helpers.tpl
-* helm/polaris/templates/serviceaccount.yaml
-* helm/polaris/templates/servicemonitor.yaml
-* helm/polaris/templates/storage.yaml
-
-Copyright: Copyright 2015-2025 Dremio Corporation
-Home page: https://projectnessie.org/
-License: https://www.apache.org/licenses/LICENSE-2.0
diff --git a/runtime/distribution/NOTICE b/runtime/distribution/NOTICE
deleted file mode 100644
index 7c6e40dbe9..0000000000
--- a/runtime/distribution/NOTICE
+++ /dev/null
@@ -1,924 +0,0 @@
-Apache Polaris
-Copyright 2026 The Apache Software Foundation
-
-This product includes software developed at
-The Apache Software Foundation (http://www.apache.org/).
-
-The initial code for the Polaris project was donated
-to the ASF by Snowflake Inc. (https://www.snowflake.com/) copyright 2024.
-
---------------------------------------------------------------------------------
-
-This product bundles brotli4j with the following in its NOTICE:
-|
-| =============== Brotli4j ===============
-|
-| Copyright 2021, Aayush Atharva
-|
-| Brotli4j licenses this file to you under the
-| Apache License, Version 2.0 (the "License");
-| you may not use this file except in compliance with the License.
-| You may obtain a copy of the License at
-|
-| http://www.apache.org/licenses/LICENSE-2.0
-|
-| Unless required by applicable law or agreed to in writing, software
-| distributed under the License is distributed on an "AS IS" BASIS,
-| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-| See the License for the specific language governing permissions and
-| limitations under the License.
-|
-| =========================================
-|
-| Also, please refer to each LICENSE.<component>.txt file, which is located in
-| the 'LICENSES' directory of the distribution file, for the license terms of
the
-| components that this product depends on.
-|
-| ---------------------------------
-| This product depends on 'Google Brotli'. License for the same can be
obtained at:
-|
-| * LICENSE:
-| * LICENSES/LICENSE.googlebrotli.txt (MIT License)
-|
-| ---------------------------------
-| This product depends on 'Netty ByteBuf'. License for the same can be
obtained at:
-|
-| * LICENSE:
-| * LICENSES/LICENSE.netty.txt (Apache License 2.0)
-|
-| ---------------------------------
-
---------------------------------------------------------------------------------
-
-This product bundles Picocli with the following in its NOTICE:
-|
-| This project includes one or more documentation files from OpenJDK, licensed
under GPL v2 with Classpath Exception.
-|
-| These files are included in the source distributions, not in the binary
distributions of this project.
-|
-
---------------------------------------------------------------------------------
-
-This product bundles gRPC with the following in its NOTICE:
-|
-| Copyright 2014 The gRPC Authors
-|
-| Licensed under the Apache License, Version 2.0 (the "License");
-| you may not use this file except in compliance with the License.
-| You may obtain a copy of the License at
-|
-| http://www.apache.org/licenses/LICENSE-2.0
-|
-| Unless required by applicable law or agreed to in writing, software
-| distributed under the License is distributed on an "AS IS" BASIS,
-| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-| See the License for the specific language governing permissions and
-| limitations under the License.
-|
-| -----------------------------------------------------------------------
-|
-| This product contains a modified portion of 'OkHttp', an open source
-| HTTP & SPDY client for Android and Java applications, which can be obtained
-| at:
-|
-| * LICENSE:
-| * okhttp/third_party/okhttp/LICENSE (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/square/okhttp
-| * LOCATION_IN_GRPC:
-| * okhttp/third_party/okhttp
-|
-| This product contains a modified portion of 'Envoy', an open source
-| cloud-native high-performance edge/middle/service proxy, which can be
-| obtained at:
-|
-| * LICENSE:
-| * xds/third_party/envoy/LICENSE (Apache License 2.0)
-| * NOTICE:
-| * xds/third_party/envoy/NOTICE
-| * HOMEPAGE:
-| * https://www.envoyproxy.io
-| * LOCATION_IN_GRPC:
-| * xds/third_party/envoy
-|
-| This product contains a modified portion of 'protoc-gen-validate (PGV)',
-| an open source protoc plugin to generate polyglot message validators,
-| which can be obtained at:
-|
-| * LICENSE:
-| * xds/third_party/protoc-gen-validate/LICENSE (Apache License 2.0)
-| * NOTICE:
-| * xds/third_party/protoc-gen-validate/NOTICE
-| * HOMEPAGE:
-| * https://github.com/envoyproxy/protoc-gen-validate
-| * LOCATION_IN_GRPC:
-| * xds/third_party/protoc-gen-validate
-|
-| This product contains a modified portion of 'udpa',
-| an open source universal data plane API, which can be obtained at:
-|
-| * LICENSE:
-| * xds/third_party/udpa/LICENSE (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/cncf/udpa
-| * LOCATION_IN_GRPC:
-| * xds/third_party/udpa
-
---------------------------------------------------------------------------------
-
-This product bundles Micrometer with the following in its NOTICE:
-|
-| Micrometer
-|
-| Copyright (c) 2017-Present VMware, Inc. All Rights Reserved.
-|
-| Licensed under the Apache License, Version 2.0 (the "License");
-| you may not use this file except in compliance with the License.
-| You may obtain a copy of the License at
-|
-| https://www.apache.org/licenses/LICENSE-2.0
-|
-| Unless required by applicable law or agreed to in writing, software
-| distributed under the License is distributed on an "AS IS" BASIS,
-| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-| See the License for the specific language governing permissions and
-| limitations under the License.
-|
-|
-------------------------------------------------------------------------------
-|
-| This product contains a modified portion of 'io.netty.util.internal.logging',
-| in the Netty/Common library distributed by The Netty Project:
-|
-| * Copyright 2013 The Netty Project
-| * License: Apache License v2.0
-| * Homepage: https://netty.io
-|
-| This product contains a modified portion of 'StringUtils.isBlank()',
-| in the Commons Lang library distributed by The Apache Software Foundation:
-|
-| * Copyright 2001-2019 The Apache Software Foundation
-| * License: Apache License v2.0
-| * Homepage: https://commons.apache.org/proper/commons-lang/
-|
-| This product contains a modified portion of 'JsonUtf8Writer',
-| in the Moshi library distributed by Square, Inc:
-|
-| * Copyright 2010 Google Inc.
-| * License: Apache License v2.0
-| * Homepage: https://github.com/square/moshi
-|
-| This product contains a modified portion of the 'org.springframework.lang'
-| package in the Spring Framework library, distributed by VMware, Inc:
-|
-| * Copyright 2002-2019 the original author or authors.
-| * License: Apache License v2.0
-| * Homepage: https://spring.io/projects/spring-framework
-
---------------------------------------------------------------------------------
-
-This product bundles and includes code from Netty with the following in its
NOTICE:
-|
-|
-| The Netty Project
-| =================
-|
-| Please visit the Netty web site for more information:
-|
-| * https://netty.io/
-|
-| Copyright 2014 The Netty Project
-|
-| The Netty Project licenses this file to you under the Apache License,
-| version 2.0 (the "License"); you may not use this file except in compliance
-| with the License. You may obtain a copy of the License at:
-|
-| https://www.apache.org/licenses/LICENSE-2.0
-|
-| Unless required by applicable law or agreed to in writing, software
-| distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
-| WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
-| License for the specific language governing permissions and limitations
-| under the License.
-|
-| Also, please refer to each LICENSE.<component>.txt file, which is located in
-| the 'license' directory of the distribution file, for the license terms of
the
-| components that this product depends on.
-|
-|
-------------------------------------------------------------------------------
-| This product contains the extensions to Java Collections Framework which has
-| been derived from the works by JSR-166 EG, Doug Lea, and Jason T. Greene:
-|
-| * LICENSE:
-| * license/LICENSE.jsr166y.txt (Public Domain)
-| * HOMEPAGE:
-| * http://gee.cs.oswego.edu/cgi-bin/viewcvs.cgi/jsr166/
-| *
http://viewvc.jboss.org/cgi-bin/viewvc.cgi/jbosscache/experimental/jsr166/
-|
-| This product contains a modified version of Robert Harder's Public Domain
-| Base64 Encoder and Decoder, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.base64.txt (Public Domain)
-| * HOMEPAGE:
-| * http://iharder.sourceforge.net/current/java/base64/
-|
-| This product contains a modified portion of 'Webbit', an event based
-| WebSocket and HTTP server, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.webbit.txt (BSD License)
-| * HOMEPAGE:
-| * https://github.com/joewalnes/webbit
-|
-| This product contains a modified portion of 'SLF4J', a simple logging
-| facade for Java, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.slf4j.txt (MIT License)
-| * HOMEPAGE:
-| * https://www.slf4j.org/
-|
-| This product contains a modified portion of 'Apache Harmony', an open source
-| Java SE, which can be obtained at:
-|
-| * NOTICE:
-| * license/NOTICE.harmony.txt
-| * LICENSE:
-| * license/LICENSE.harmony.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://archive.apache.org/dist/harmony/
-|
-| This product contains a modified portion of 'jbzip2', a Java bzip2
compression
-| and decompression library written by Matthew J. Francis. It can be obtained
at:
-|
-| * LICENSE:
-| * license/LICENSE.jbzip2.txt (MIT License)
-| * HOMEPAGE:
-| * https://code.google.com/p/jbzip2/
-|
-| This product contains a modified portion of 'libdivsufsort', a C API library
to construct
-| the suffix array and the Burrows-Wheeler transformed string for any input
string of
-| a constant-size alphabet written by Yuta Mori. It can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.libdivsufsort.txt (MIT License)
-| * HOMEPAGE:
-| * https://github.com/y-256/libdivsufsort
-|
-| This product contains a modified portion of Nitsan Wakart's 'JCTools', Java
Concurrency Tools for the JVM,
-| which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.jctools.txt (ASL2 License)
-| * HOMEPAGE:
-| * https://github.com/JCTools/JCTools
-|
-| This product optionally depends on 'JZlib', a re-implementation of zlib in
-| pure Java, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.jzlib.txt (BSD style License)
-| * HOMEPAGE:
-| * http://www.jcraft.com/jzlib/
-|
-| This product optionally depends on 'Compress-LZF', a Java library for
encoding and
-| decoding data in LZF format, written by Tatu Saloranta. It can be obtained
at:
-|
-| * LICENSE:
-| * license/LICENSE.compress-lzf.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/ning/compress
-|
-| This product optionally depends on 'lz4', a LZ4 Java compression
-| and decompression library written by Adrien Grand. It can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.lz4.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/jpountz/lz4-java
-|
-| This product optionally depends on 'lzma-java', a LZMA Java compression
-| and decompression library, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.lzma-java.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/jponge/lzma-java
-|
-| This product optionally depends on 'zstd-jni', a zstd-jni Java compression
-| and decompression library, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.zstd-jni.txt (BSD)
-| * HOMEPAGE:
-| * https://github.com/luben/zstd-jni
-|
-| This product contains a modified portion of 'jfastlz', a Java port of FastLZ
compression
-| and decompression library written by William Kinney. It can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.jfastlz.txt (MIT License)
-| * HOMEPAGE:
-| * https://code.google.com/p/jfastlz/
-|
-| This product contains a modified portion of and optionally depends on
'Protocol Buffers', Google's data
-| interchange format, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.protobuf.txt (New BSD License)
-| * HOMEPAGE:
-| * https://github.com/google/protobuf
-|
-| This product optionally depends on 'Bouncy Castle Crypto APIs' to generate
-| a temporary self-signed X.509 certificate when the JVM does not provide the
-| equivalent functionality. It can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.bouncycastle.txt (MIT License)
-| * HOMEPAGE:
-| * https://www.bouncycastle.org/
-|
-| This product optionally depends on 'Snappy', a compression library produced
-| by Google Inc, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.snappy.txt (New BSD License)
-| * HOMEPAGE:
-| * https://github.com/google/snappy
-|
-| This product optionally depends on 'JBoss Marshalling', an alternative Java
-| serialization API, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.jboss-marshalling.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/jboss-remoting/jboss-marshalling
-|
-| This product optionally depends on 'Caliper', Google's micro-
-| benchmarking framework, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.caliper.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/google/caliper
-|
-| This product optionally depends on 'Apache Commons Logging', a logging
-| framework, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.commons-logging.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://commons.apache.org/logging/
-|
-| This product optionally depends on 'Apache Log4J', a logging framework, which
-| can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.log4j.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://logging.apache.org/log4j/
-|
-| This product optionally depends on 'Aalto XML', an ultra-high performance
-| non-blocking XML processor, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.aalto-xml.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://wiki.fasterxml.com/AaltoHome
-|
-| This product contains a modified version of 'HPACK', a Java implementation of
-| the HTTP/2 HPACK algorithm written by Twitter. It can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.hpack.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/twitter/hpack
-|
-| This product contains a modified version of 'HPACK', a Java implementation of
-| the HTTP/2 HPACK algorithm written by Cory Benfield. It can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.hyper-hpack.txt (MIT License)
-| * HOMEPAGE:
-| * https://github.com/python-hyper/hpack/
-|
-| This product contains a modified version of 'HPACK', a Java implementation of
-| the HTTP/2 HPACK algorithm written by Tatsuhiro Tsujikawa. It can be
obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.nghttp2-hpack.txt (MIT License)
-| * HOMEPAGE:
-| * https://github.com/nghttp2/nghttp2/
-|
-| This product contains a modified portion of 'Apache Commons Lang', a Java
library
-| provides utilities for the java.lang API, which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.commons-lang.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://commons.apache.org/proper/commons-lang/
-|
-|
-| This product contains the Maven wrapper scripts from 'Maven Wrapper', that
provides an easy way to ensure a user has everything necessary to run the Maven
build.
-|
-| * LICENSE:
-| * license/LICENSE.mvn-wrapper.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/takari/maven-wrapper
-|
-| This product contains the dnsinfo.h header file, that provides a way to
retrieve the system DNS configuration on MacOS.
-| This private header is also used by Apple's open source
-| mDNSResponder (https://opensource.apple.com/tarballs/mDNSResponder/).
-|
-| * LICENSE:
-| * license/LICENSE.dnsinfo.txt (Apple Public Source License 2.0)
-| * HOMEPAGE:
-| *
https://www.opensource.apple.com/source/configd/configd-453.19/dnsinfo/dnsinfo.h
-|
-| This product optionally depends on 'Brotli4j', Brotli compression and
-| decompression for Java., which can be obtained at:
-|
-| * LICENSE:
-| * license/LICENSE.brotli4j.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://github.com/hyperxpro/Brotli4j
-
---------------------------------------------------------------------------------
-
-This product bundles Perfmark with the following in its NOTICE:
-|
-| Copyright 2019 Google LLC
-|
-| Licensed under the Apache License, Version 2.0 (the "License");
-| you may not use this file except in compliance with the License.
-| You may obtain a copy of the License at
-|
-| http://www.apache.org/licenses/LICENSE-2.0
-|
-| Unless required by applicable law or agreed to in writing, software
-| distributed under the License is distributed on an "AS IS" BASIS,
-| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-| See the License for the specific language governing permissions and
-| limitations under the License.
-|
-| -----------------------------------------------------------------------
-|
-| This product contains a modified portion of 'Catapult', an open source
-| Trace Event viewer for Chome, Linux, and Android applications, which can
-| be obtained at:
-|
-| * LICENSE:
-| *
traceviewer/src/main/resources/io/perfmark/traceviewer/third_party/catapult/LICENSE
(New BSD License)
-| * HOMEPAGE:
-| * https://github.com/catapult-project/catapult
-|
-| This product contains a modified portion of 'Polymer', a library for Web
-| Components, which can be obtained at:
-| * LICENSE:
-| *
traceviewer/src/main/resources/io/perfmark/traceviewer/third_party/polymer/LICENSE
(New BSD License)
-| * HOMEPAGE:
-| * https://github.com/Polymer/polymer
-|
-|
-| This product contains a modified portion of 'ASM', an open source
-| Java Bytecode library, which can be obtained at:
-|
-| * LICENSE:
-| * agent/src/main/resources/io/perfmark/agent/third_party/asm/LICENSE
(BSD style License)
-| * HOMEPAGE:
-| * https://asm.ow2.io/
-
---------------------------------------------------------------------------------
-
-This product bundles Prometheus SimpleClient with the following in its NOTICE:
-|
-| Prometheus instrumentation library for JVM applications
-| Copyright 2012-2015 The Prometheus Authors
-|
-| This product includes software developed at
-| Boxever Ltd. (http://www.boxever.com/).
-|
-| This product includes software developed at
-| SoundCloud Ltd. (http://soundcloud.com/).
-|
-| This product includes software developed as part of the
-| Ocelli project by Netflix Inc. (https://github.com/Netflix/ocelli/).
-
---------------------------------------------------------------------------------
-
-This product bundles SmallRye with the following in its NOTICE:
-|
-| Copyright 2009-2017 Mark Struberg
-| Copyright 2018 Red Hat, inc.
-|
-| This product includes software developed at
-| The Apache Software Foundation (http://www.apache.org/).
-
---------------------------------------------------------------------------------
-
-This product bundles Swagger with the following in its NOTICE:
-|
-| Swagger Core - ${pom.name}
-| Copyright (c) 2015. SmartBear Software Inc.
-| Swagger Core - ${pom.name} is licensed under Apache 2.0 license.
-| Copy of the Apache 2.0 license can be found in `LICENSE` file.
-
---------------------------------------------------------------------------------
-
-This product bundles Jackson JSON Processor with the following in its NOTICE:
-|
-| # Jackson JSON processor
-|
-| Jackson is a high-performance, Free/Open Source JSON processing library.
-| It was originally written by Tatu Saloranta ([email protected]), and has
-| been in development since 2007.
-| It is currently developed by a community of developers.
-|
-| ## Copyright
-|
-| Copyright 2007-, Tatu Saloranta ([email protected])
-|
-| ## Licensing
-|
-| Jackson 2.x core and extension components are licensed under Apache License
2.0
-| To find the details that apply to this artifact see the accompanying LICENSE
file.
-|
-| ## Credits
-|
-| A list of contributors may be found from CREDITS(-2.x) file, which is
included
-| in some artifacts (usually source distributions); but is always available
-| from the source code management (SCM) system project uses.
-|
-| ## FastDoubleParser
-|
-| jackson-core bundles a shaded copy of FastDoubleParser
<https://github.com/wrandelshofer/FastDoubleParser>.
-| That code is available under an MIT license
<https://github.com/wrandelshofer/FastDoubleParser/blob/main/LICENSE>
-| under the following copyright.
-|
-| Copyright © 2023 Werner Randelshofer, Switzerland. MIT License.
-|
-| See FastDoubleParser-NOTICE for details of other source code included in
FastDoubleParser
-| and the licenses and copyrights that apply to that code.
-
---------------------------------------------------------------------------------
-
-This product bundles CDI with the following in its NOTICE:
-|
-| # Notices for Jakarta Contexts and Dependency Injection
-|
-| This content is produced and maintained by the Jakarta Contexts and
Dependency Injection
-| project.
-|
-| * Project home: https://projects.eclipse.org/projects/ee4j.cdi
-|
-| ## Trademarks
-|
-| Jakarta Contexts and Dependency Injection is a trademark of the Eclipse
Foundation.
-|
-| ## Copyright
-|
-| All content is the property of the respective authors or their employers. For
-| more information regarding authorship of content, please consult the listed
-| source code repository logs.
-|
-| ## Declared Project Licenses
-|
-| This program and the accompanying materials are made available under the
terms
-| of the Apache License v. 2.0 which is available at
-| http://www.apache.org/licenses/LICENSE-2.0
-|
-| SPDX-License-Identifier: Apache-2.0
-|
-| ## Source Code
-|
-| The project maintains the following source code repositories:
-|
-| * https://github.com/jakartaee/cdi
-| * https://github.com/jakartaee/cdi-tck
-| * https://github.com/jakartaee/inject
-| * https://github.com/jakartaee/inject-spec
-| * https://github.com/jakartaee/inject-tck
-|
-| The project also maintains the following legacy CPL licensed source code
repositories:
-|
-| * https://github.com/eclipse-ee4j/cdi-cpl
-| * https://github.com/eclipse-ee4j/cdi-tck-cpl
-|
-| ## Third-party Content
-|
-| ## Cryptography
-|
-| Content may contain encryption software. The country in which you are
currently
-| may have restrictions on the import, possession, and use, and/or re-export to
-| another country, of encryption software. BEFORE using any encryption
software,
-| please check the country's laws, regulations and policies concerning the
import,
-| possession, or use, and re-export of encryption software, to see if this is
-| permitted.
-
---------------------------------------------------------------------------------
-
-This product bundles jakarta.validation-api with the following in its NOTICE:
-|
-| # Notices for Eclipse Jakarta Validation
-|
-| This content is produced and maintained by the Eclipse Jakarta Validation
-| project.
-|
-| * Project home: https://projects.eclipse.org/projects/ee4j.validation
-|
-| ## Trademarks
-|
-| Jakarta Validation is a trademark of the Eclipse Foundation.
-|
-| ## Copyright
-|
-| All content is the property of the respective authors or their employers. For
-| more information regarding authorship of content, please consult the listed
-| source code repository logs.
-|
-| ## Declared Project Licenses
-|
-| This program and the accompanying materials are made available under the
terms
-| of the Apache License, Version 2.0 which is available at
-| https://www.apache.org/licenses/LICENSE-2.0.
-|
-| SPDX-License-Identifier: Apache-2.0
-|
-| ## Source Code
-|
-| The project maintains the following source code repositories:
-|
-| * [The specification
repository](https://github.com/jakartaee/validation-spec)
-| * [The API repository](https://github.com/jakartaee/validation)
-| * [The TCK repository](https://github.com/jakartaee/validation-tck)
-|
-| ## Third-party Content
-|
-| This project leverages the following third party content.
-|
-| Test dependencies:
-|
-| * [TestNG](https://github.com/cbeust/testng) - Apache License 2.0
-| * [JCommander](https://github.com/cbeust/jcommander) - Apache License 2.0
-| * [SnakeYAML](https://bitbucket.org/asomov/snakeyaml/src) - Apache License
2.0
-
---------------------------------------------------------------------------------
-
-This product bundles Conscrypt (openjdk uber) with the following in its NOTICE:
-|
-| Copyright 2016 The Android Open Source Project
-|
-| Licensed under the Apache License, Version 2.0 (the "License");
-| you may not use this file except in compliance with the License.
-| You may obtain a copy of the License at
-|
-| http://www.apache.org/licenses/LICENSE-2.0
-|
-| Unless required by applicable law or agreed to in writing, software
-| distributed under the License is distributed on an "AS IS" BASIS,
-| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-| See the License for the specific language governing permissions and
-| limitations under the License.
-|
-| -----------------------------------------------------------------------
-| This product contains a modified portion of `Netty`, a configurable network
-| stack in Java, which can be obtained at:
-|
-| * LICENSE:
-| * licenses/LICENSE.netty.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * http://netty.io/
-|
-| This product contains a modified portion of `Apache Harmony`, modular Java
runtime,
-| which can be obtained at:
-|
-| * LICENSE:
-| * licenses/LICENSE.harmony.txt (Apache License 2.0)
-| * HOMEPAGE:
-| * https://harmony.apache.org/
-
---------------------------------------------------------------------------------
-
-This product bundles Jetty with the following in its NOTICE:
-|
-| Notices for Eclipse Jetty
-| =========================
-| This content is produced and maintained by the Eclipse Jetty project.
-|
-| Project home: https://jetty.org/
-|
-| Trademarks
-| ----------
-| Eclipse Jetty, and Jetty are trademarks of the Eclipse Foundation.
-|
-| Copyright
-| ---------
-| All contributions are the property of the respective authors or of
-| entities to which copyright has been assigned by the authors (eg. employer).
-|
-| Declared Project Licenses
-| -------------------------
-| This artifacts of this project are made available under the terms of:
-|
-| * the Eclipse Public License v2.0
-| https://www.eclipse.org/legal/epl-2.0
-| SPDX-License-Identifier: EPL-2.0
-|
-| or
-|
-| * the Apache License, Version 2.0
-| https://www.apache.org/licenses/LICENSE-2.0
-| SPDX-License-Identifier: Apache-2.0
-|
-| The following dependencies are EPL.
-| * org.eclipse.jetty.orbit:org.eclipse.jdt.core
-|
-| The following dependencies are EPL and ASL2.
-| * org.eclipse.jetty.orbit:javax.security.auth.message
-|
-| The following dependencies are EPL and CDDL 1.0.
-| * org.eclipse.jetty.orbit:javax.mail.glassfish
-|
-| The following dependencies are CDDL + GPLv2 with classpath exception.
-| https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
-|
-| * jakarta.servlet:jakarta.servlet-api
-| * javax.annotation:javax.annotation-api
-| * javax.transaction:javax.transaction-api
-| * javax.websocket:javax.websocket-api
-|
-| The following dependencies are licensed by the OW2 Foundation according to
the
-| terms of http://asm.ow2.org/license.html
-|
-| * org.ow2.asm:asm-commons
-| * org.ow2.asm:asm
-|
-| The following dependencies are ASL2 licensed.
-|
-| * org.apache.taglibs:taglibs-standard-spec
-| * org.apache.taglibs:taglibs-standard-impl
-|
-| The following dependencies are ASL2 licensed. Based on selected classes from
-| following Apache Tomcat jars, all ASL2 licensed.
-|
-| * org.mortbay.jasper:apache-jsp
-| * org.apache.tomcat:tomcat-jasper
-| * org.apache.tomcat:tomcat-juli
-| * org.apache.tomcat:tomcat-jsp-api
-| * org.apache.tomcat:tomcat-el-api
-| * org.apache.tomcat:tomcat-jasper-el
-| * org.apache.tomcat:tomcat-api
-| * org.apache.tomcat:tomcat-util-scan
-| * org.apache.tomcat:tomcat-util
-| * org.mortbay.jasper:apache-el
-| * org.apache.tomcat:tomcat-jasper-el
-| * org.apache.tomcat:tomcat-el-api
-|
-| The following artifacts are CDDL + GPLv2 with classpath exception.
-| https://glassfish.dev.java.net/nonav/public/CDDL+GPL.html
-|
-| * org.eclipse.jetty.toolchain:jetty-schemas
-|
-| Cryptography
-| ------------
-| Content may contain encryption software. The country in which you are
currently
-| may have restrictions on the import, possession, and use, and/or re-export to
-| another country, of encryption software. BEFORE using any encryption
software,
-| please check the country's laws, regulations and policies concerning the
import,
-| possession, or use, and re-export of encryption software, to see if this is
-| permitted.
-|
-| The UnixCrypt.java code implements the one way cryptography used by
-| Unix systems for simple password protection. Copyright 1996 Aki Yoshida,
-| modified April 2001 by Iris Van den Broeke, Daniel Deville.
-| Permission to use, copy, modify and distribute UnixCrypt
-| for non-commercial or commercial purposes and without fee is
-| granted provided that the copyright notice appears in all copies.
-
---------------------------------------------------------------------------------
-
-This product bundles Microprofile with the following in its NOTICE:
-|
-| =========================================================================
-| == NOTICE file corresponding to section 4(d) of the Apache License, ==
-| == Version 2.0, in this case for Microprofile Config ==
-| =========================================================================
-|
-| This product includes software developed at
-| The Apache Software Foundation (http://www.apache.org/).
-|
-| Portions of this software were originally based on the following:
-| * Apache DeltaSpike Config
-| https://deltaspike.apache.org
-| under Apache License, v2.0
-|
-| SPDXVersion: SPDX-2.1
-| PackageName: Eclipse Microprofile
-| PackageHomePage: http://www.eclipse.org/microprofile
-| PackageLicenseDeclared: Apache-2.0
-|
-| PackageCopyrightText: <text>
-| Mark Struberg [email protected],
-| Gerhard Petracek [email protected],
-| Romain Manni-Bucau [email protected],
-| Ron Smeral [email protected],
-| Emily Jiang [email protected],
-| Ondrej Mihalyi [email protected],
-| Gunnar Morling [email protected]
-| </text>
-
---------------------------------------------------------------------------------
-
-This product bundles Microprofile (health) with the following in its NOTICE:
-|
-| =========================================================================
-| == NOTICE file corresponding to section 4(d) of the Apache License, ==
-| == Version 2.0, in this case for Microprofile Health ==
-| =========================================================================
-|
-| This product includes software developed at
-| The Apache Software Foundation (http://www.apache.org/).
-|
-|
-| SPDXVersion: SPDX-2.1
-| PackageName: Eclipse Microprofile
-| PackageHomePage: http://www.eclipse.org/microprofile
-| PackageLicenseDeclared: Apache-2.0
-|
-| PackageCopyrightText: <text>
-| Heiko Braun [email protected]
-| </text>
-
---------------------------------------------------------------------------------
-
-This product bundles Snappy Java with the following in its NOTICE:
-|
-| This product includes software developed by Google
-| Snappy: http://code.google.com/p/snappy/ (New BSD License)
-|
-| This product includes software developed by Apache
-| PureJavaCrc32C from apache-hadoop-common http://hadoop.apache.org/
-| (Apache 2.0 license)
-|
-| This library contains statically linked libstdc++. This inclusion is allowed
by
-| "GCC Runtime Library Exception"
-| http://gcc.gnu.org/onlinedocs/libstdc++/manual/license.html
-|
-| == Contributors ==
-| * Tatu Saloranta
-| * Providing benchmark suite
-| * Alec Wysoker
-| * Performance and memory usage improvement
-|
-| Third-Party Notices and Licenses:
-|
-| - Hadoop: Apache Hadoop is used as a dependency
-| License: Apache License 2.0
-| Source/Reference: https://github.com/apache/hadoop/blob/trunk/NOTICE.txt
-
-
---------------------------------------------------------------------------------
-
-This product bundles AWS Java SDK with the following in its NOTICE:
-|
-| AWS SDK for Java
-| Copyright 2010-2014 Amazon.com, Inc. or its affiliates. All Rights Reserved.
-|
-| This product includes software developed by
-| Amazon Technologies, Inc (http://www.amazon.com/).
-|
-| **********************
-| THIRD PARTY COMPONENTS
-| **********************
-| This software includes third party software subject to the following
copyrights:
-| - XML parsing and utility functions from JetS3t - Copyright 2006-2009 James
Murty.
-| - PKCS#1 PEM encoded private key parsing and utility functions from
oauth.googlecode.com - Copyright 1998-2010 AOL Inc.
-|
-| The licenses for these third party components are included in LICENSE.txt
-
---------------------------------------------------------------------------------
-
-This product bundles AWS EventStream for Java with the following in its NOTICE:
-|
-| AWS EventStream for Java
-| Copyright 2017 Amazon.com, Inc. or its affiliates. All Rights Reserved.
-
---------------------------------------------------------------------------------
-
-This product bundles Jose4J with the following in its NOTICE:
-|
-| jose4j
-| Copyright 2012-2015 Brian Campbell
-|
-| EcdsaUsingShaAlgorithm contains code for converting the concatenated
-| R & S values of the signature to and from DER, which was originally
-| derived from the Apache Santuario XML Security library's SignatureECDSA
-| implementation. http://santuario.apache.org/
-|
-| The Base64 implementation in this software was derived from the
-| Apache Commons Codec project. http://commons.apache.org/proper/commons-codec/
-|
-| JSON processing in this software was derived from the JSON.simple toolkit.
-| https://code.google.com/p/json-simple/
-
---------------------------------------------------------------------------------
diff --git a/runtime/distribution/NOTICE-HEADER
b/runtime/distribution/NOTICE-HEADER
new file mode 100644
index 0000000000..ce40ec4288
--- /dev/null
+++ b/runtime/distribution/NOTICE-HEADER
@@ -0,0 +1,8 @@
+Apache Polaris
+Copyright 2026 The Apache Software Foundation
+
+This product includes software developed at
+The Apache Software Foundation (http://www.apache.org/).
+
+The initial code for the Polaris project was donated
+to the ASF by Snowflake Inc. (https://www.snowflake.com/) copyright 2024.
diff --git a/runtime/distribution/build.gradle.kts
b/runtime/distribution/build.gradle.kts
index 5a47c87e4d..697bdc9d03 100644
--- a/runtime/distribution/build.gradle.kts
+++ b/runtime/distribution/build.gradle.kts
@@ -17,6 +17,7 @@
* under the License.
*/
+import licenses.LicenseNoticeMerge
import publishing.PublishingHelperPlugin
import publishing.digestTaskOutputs
import publishing.signTaskOutputs
@@ -48,11 +49,24 @@ val serverDistribution by
isCanBeResolved = true
}
+val licenseNotice by
+ configurations.creating {
+ isCanBeConsumed = false
+ isCanBeResolved = true
+ }
+
dependencies {
adminDistribution(project(":polaris-admin", "distributionElements"))
serverDistribution(project(":polaris-server", "distributionElements"))
+ licenseNotice(project(":polaris-admin", "licenseNoticeElements"))
+ licenseNotice(project(":polaris-server", "licenseNoticeElements"))
}
+val licenseNoticeMerge by
+ tasks.registering(LicenseNoticeMerge::class) { sourceLicenseNotice =
licenseNotice }
+
+tasks.named("assembleDist").configure { dependsOn(licenseNoticeMerge) }
+
distributions {
main {
distributionBaseName.set("polaris-bin")
@@ -70,8 +84,7 @@ distributions {
}
from("README.md")
- from("LICENSE")
- from("NOTICE")
+ from(licenseNoticeMerge)
}
}
}
diff --git a/runtime/server/build.gradle.kts b/runtime/server/build.gradle.kts
index 01fac76e56..00b0292171 100644
--- a/runtime/server/build.gradle.kts
+++ b/runtime/server/build.gradle.kts
@@ -24,19 +24,12 @@ plugins {
alias(libs.plugins.quarkus)
id("org.kordamp.gradle.jandex")
id("polaris-runtime")
- // id("polaris-license-report")
+ id("polaris-license-report")
}
val quarkusRunner by
configurations.creating { description = "Used to reference the generated
runner-jar" }
-// Configuration to expose distribution artifacts
-val distributionElements by
- configurations.creating {
- isCanBeConsumed = true
- isCanBeResolved = false
- }
-
dependencies {
implementation(project(":polaris-runtime-service"))
@@ -92,6 +85,19 @@ tasks.named<QuarkusRun>("quarkusRun") {
val quarkusBuild = tasks.named<QuarkusBuild>("quarkusBuild")
+// Configuration to expose distribution artifacts
+val distributionElements by
+ configurations.creating {
+ isCanBeConsumed = true
+ isCanBeResolved = false
+ }
+
+val licenseNoticeElements by
+ configurations.creating {
+ isCanBeConsumed = true
+ isCanBeResolved = false
+ }
+
// Expose runnable jar via quarkusRunner configuration for integration-tests
that require the
// server.
artifacts {
@@ -99,4 +105,5 @@ artifacts {
builtBy(quarkusBuild)
}
add("distributionElements", layout.buildDirectory.dir("quarkus-app")) {
builtBy("quarkusBuild") }
+ add("licenseNoticeElements", layout.projectDirectory.dir("distribution"))
}
diff --git a/runtime/server/distribution/LICENSE
b/runtime/server/distribution/LICENSE
index 00f148d5a9..1d1d825fa2 100644
--- a/runtime/server/distribution/LICENSE
+++ b/runtime/server/distribution/LICENSE
@@ -303,6 +303,7 @@ This product bundles Quarkus.
* Maven group:artifact IDs: io.quarkus:quarkus-credentials
* Maven group:artifact IDs: io.quarkus:quarkus-datasource
* Maven group:artifact IDs: io.quarkus:quarkus-datasource-common
+* Maven group:artifact IDs: io.quarkus:quarkus-devservices
* Maven group:artifact IDs: io.quarkus:quarkus-development-mode-spi
* Maven group:artifact IDs: io.quarkus:quarkus-fs-util
* Maven group:artifact IDs: io.quarkus:quarkus-grpc-common
@@ -324,7 +325,6 @@ This product bundles Quarkus.
* Maven group:artifact IDs: io.quarkus:quarkus-opentelemetry
* Maven group:artifact IDs: io.quarkus:quarkus-proxy-registry
* Maven group:artifact IDs: io.quarkus:quarkus-reactive-routes
-* Maven group:artifact IDs: io.quarkus:quarkus-registry
* Maven group:artifact IDs: io.quarkus:quarkus-rest
* Maven group:artifact IDs: io.quarkus:quarkus-rest-common
* Maven group:artifact IDs: io.quarkus:quarkus-rest-jackson
@@ -341,6 +341,7 @@ This product bundles Quarkus.
* Maven group:artifact IDs: io.quarkus:quarkus-vertx
* Maven group:artifact IDs: io.quarkus:quarkus-vertx-http
* Maven group:artifact IDs: io.quarkus:quarkus-vertx-latebound-mdc-provider
+* Maven group:artifact IDs: io.quarkus:quarkus-value-registry
* Maven group:artifact IDs: io.quarkus:quarkus-virtual-threads
* Maven group:artifact IDs: io.quarkus:quarkus-websockets-next-spi