diff --git a/.github/copilot-instructions.md b/.github/copilot-instructions.md index 21532b578bc..403eb197c43 100644 --- a/.github/copilot-instructions.md +++ b/.github/copilot-instructions.md @@ -90,7 +90,7 @@ The agent JAR is built in **3 critical steps** (see `agent/agent/build.gradle.kt abstract class HttpClientTest { @Environment(TOMCAT_8_JAVA_8) static class Tomcat8Java8Test extends HttpClientTest {} - + @Environment(TOMCAT_8_JAVA_11) static class Tomcat8Java11Test extends HttpClientTest {} } diff --git a/buildSrc/src/main/kotlin/ai.spotless-conventions.gradle.kts b/buildSrc/src/main/kotlin/ai.spotless-conventions.gradle.kts index a617d48cc3c..c3a3beb1cf0 100644 --- a/buildSrc/src/main/kotlin/ai.spotless-conventions.gradle.kts +++ b/buildSrc/src/main/kotlin/ai.spotless-conventions.gradle.kts @@ -1,3 +1,5 @@ +import com.diffplug.gradle.spotless.SpotlessExtension + plugins { id("com.diffplug.spotless") } @@ -5,38 +7,117 @@ plugins { spotless { java { googleJavaFormat() - licenseHeaderFile(rootProject.file("buildscripts/spotless.license.java"), "(package|import|public|// Includes work from:)") + licenseHeaderFile( + rootProject.file("buildscripts/spotless.license.java"), + "(package|import|public|// Includes work from:)" + ) + toggleOffOn() target("src/**/*.java") } + plugins.withId("groovy") { + groovy { + licenseHeaderFile( + rootProject.file("buildscripts/spotless.license.java"), + "(package|import|(?:abstract )?class)" + ) + endWithNewline() + } + } + plugins.withId("scala") { + scala { + scalafmt() + licenseHeaderFile( + rootProject.file("buildscripts/spotless.license.java"), + "(package|import|public)" + ) + target("src/**/*.scala") + } + } + plugins.withId("org.jetbrains.kotlin.jvm") { + kotlin { + // not sure why it's not using the indent settings from .editorconfig + ktlint().editorConfigOverride( + mapOf( + "indent_size" to "2", + "continuation_indent_size" to "2", + "max_line_length" to "160", + "ktlint_standard_no-wildcard-imports" to "disabled", + "ktlint_standard_package-name" to "disabled", + // ktlint does not break up long lines, it just fails on them + "ktlint_standard_max-line-length" to "disabled", + // ktlint makes it *very* hard to locate where this actually happened + "ktlint_standard_trailing-comma-on-call-site" to "disabled", + // depends on ktlint_standard_wrapping + "ktlint_standard_trailing-comma-on-declaration-site" to "disabled", + // also very hard to find out where this happens + "ktlint_standard_wrapping" to "disabled" + ) + ) + licenseHeaderFile( + rootProject.file("buildscripts/spotless.license.java"), + "(package|import|class|// Includes work from:)" + ) + } + } kotlinGradle { - ktlint().editorConfigOverride(mapOf( - "indent_size" to "2", - "continuation_indent_size" to "2", - "max_line_length" to "160", - "ktlint_standard_no-wildcard-imports" to "disabled", - // ktlint does not break up long lines, it just fails on them - "ktlint_standard_max-line-length" to "disabled", - // ktlint makes it *very* hard to locate where this actually happened - "ktlint_standard_trailing-comma-on-call-site" to "disabled", - // depends on ktlint_standard_wrapping - "ktlint_standard_trailing-comma-on-declaration-site" to "disabled", - // also very hard to find out where this happens - "ktlint_standard_wrapping" to "disabled" - )) + // not sure why it's not using the indent settings from .editorconfig + ktlint().editorConfigOverride( + mapOf( + "indent_size" to "2", + "continuation_indent_size" to "2", + "max_line_length" to "160", + "ktlint_standard_no-wildcard-imports" to "disabled", + // ktlint does not break up long lines, it just fails on them + "ktlint_standard_max-line-length" to "disabled", + // ktlint makes it *very* hard to locate where this actually happened + "ktlint_standard_trailing-comma-on-call-site" to "disabled", + // depends on ktlint_standard_wrapping + "ktlint_standard_trailing-comma-on-declaration-site" to "disabled", + // also very hard to find out where this happens + "ktlint_standard_wrapping" to "disabled", + // we use variable names like v1_10Deps + "ktlint_standard_property-naming" to "disabled", + // prevent moving comment to next line in latestDepTestLibrary("xxx") { // see xxx module + "ktlint_standard_function-literal" to "disabled" + ) + ) } - format("misc") { - // not using "**/..." to help keep spotless fast - target( - ".gitattributes", - ".gitconfig", - ".editorconfig", - "*.md", - "src/**/*.md", - "docs/**/*.md", - "*.sh", - "src/**/*.properties") - leadingTabsToSpaces() - trimTrailingWhitespace() - endWithNewline() +} + +// Use root declared tool deps to avoid issues with high concurrency. +// see https://github.com/diffplug/spotless/tree/main/plugin-gradle#dependency-resolution-modes +if (project == rootProject) { + spotless { + format("misc") { + target( + ".gitignore", + ".gitattributes", + ".gitconfig", + ".editorconfig", + "**/*.md", + "**/*.sh", + "**/*.dockerfile", + "**/gradle.properties" + ) + leadingTabsToSpaces() + trimTrailingWhitespace() + endWithNewline() + } + predeclareDeps() + } + + with(extensions["spotlessPredeclare"] as SpotlessExtension) { + java { + googleJavaFormat() + } + scala { + scalafmt() + } + kotlin { + ktlint() + } + kotlinGradle { + ktlint() + } } } diff --git a/licenses/more-licenses.md b/licenses/more-licenses.md index 7aa2c3a0584..4f9d3e907f0 100644 --- a/licenses/more-licenses.md +++ b/licenses/more-licenses.md @@ -4,292 +4,292 @@ _2025-07-15 07:36:02 UTC_ ## Apache License, Version 2.0 -**1** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.19.1` +**1** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-annotations` **Version:** `2.19.1` > - **Project URL**: [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [jackson-annotations-2.19.1.jar/META-INF/LICENSE](jackson-annotations-2.19.1.jar/META-INF/LICENSE) +> - **Embedded license files**: [jackson-annotations-2.19.1.jar/META-INF/LICENSE](jackson-annotations-2.19.1.jar/META-INF/LICENSE) - [jackson-annotations-2.19.1.jar/META-INF/NOTICE](jackson-annotations-2.19.1.jar/META-INF/NOTICE) -**2** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.19.1` +**2** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-core` **Version:** `2.19.1` > - **Project URL**: [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [jackson-core-2.19.1.jar/META-INF/LICENSE](jackson-core-2.19.1.jar/META-INF/LICENSE) +> - **Embedded license files**: [jackson-core-2.19.1.jar/META-INF/LICENSE](jackson-core-2.19.1.jar/META-INF/LICENSE) - [jackson-core-2.19.1.jar/META-INF/NOTICE](jackson-core-2.19.1.jar/META-INF/NOTICE) -**3** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.19.1` +**3** **Group:** `com.fasterxml.jackson.core` **Name:** `jackson-databind` **Version:** `2.19.1` > - **Project URL**: [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [jackson-databind-2.19.1.jar/META-INF/LICENSE](jackson-databind-2.19.1.jar/META-INF/LICENSE) +> - **Embedded license files**: [jackson-databind-2.19.1.jar/META-INF/LICENSE](jackson-databind-2.19.1.jar/META-INF/LICENSE) - [jackson-databind-2.19.1.jar/META-INF/NOTICE](jackson-databind-2.19.1.jar/META-INF/NOTICE) -**4** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.19.1` +**4** **Group:** `com.fasterxml.jackson.datatype` **Name:** `jackson-datatype-jsr310` **Version:** `2.19.1` > - **Manifest Project URL**: [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [jackson-datatype-jsr310-2.19.1.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.19.1.jar/META-INF/LICENSE) +> - **Embedded license files**: [jackson-datatype-jsr310-2.19.1.jar/META-INF/LICENSE](jackson-datatype-jsr310-2.19.1.jar/META-INF/LICENSE) - [jackson-datatype-jsr310-2.19.1.jar/META-INF/NOTICE](jackson-datatype-jsr310-2.19.1.jar/META-INF/NOTICE) -**5** **Group:** `com.github.stephenc.jcip` **Name:** `jcip-annotations` **Version:** `1.0-1` +**5** **Group:** `com.github.stephenc.jcip` **Name:** `jcip-annotations` **Version:** `1.0-1` > - **POM Project URL**: [http://stephenc.github.com/jcip-annotations](http://stephenc.github.com/jcip-annotations) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**6** **Group:** `com.google.errorprone` **Name:** `error_prone_annotations` **Version:** `2.40.0` +**6** **Group:** `com.google.errorprone` **Name:** `error_prone_annotations` **Version:** `2.40.0` > - **Manifest Project URL**: [https://errorprone.info/error_prone_annotations](https://errorprone.info/error_prone_annotations) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**7** **Group:** `com.nimbusds` **Name:** `content-type` **Version:** `2.3` +**7** **Group:** `com.nimbusds` **Name:** `content-type` **Version:** `2.3` > - **Manifest Project URL**: [https://connect2id.com](https://connect2id.com) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM Project URL**: [https://bitbucket.org/connect2id/nimbus-content-type](https://bitbucket.org/connect2id/nimbus-content-type) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**8** **Group:** `com.nimbusds` **Name:** `lang-tag` **Version:** `1.7` +**8** **Group:** `com.nimbusds` **Name:** `lang-tag` **Version:** `1.7` > - **Manifest Project URL**: [https://connect2id.com/](https://connect2id.com/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM Project URL**: [https://bitbucket.org/connect2id/nimbus-language-tags](https://bitbucket.org/connect2id/nimbus-language-tags) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**9** **Group:** `com.nimbusds` **Name:** `nimbus-jose-jwt` **Version:** `10.0.1` +**9** **Group:** `com.nimbusds` **Name:** `nimbus-jose-jwt` **Version:** `10.0.1` > - **Manifest Project URL**: [https://connect2id.com](https://connect2id.com) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM Project URL**: [https://bitbucket.org/connect2id/nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**10** **Group:** `com.nimbusds` **Name:** `oauth2-oidc-sdk` **Version:** `11.23` +**10** **Group:** `com.nimbusds` **Name:** `oauth2-oidc-sdk` **Version:** `11.23` > - **Project URL**: [https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions](https://bitbucket.org/connect2id/oauth-2.0-sdk-with-openid-connect-extensions) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**11** **Group:** `commons-codec` **Name:** `commons-codec` **Version:** `1.18.0` +**11** **Group:** `commons-codec` **Name:** `commons-codec` **Version:** `1.18.0` > - **Project URL**: [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [commons-codec-1.18.0.jar/META-INF/LICENSE.txt](commons-codec-1.18.0.jar/META-INF/LICENSE.txt) +> - **Embedded license files**: [commons-codec-1.18.0.jar/META-INF/LICENSE.txt](commons-codec-1.18.0.jar/META-INF/LICENSE.txt) - [commons-codec-1.18.0.jar/META-INF/NOTICE.txt](commons-codec-1.18.0.jar/META-INF/NOTICE.txt) -**12** **Group:** `io.netty` **Name:** `netty-buffer` **Version:** `4.2.3.Final` +**12** **Group:** `io.netty` **Name:** `netty-buffer` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**13** **Group:** `io.netty` **Name:** `netty-codec` **Version:** `4.2.3.Final` +**13** **Group:** `io.netty` **Name:** `netty-codec` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**14** **Group:** `io.netty` **Name:** `netty-codec-base` **Version:** `4.2.3.Final` +**14** **Group:** `io.netty` **Name:** `netty-codec-base` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**15** **Group:** `io.netty` **Name:** `netty-codec-compression` **Version:** `4.2.3.Final` +**15** **Group:** `io.netty` **Name:** `netty-codec-compression` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**16** **Group:** `io.netty` **Name:** `netty-codec-dns` **Version:** `4.2.3.Final` +**16** **Group:** `io.netty` **Name:** `netty-codec-dns` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**17** **Group:** `io.netty` **Name:** `netty-codec-http` **Version:** `4.2.3.Final` +**17** **Group:** `io.netty` **Name:** `netty-codec-http` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**18** **Group:** `io.netty` **Name:** `netty-codec-http2` **Version:** `4.2.3.Final` +**18** **Group:** `io.netty` **Name:** `netty-codec-http2` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**19** **Group:** `io.netty` **Name:** `netty-codec-marshalling` **Version:** `4.2.3.Final` +**19** **Group:** `io.netty` **Name:** `netty-codec-marshalling` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**20** **Group:** `io.netty` **Name:** `netty-codec-protobuf` **Version:** `4.2.3.Final` +**20** **Group:** `io.netty` **Name:** `netty-codec-protobuf` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**21** **Group:** `io.netty` **Name:** `netty-codec-socks` **Version:** `4.2.3.Final` +**21** **Group:** `io.netty` **Name:** `netty-codec-socks` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**22** **Group:** `io.netty` **Name:** `netty-common` **Version:** `4.2.3.Final` +**22** **Group:** `io.netty` **Name:** `netty-common` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**23** **Group:** `io.netty` **Name:** `netty-handler` **Version:** `4.2.3.Final` +**23** **Group:** `io.netty` **Name:** `netty-handler` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**24** **Group:** `io.netty` **Name:** `netty-handler-proxy` **Version:** `4.2.3.Final` +**24** **Group:** `io.netty` **Name:** `netty-handler-proxy` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**25** **Group:** `io.netty` **Name:** `netty-resolver` **Version:** `4.2.3.Final` +**25** **Group:** `io.netty` **Name:** `netty-resolver` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**26** **Group:** `io.netty` **Name:** `netty-resolver-dns` **Version:** `4.2.3.Final` +**26** **Group:** `io.netty` **Name:** `netty-resolver-dns` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**27** **Group:** `io.netty` **Name:** `netty-resolver-dns-classes-macos` **Version:** `4.2.3.Final` +**27** **Group:** `io.netty` **Name:** `netty-resolver-dns-classes-macos` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**28** **Group:** `io.netty` **Name:** `netty-resolver-dns-native-macos` **Version:** `4.2.3.Final` +**28** **Group:** `io.netty` **Name:** `netty-resolver-dns-native-macos` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**29** **Group:** `io.netty` **Name:** `netty-tcnative-boringssl-static` **Version:** `2.0.72.Final` +**29** **Group:** `io.netty` **Name:** `netty-tcnative-boringssl-static` **Version:** `2.0.72.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM Project URL**: [https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/](https://github.com/netty/netty-tcnative/netty-tcnative-boringssl-static/) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**30** **Group:** `io.netty` **Name:** `netty-tcnative-classes` **Version:** `2.0.72.Final` +**30** **Group:** `io.netty` **Name:** `netty-tcnative-classes` **Version:** `2.0.72.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**31** **Group:** `io.netty` **Name:** `netty-transport` **Version:** `4.2.3.Final` +**31** **Group:** `io.netty` **Name:** `netty-transport` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**32** **Group:** `io.netty` **Name:** `netty-transport-classes-epoll` **Version:** `4.2.3.Final` +**32** **Group:** `io.netty` **Name:** `netty-transport-classes-epoll` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**33** **Group:** `io.netty` **Name:** `netty-transport-classes-kqueue` **Version:** `4.2.3.Final` +**33** **Group:** `io.netty` **Name:** `netty-transport-classes-kqueue` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**34** **Group:** `io.netty` **Name:** `netty-transport-native-epoll` **Version:** `4.2.3.Final` +**34** **Group:** `io.netty` **Name:** `netty-transport-native-epoll` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**35** **Group:** `io.netty` **Name:** `netty-transport-native-kqueue` **Version:** `4.2.3.Final` +**35** **Group:** `io.netty` **Name:** `netty-transport-native-kqueue` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**36** **Group:** `io.netty` **Name:** `netty-transport-native-unix-common` **Version:** `4.2.3.Final` +**36** **Group:** `io.netty` **Name:** `netty-transport-native-unix-common` **Version:** `4.2.3.Final` > - **Manifest Project URL**: [https://netty.io/](https://netty.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**37** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.51.0` +**37** **Group:** `io.opentelemetry` **Name:** `opentelemetry-api` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**38** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.51.0` +**38** **Group:** `io.opentelemetry` **Name:** `opentelemetry-context` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**39** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.51.0` +**39** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**40** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.51.0` +**40** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-common` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**41** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure` **Version:** `1.51.0` +**41** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**42** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.51.0` +**42** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-extension-autoconfigure-spi` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**43** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.51.0` +**43** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-logs` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**44** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.51.0` +**44** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-metrics` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**45** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.51.0` +**45** **Group:** `io.opentelemetry` **Name:** `opentelemetry-sdk-trace` **Version:** `1.51.0` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**46** **Group:** `io.opentelemetry` **Name:** `opentelemetry-semconv` **Version:** `1.30.1-alpha` +**46** **Group:** `io.opentelemetry` **Name:** `opentelemetry-semconv` **Version:** `1.30.1-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java](https://github.com/open-telemetry/opentelemetry-java) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**47** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-jfr-connection` **Version:** `1.47.0-alpha` +**47** **Group:** `io.opentelemetry.contrib` **Name:** `opentelemetry-jfr-connection` **Version:** `1.47.0-alpha` > - **POM Project URL**: [https://github.com/open-telemetry/opentelemetry-java-contrib](https://github.com/open-telemetry/opentelemetry-java-contrib) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**48** **Group:** `io.projectreactor` **Name:** `reactor-core` **Version:** `3.4.41` +**48** **Group:** `io.projectreactor` **Name:** `reactor-core` **Version:** `3.4.41` > - **POM Project URL**: [https://github.com/reactor/reactor-core](https://github.com/reactor/reactor-core) > - **POM License**: Apache License, Version 2.0 - [https://www.apache.org/licenses/LICENSE-2.0](https://www.apache.org/licenses/LICENSE-2.0) -**49** **Group:** `io.projectreactor.netty` **Name:** `reactor-netty-core` **Version:** `1.0.48` +**49** **Group:** `io.projectreactor.netty` **Name:** `reactor-netty-core` **Version:** `1.0.48` > - **POM Project URL**: [https://github.com/reactor/reactor-netty](https://github.com/reactor/reactor-netty) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**50** **Group:** `io.projectreactor.netty` **Name:** `reactor-netty-http` **Version:** `1.0.48` +**50** **Group:** `io.projectreactor.netty` **Name:** `reactor-netty-http` **Version:** `1.0.48` > - **POM Project URL**: [https://github.com/reactor/reactor-netty](https://github.com/reactor/reactor-netty) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**51** **Group:** `net.java.dev.jna` **Name:** `jna` **Version:** `5.17.0` +**51** **Group:** `net.java.dev.jna` **Name:** `jna` **Version:** `5.17.0` > - **POM Project URL**: [https://github.com/java-native-access/jna](https://github.com/java-native-access/jna) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) > - **Embedded license files**: [jna-5.17.0.jar/META-INF/LICENSE](jna-5.17.0.jar/META-INF/LICENSE) -**52** **Group:** `net.java.dev.jna` **Name:** `jna-platform` **Version:** `5.17.0` +**52** **Group:** `net.java.dev.jna` **Name:** `jna-platform` **Version:** `5.17.0` > - **POM Project URL**: [https://github.com/java-native-access/jna](https://github.com/java-native-access/jna) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) > - **Embedded license files**: [jna-platform-5.17.0.jar/META-INF/LICENSE](jna-platform-5.17.0.jar/META-INF/LICENSE) -**53** **Group:** `net.minidev` **Name:** `accessors-smart` **Version:** `2.5.2` +**53** **Group:** `net.minidev` **Name:** `accessors-smart` **Version:** `2.5.2` > - **Project URL**: [https://urielch.github.io/](https://urielch.github.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**54** **Group:** `net.minidev` **Name:** `json-smart` **Version:** `2.5.2` +**54** **Group:** `net.minidev` **Name:** `json-smart` **Version:** `2.5.2` > - **Project URL**: [https://urielch.github.io/](https://urielch.github.io/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -**55** **Group:** `org.apache.commons` **Name:** `commons-lang3` **Version:** `3.17.0` +**55** **Group:** `org.apache.commons` **Name:** `commons-lang3` **Version:** `3.17.0` > - **Project URL**: [https://commons.apache.org/proper/commons-lang/](https://commons.apache.org/proper/commons-lang/) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [commons-lang3-3.17.0.jar/META-INF/LICENSE.txt](commons-lang3-3.17.0.jar/META-INF/LICENSE.txt) +> - **Embedded license files**: [commons-lang3-3.17.0.jar/META-INF/LICENSE.txt](commons-lang3-3.17.0.jar/META-INF/LICENSE.txt) - [commons-lang3-3.17.0.jar/META-INF/NOTICE.txt](commons-lang3-3.17.0.jar/META-INF/NOTICE.txt) -**56** **Group:** `org.apache.commons` **Name:** `commons-text` **Version:** `1.13.1` +**56** **Group:** `org.apache.commons` **Name:** `commons-text` **Version:** `1.13.1` > - **Project URL**: [https://commons.apache.org/proper/commons-text](https://commons.apache.org/proper/commons-text) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) -> - **Embedded license files**: [commons-text-1.13.1.jar/META-INF/LICENSE.txt](commons-text-1.13.1.jar/META-INF/LICENSE.txt) +> - **Embedded license files**: [commons-text-1.13.1.jar/META-INF/LICENSE.txt](commons-text-1.13.1.jar/META-INF/LICENSE.txt) - [commons-text-1.13.1.jar/META-INF/NOTICE.txt](commons-text-1.13.1.jar/META-INF/NOTICE.txt) -**57** **Group:** `org.slf4j` **Name:** `jcl-over-slf4j` **Version:** `2.0.17` +**57** **Group:** `org.slf4j` **Name:** `jcl-over-slf4j` **Version:** `2.0.17` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -298,59 +298,59 @@ _2025-07-15 07:36:02 UTC_ ## Eclipse Public License - v 1.0 -**58** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.3.15` +**58** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.3.15` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**59** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.3.15` +**59** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.3.15` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**60** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-classic` **Version:** `0.1.5` +**60** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-classic` **Version:** `0.1.5` > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**61** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-core` **Version:** `0.1.5` +**61** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-core` **Version:** `0.1.5` > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) ## GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 -**62** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.3.15` +**62** **Group:** `ch.qos.logback` **Name:** `logback-classic` **Version:** `1.3.15` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**63** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.3.15` +**63** **Group:** `ch.qos.logback` **Name:** `logback-core` **Version:** `1.3.15` > - **Manifest Project URL**: [http://www.qos.ch](http://www.qos.ch) > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**64** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-classic` **Version:** `0.1.5` +**64** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-classic` **Version:** `0.1.5` > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**65** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-core` **Version:** `0.1.5` +**65** **Group:** `ch.qos.logback.contrib` **Name:** `logback-json-core` **Version:** `0.1.5` > - **Manifest License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 (Not Packaged) > - **POM License**: Eclipse Public License - v 1.0 - [http://www.eclipse.org/legal/epl-v10.html](http://www.eclipse.org/legal/epl-v10.html) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) -**66** **Group:** `net.java.dev.jna` **Name:** `jna` **Version:** `5.17.0` +**66** **Group:** `net.java.dev.jna` **Name:** `jna` **Version:** `5.17.0` > - **POM Project URL**: [https://github.com/java-native-access/jna](https://github.com/java-native-access/jna) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) > - **Embedded license files**: [jna-5.17.0.jar/META-INF/LICENSE](jna-5.17.0.jar/META-INF/LICENSE) -**67** **Group:** `net.java.dev.jna` **Name:** `jna-platform` **Version:** `5.17.0` +**67** **Group:** `net.java.dev.jna` **Name:** `jna-platform` **Version:** `5.17.0` > - **POM Project URL**: [https://github.com/java-native-access/jna](https://github.com/java-native-access/jna) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: GNU LESSER GENERAL PUBLIC LICENSE, Version 2.1 - [https://www.gnu.org/licenses/lgpl-2.1](https://www.gnu.org/licenses/lgpl-2.1) @@ -358,72 +358,70 @@ _2025-07-15 07:36:02 UTC_ ## MIT License -**68** **Group:** `com.azure` **Name:** `azure-core` **Version:** `1.55.4` +**68** **Group:** `com.azure` **Name:** `azure-core` **Version:** `1.55.4` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**69** **Group:** `com.azure` **Name:** `azure-core-http-netty` **Version:** `1.15.12` +**69** **Group:** `com.azure` **Name:** `azure-core-http-netty` **Version:** `1.15.12` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**70** **Group:** `com.azure` **Name:** `azure-identity` **Version:** `1.16.2` +**70** **Group:** `com.azure` **Name:** `azure-identity` **Version:** `1.16.2` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**71** **Group:** `com.azure` **Name:** `azure-json` **Version:** `1.5.0` +**71** **Group:** `com.azure` **Name:** `azure-json` **Version:** `1.5.0` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**72** **Group:** `com.azure` **Name:** `azure-monitor-opentelemetry-autoconfigure` **Version:** `1.2.0` +**72** **Group:** `com.azure` **Name:** `azure-monitor-opentelemetry-autoconfigure` **Version:** `1.2.0` > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**73** **Group:** `com.azure` **Name:** `azure-storage-blob` **Version:** `12.30.1` +**73** **Group:** `com.azure` **Name:** `azure-storage-blob` **Version:** `12.30.1` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**74** **Group:** `com.azure` **Name:** `azure-storage-common` **Version:** `12.29.1` +**74** **Group:** `com.azure` **Name:** `azure-storage-common` **Version:** `12.29.1` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**75** **Group:** `com.azure` **Name:** `azure-storage-internal-avro` **Version:** `12.15.1` +**75** **Group:** `com.azure` **Name:** `azure-storage-internal-avro` **Version:** `12.15.1` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**76** **Group:** `com.azure` **Name:** `azure-xml` **Version:** `1.2.0` +**76** **Group:** `com.azure` **Name:** `azure-xml` **Version:** `1.2.0` > - **POM Project URL**: [https://github.com/Azure/azure-sdk-for-java](https://github.com/Azure/azure-sdk-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**77** **Group:** `com.github.oshi` **Name:** `oshi-core` **Version:** `6.8.2` +**77** **Group:** `com.github.oshi` **Name:** `oshi-core` **Version:** `6.8.2` > - **Manifest Project URL**: [https://github.com/oshi/oshi/oshi-core](https://github.com/oshi/oshi/oshi-core) > - **Manifest License**: "SPDX-License-Identifier: MIT";link="https://opensource.org/licenses/MIT" (Not Packaged) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**78** **Group:** `com.microsoft.azure` **Name:** `msal4j` **Version:** `1.21.0` +**78** **Group:** `com.microsoft.azure` **Name:** `msal4j` **Version:** `1.21.0` > - **Project URL**: [https://github.com/AzureAD/microsoft-authentication-library-for-java](https://github.com/AzureAD/microsoft-authentication-library-for-java) > - **Manifest License**: "MIT License" (Not Packaged) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**79** **Group:** `com.microsoft.azure` **Name:** `msal4j-persistence-extension` **Version:** `1.3.0` +**79** **Group:** `com.microsoft.azure` **Name:** `msal4j-persistence-extension` **Version:** `1.3.0` > - **POM Project URL**: [https://github.com/AzureAD/microsoft-authentication-library-for-java](https://github.com/AzureAD/microsoft-authentication-library-for-java) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) -**80** **Group:** `org.slf4j` **Name:** `jcl-over-slf4j` **Version:** `2.0.17` +**80** **Group:** `org.slf4j` **Name:** `jcl-over-slf4j` **Version:** `2.0.17` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **Manifest License**: Apache License, Version 2.0 (Not Packaged) > - **POM License**: Apache License, Version 2.0 - [http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) > - **Embedded license files**: [jcl-over-slf4j-2.0.17.jar/META-INF/LICENSE.txt](jcl-over-slf4j-2.0.17.jar/META-INF/LICENSE.txt) -**81** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `2.0.17` +**81** **Group:** `org.slf4j` **Name:** `slf4j-api` **Version:** `2.0.17` > - **Project URL**: [http://www.slf4j.org](http://www.slf4j.org) > - **POM License**: MIT License - [https://opensource.org/licenses/MIT](https://opensource.org/licenses/MIT) > - **Embedded license files**: [slf4j-api-2.0.17.jar/META-INF/LICENSE.txt](slf4j-api-2.0.17.jar/META-INF/LICENSE.txt) ## MIT-0 -**82** **Group:** `org.reactivestreams` **Name:** `reactive-streams` **Version:** `1.0.4` +**82** **Group:** `org.reactivestreams` **Name:** `reactive-streams` **Version:** `1.0.4` > - **Manifest Project URL**: [http://reactive-streams.org](http://reactive-streams.org) > - **POM Project URL**: [http://www.reactive-streams.org/](http://www.reactive-streams.org/) > - **POM License**: MIT-0 - [https://spdx.org/licenses/MIT-0.html](https://spdx.org/licenses/MIT-0.html) - -