diff --git a/.github/workflows/gradle-wrapper-validation.yml b/.github/workflows/gradle-wrapper-validation.yml deleted file mode 100644 index fc0872b4c9..0000000000 --- a/.github/workflows/gradle-wrapper-validation.yml +++ /dev/null @@ -1,19 +0,0 @@ -name: Gradle Wrapper validation -on: - push: - branches: - - main - pull_request: - branches: - - '**' - -jobs: - validation: - name: Validate Gradle Wrapper - runs-on: ubuntu-latest - steps: - - name: Checkout latest code - uses: actions/checkout@v6 - - - name: Validate Gradle Wrapper - uses: gradle/actions/wrapper-validation@v4 diff --git a/build.gradle.kts b/build.gradle.kts index fdd006043f..c985636b03 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -31,6 +31,7 @@ import io.spine.dependency.local.Base import io.spine.dependency.local.CoreJvm import io.spine.dependency.local.Reflect import io.spine.dependency.local.TestLib +import io.spine.dependency.local.Time import io.spine.dependency.local.Validation import io.spine.gradle.RunBuild import io.spine.gradle.publish.PublishingRepos @@ -111,6 +112,8 @@ allprojects { Reflect.lib, Base.lib, TestLib.lib, + Time.lib, + Time.javaExtensions, CoreJvm.server, Validation.runtime, Validation.javaBundle diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts index 5b377272ee..8c2bdb333f 100644 --- a/buildSrc/build.gradle.kts +++ b/buildSrc/build.gradle.kts @@ -47,8 +47,11 @@ repositories { /** * The version of Jackson used by `buildSrc`. * - * Please keep this value in sync with [io.spine.dependency.lib.Jackson.version]. - * It is not a requirement but would be good in terms of consistency. + * This value is deliberately decoupled from [io.spine.dependency.lib.Jackson.version], + * which now points to Jackson 3.x. The `buildSrc` sources still use the Jackson 2.x API + * (`com.fasterxml.jackson.*`), so they must stay on a 2.x version until they are migrated + * to `tools.jackson.*`. Any maintained 2.x release will do — bump this only when `buildSrc` + * itself needs a fix from a later 2.x, not to track the newest one. */ val jacksonVersion = "2.18.3" diff --git a/buildSrc/src/main/kotlin/BuildExtensions.kt b/buildSrc/src/main/kotlin/BuildExtensions.kt index 84c2a2e79e..5c24dc3c97 100644 --- a/buildSrc/src/main/kotlin/BuildExtensions.kt +++ b/buildSrc/src/main/kotlin/BuildExtensions.kt @@ -356,11 +356,12 @@ fun Project.allowDuplicationInSourcesJar() { * * Build script classpaths pin the module to the version used by the Kotlin * runtime embedded into Gradle (`strictly 13.0`, "Pinned to the embedded - * Kotlin"), while `kotlinx-coroutines` and other transitive dependencies of - * this plugin require `23.0.0`. Gradle 9.6 may fail to reconcile the two - * declarations — the outcome depends on the shape of the consumer's dependency - * graph — making the plugin unresolvable without a consumer-side workaround, - * such as forcing the module version on the build script classpath. + * Kotlin"), while `kotlinx-coroutines` and other transitive dependencies require + * later versions such as `23.0.0`. + * Gradle 9.6 may fail to reconcile the two declarations — the outcome depends on + * the shape of the consumer's dependency graph — making the plugin unresolvable + * without a consumer-side workaround, such as forcing the module version on + * the build script classpath. * * The annotations are compile-time metadata, not needed at runtime. * Consumers still receive version `13.0` through the `kotlin-stdlib` diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/boms/Boms.kt b/buildSrc/src/main/kotlin/io/spine/dependency/boms/Boms.kt index 5d06efb5b7..266dd8d76a 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/boms/Boms.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/boms/Boms.kt @@ -28,7 +28,7 @@ package io.spine.dependency.boms import io.spine.dependency.DependencyWithBom import io.spine.dependency.kotlinx.Coroutines -import io.spine.dependency.lib.Jackson +import io.spine.dependency.lib.JacksonV2 import io.spine.dependency.lib.Kotlin import io.spine.dependency.lib.Grpc import io.spine.dependency.test.JUnit @@ -60,7 +60,7 @@ object Boms { * Technology-based BOMs. */ object Optional { - val jackson = Jackson.bom + val jackson = JacksonV2.bom val grpc = Grpc.bom } } diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt index 33b3b089cc..7fa433555c 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt @@ -29,13 +29,35 @@ package io.spine.dependency.lib import io.spine.dependency.Dependency import io.spine.dependency.DependencyWithBom -// https://github.com/FasterXML/jackson/wiki/Jackson-Releases -@Suppress("unused") +/** + * Jackson library dependencies. + * + * Jackson 3.x uses the `tools.jackson` group ID and the matching `tools.jackson.*` + * packages ([JSTEP-1](https://github.com/FasterXML/jackson-future-ideas/wiki/JSTEP-1)). + * The sole exception is `jackson-annotations`: Jackson 3.x keeps + * consuming the 2.x artifact, so both its coordinates and its + * `com.fasterxml.jackson.annotation` package stay unchanged. + * + * The Jackson 2.x artifacts, which some of our dependencies still consume, + * are declared by [JacksonV2]. + * + * See: + * - [Jackson Releases](https://github.com/FasterXML/jackson/wiki/Jackson-Releases) + * - [Migrating to Jackson 3](https://github.com/FasterXML/jackson/blob/main/jackson3/MIGRATING_TO_JACKSON_3.md) + */ +@Suppress("unused", "ConstPropertyName") object Jackson : DependencyWithBom() { - override val group = "com.fasterxml.jackson" - override val version = "2.22.1" - - // https://github.com/FasterXML/jackson-annotations?tab=readme-ov-file#release-notes + override val group = "tools.jackson" + override val version = "3.2.1" + + /** + * The version of `jackson-annotations`, which Jackson 3.x deliberately keeps + * on the 2.x line. + * + * Must match the `jackson.version.annotations` property declared by the [JacksonV2.bom]. + * + * See: https://github.com/FasterXML/jackson-annotations?tab=readme-ov-file#release-notes + */ const val annotationsVersion = "2.22" // https://github.com/FasterXML/jackson-bom @@ -54,19 +76,23 @@ object Jackson : DependencyWithBom() { val databind = "$coreGroup:jackson-databind" // https://github.com/FasterXML/jackson-annotations - val annotations = "$coreGroup:jackson-annotations:$annotationsVersion" + val annotations = "com.fasterxml.jackson.core:jackson-annotations:$annotationsVersion" // https://github.com/FasterXML/jackson-module-kotlin/releases val moduleKotlin = "$moduleGroup:jackson-module-kotlin" - // https://github.com/FasterXML/jackson-modules-java8 + @Deprecated( + "The module was merged into `jackson-databind` in Jackson 3.0" + + " and is no longer published.", + ReplaceWith("Jackson.databind", "io.spine.dependency.lib.Jackson"), + level = DeprecationLevel.ERROR + ) val moduleParameterNames = "$moduleGroup:jackson-module-parameter-names" override val modules = listOf( core, databind, - moduleKotlin, - moduleParameterNames + moduleKotlin ) object DataFormat : Dependency() { @@ -81,10 +107,13 @@ object Jackson : DependencyWithBom() { // https://github.com/FasterXML/jackson-dataformats-text/releases val yaml = "$group:$infix-yaml" + // https://github.com/FasterXML/jackson-dataformats-binary/tree/3.x/protobuf + val protobuf = "$group:$infix-protobuf" + val xmlArtifact = "$xml:$version" val yamlArtifact = "$yaml:$version" - override val modules = listOf(xml, yaml) + override val modules = listOf(xml, yaml, protobuf) } object DataType : Dependency() { @@ -93,38 +122,50 @@ object Jackson : DependencyWithBom() { private const val infix = "jackson-datatype" - // https://github.com/FasterXML/jackson-modules-java8 + @Deprecated( + "The module was merged into `jackson-databind` in Jackson 3.0" + + " and is no longer published.", + ReplaceWith("Jackson.databind", "io.spine.dependency.lib.Jackson"), + level = DeprecationLevel.ERROR + ) val jdk8 = "$group:$infix-jdk8" - // https://github.com/FasterXML/jackson-modules-java8/tree/2.19/datetime + @Deprecated( + "The module was merged into `jackson-databind` in Jackson 3.0" + + " and is no longer published.", + ReplaceWith("Jackson.databind", "io.spine.dependency.lib.Jackson"), + level = DeprecationLevel.ERROR + ) val dateTime = "$group:$infix-jsr310" - // https://github.com/FasterXML/jackson-datatypes-collections/blob/2.19/guava + // https://github.com/FasterXML/jackson-datatypes-collections/tree/3.x/guava val guava = "$group:$infix-guava" - // https://github.com/FasterXML/jackson-dataformats-binary/tree/2.19/protobuf + @Deprecated( + "Protobuf support is a data format, not a data type." + + " The `$infix-protobuf` artifact has never been published.", + ReplaceWith("Jackson.DataFormat.protobuf", "io.spine.dependency.lib.Jackson"), + level = DeprecationLevel.ERROR + ) val protobuf = "$group:$infix-protobuf" - // https://github.com/FasterXML/jackson-datatypes-misc/tree/2.19/javax-money + // https://github.com/FasterXML/jackson-datatypes-misc/tree/3.x/javax-money val javaXMoney = "$group:$infix-javax-money" - // https://github.com/FasterXML/jackson-datatypes-misc/tree/2.19/moneta + // https://github.com/FasterXML/jackson-datatypes-misc/tree/3.x/moneta val moneta = "$group:jackson-datatype-moneta" override val modules = listOf( - jdk8, - dateTime, guava, - protobuf, javaXMoney, moneta ) } - // https://github.com/FasterXML/jackson-jr + // https://github.com/FasterXML/jackson-jr/tree/3.x object Junior : Dependency() { override val version = Jackson.version - override val group = "com.fasterxml.jackson.jr" + override val group = "$groupPrefix.jr" val objects = "$group:jackson-jr-objects" diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt b/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt new file mode 100644 index 0000000000..1a2d62bf16 --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt @@ -0,0 +1,107 @@ +/* + * Copyright 2026, TeamDev. 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 + * + * Redistribution and use in source and/or binary forms, with or without + * modification, must retain the above copyright notice and the following + * disclaimer. + * + * 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. + */ + +package io.spine.dependency.lib + +import io.spine.dependency.Dependency +import io.spine.dependency.DependencyWithBom + +/** + * Jackson 2.x dependencies. + * + * Jackson 2.x artifacts keep the `com.fasterxml.jackson.*` group IDs, unlike + * Jackson 3.x, which moved to `tools.jackson` + * ([JSTEP-1](https://github.com/FasterXML/jackson-future-ideas/wiki/JSTEP-1)). + * + * We declare the 2.x line to align the versions of the artifacts pulled transitively by third-party + * dependencies, while our own code uses Jackson 3.x declared by [Jackson]. + * + * The `jackson-annotations` artifact, although it belongs to the 2.x line, is + * declared by [Jackson.annotations] because Jackson 3.x keeps consuming it. + * + * See: + * - [Jackson Releases](https://github.com/FasterXML/jackson/wiki/Jackson-Releases) + * + * @see Jackson + */ +@Suppress("unused") +object JacksonV2 : DependencyWithBom() { + override val group = "com.fasterxml.jackson" + override val version = "2.22.1" + + // https://github.com/FasterXML/jackson-bom + override val bom = "$group:jackson-bom:$version" + + private val groupPrefix = group + + /** + * All Jackson 2.x modules we use are declared by the nested objects, + * such as [Core] or [DataType]. + */ + override val modules = emptyList() + + object Core : Dependency() { + override val version = JacksonV2.version + override val group = "$groupPrefix.core" + + @Suppress("MemberNameEqualsClassName") + val core = "$group:jackson-core" + val databind = "$group:jackson-databind" + + override val modules = listOf(core, databind) + } + + object DataType : Dependency() { + override val version = JacksonV2.version + override val group = "$groupPrefix.datatype" + + val jdk8 = "$group:jackson-datatype-jdk8" + val jsr310 = "$group:jackson-datatype-jsr310" + val guava = "$group:jackson-datatype-guava" + + override val modules = listOf(jdk8, jsr310, guava) + } + + object DataFormat : Dependency() { + override val version = JacksonV2.version + override val group = "$groupPrefix.dataformat" + + val xml = "$group:jackson-dataformat-xml" + val yaml = "$group:jackson-dataformat-yaml" + val protobuf = "$group:jackson-dataformat-protobuf" + + override val modules = listOf(xml, yaml, protobuf) + } + + object Module : Dependency() { + override val version = JacksonV2.version + override val group = "$groupPrefix.module" + + val parameterNames = "$group:jackson-module-parameter-names" + + override val modules = listOf(parameterNames) + } +} diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Log4j2.kt b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Log4j2.kt index 83b32e43d1..30b3dad8cb 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Log4j2.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Log4j2.kt @@ -37,6 +37,22 @@ package io.spine.dependency.lib */ @Suppress("unused", "ConstPropertyName") object Log4j2 { - private const val version = "2.26.0" + const val version = "2.26.1" + const val core = "org.apache.logging.log4j:log4j-core:$version" + + /** + * Routes the calls made through the [SLF4J API][Slf4J.lib] to the [core] backend. + * + * Add this artifact when a third-party library logs via SLF4J — such as Micronaut — + * and its output should reach the Log4j2 backend of the application. + * + * The artifact is `log4j-slf4j2-impl`, the binding for the SLF4J 2.x that [Slf4J] + * declares. Do not substitute `log4j-slf4j-impl`: it binds SLF4J 1.7 only, and + * under SLF4J 2.x it registers no provider, which leaves the logging silently + * unbound instead of failing the build. + * + * @see Log4j2 SLF4J 2.x binding + */ + const val slf4j2Bridge = "org.apache.logging.log4j:log4j-slf4j2-impl:$version" } diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/lib/PalantirJavaFormat.kt b/buildSrc/src/main/kotlin/io/spine/dependency/lib/PalantirJavaFormat.kt index 911c47755e..b8ec0f9679 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/lib/PalantirJavaFormat.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/PalantirJavaFormat.kt @@ -36,7 +36,7 @@ import io.spine.dependency.Dependency object PalantirJavaFormat : Dependency() { override val group = "com.palantir.javaformat" - override val version = "2.91.0" + override val version = "2.97.0" override val modules: List = listOf("$group:palantir-java-format") val lib = artifact(modules[0]) diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Roaster.kt b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Roaster.kt index d08b2f5176..64c855793f 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Roaster.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Roaster.kt @@ -30,13 +30,6 @@ package io.spine.dependency.lib @Suppress("unused", "ConstPropertyName") object Roaster { - /** - * This is the last version built with Java 11. - * - * Starting from the version - * [2.29.0.Final](https://github.com/forge/roaster/releases/tag/2.29.0.Final), - * Roaster requires Java 17. - */ private const val version = "2.31.0.Final" const val group = "org.jboss.forge.roaster" diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt index 5e777498e9..f18db326c6 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt @@ -33,8 +33,8 @@ package io.spine.dependency.local */ @Suppress("ConstPropertyName", "unused") object Base { - const val version = "2.0.0-SNAPSHOT.426" - const val versionForBuildScript = "2.0.0-SNAPSHOT.426" + const val version = "2.0.0-SNAPSHOT.440" + const val versionForBuildScript = "2.0.0-SNAPSHOT.440" const val group = Spine.group private const val prefix = "spine" const val libModule = "$prefix-base" diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/local/Compiler.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/Compiler.kt index 753bf24af4..1d882ab759 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Compiler.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Compiler.kt @@ -72,7 +72,7 @@ object Compiler : Dependency() { * The version of the Compiler dependencies. */ override val version: String - private const val fallbackVersion = "2.0.0-SNAPSHOT.064" + private const val fallbackVersion = "2.0.0-SNAPSHOT.065" /** * The distinct version of the Compiler used by other build tools. @@ -81,7 +81,7 @@ object Compiler : Dependency() { * transitive dependencies, this is the version used to build the project itself. */ val dogfoodingVersion: String - private const val fallbackDfVersion = "2.0.0-SNAPSHOT.064" + private const val fallbackDfVersion = "2.0.0-SNAPSHOT.065" /** * The artifact for the Compiler Gradle plugin. @@ -114,9 +114,6 @@ object Compiler : Dependency() { val gradleApi get() = "$group:compiler-gradle-api:$version" - val cliApi - get() = "$group:compiler-cli-api:$version" - val jvmModule = "$group:compiler-jvm" fun jvm(version: String): String = @@ -125,8 +122,15 @@ object Compiler : Dependency() { val jvm get() = jvm(version) + /** + * The all-in-one ("fat") distribution of the Compiler command-line application. + * + * The artifact is named `compiler-cli-all` because it is published by + * the `cliFatJar` publication of the `:cli` module. Keep this name in sync with + * the `Artifacts.fatCli()` function of the `compiler-gradle-api` module. + */ val fatCli - get() = "$group:compiler-fat-cli:$version" + get() = "$group:compiler-cli-all:$version" val testlib get() = "$group:compiler-testlib:$version" @@ -138,7 +142,6 @@ object Compiler : Dependency() { params, protocPlugin, gradleApi, - cliApi, jvm, fatCli, testlib diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/local/CoreJvm.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/CoreJvm.kt index d60780d019..a06ad279d4 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/CoreJvm.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/CoreJvm.kt @@ -39,7 +39,7 @@ typealias CoreJava = CoreJvm @Suppress("ConstPropertyName", "unused") object CoreJvm { const val group = Spine.group - const val version = "2.0.0-SNAPSHOT.522" + const val version = "2.0.0-SNAPSHOT.523" const val coreArtifact = "spine-core" const val clientArtifact = "spine-client" diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/local/ModelCompiler.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/ModelCompiler.kt deleted file mode 100644 index 39ea1a2891..0000000000 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/ModelCompiler.kt +++ /dev/null @@ -1,40 +0,0 @@ -/* - * Copyright 2026, TeamDev. 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 - * - * Redistribution and use in source and/or binary forms, with or without - * modification, must retain the above copyright notice and the following - * disclaimer. - * - * 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. - */ - -package io.spine.dependency.local - -/** - * Spine Model Compiler Gradle API. - * - * @see spine-model-compiler - */ -@Suppress("ConstPropertyName") -object ModelCompiler { - const val version = "2.0.0-SNAPSHOT.200" - const val group = Spine.toolsGroup - const val artifact = "spine-model-compiler" - const val lib = "$group:$artifact:$version" -} diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/local/ToolBase.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/ToolBase.kt index 5a742dfa19..5b945e28ec 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/ToolBase.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/ToolBase.kt @@ -34,8 +34,8 @@ package io.spine.dependency.local @Suppress("ConstPropertyName", "unused") object ToolBase { const val group = Spine.toolsGroup - const val version = "2.0.0-SNAPSHOT.404" - const val dogfoodingVersion = "2.0.0-SNAPSHOT.404" + const val version = "2.0.0-SNAPSHOT.410" + const val dogfoodingVersion = "2.0.0-SNAPSHOT.410" const val lib = "$group:tool-base:$version" const val classicCodegen = "$group:classic-codegen:$version" diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt index 933d57e62e..6348fa21bf 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt @@ -61,8 +61,5 @@ object Validation { val javaBundle = javaBundle(version) - const val model = "$group:$prefix-model:$version" - - const val configModule = "$group:$prefix-configuration" const val context = "$group:$prefix-context:$version" } diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/test/Testcontainers.kt b/buildSrc/src/main/kotlin/io/spine/dependency/test/Testcontainers.kt index 85c91b5048..97124fbd76 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/test/Testcontainers.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/test/Testcontainers.kt @@ -33,12 +33,15 @@ package io.spine.dependency.test * The modules below are versioned and released together, so a single [version] applies to all * of them. * + * Starting with version 2.x, module artifacts are prefixed with `testcontainers-`, + * while the core [lib] artifact keeps the plain `testcontainers` name. + * * @see * Testcontainers for Java at GitHub */ @Suppress("unused", "ConstPropertyName") object Testcontainers { - private const val version = "1.21.4" + private const val version = "2.0.5" private const val group = "org.testcontainers" /** @@ -49,15 +52,20 @@ object Testcontainers { /** * The JUnit 5 (Jupiter) integration. */ - const val junitJupiter = "$group:junit-jupiter:$version" + const val junitJupiter = "$group:testcontainers-junit-jupiter:$version" /** * The Google Cloud (GCP) emulator container support. */ - const val gcloud = "$group:gcloud:$version" + const val gcloud = "$group:testcontainers-gcloud:$version" /** * The MySQL container support. */ - const val mySql = "$group:mysql:$version" + const val mySql = "$group:testcontainers-mysql:$version" + + /** + * The PostgreSQL container support. + */ + const val postgresql = "$group:testcontainers-postgresql:$version" } diff --git a/buildSrc/src/main/kotlin/io/spine/gradle/report/license/LicenseReporter.kt b/buildSrc/src/main/kotlin/io/spine/gradle/report/license/LicenseReporter.kt index aa7e65f44c..7908b10b88 100644 --- a/buildSrc/src/main/kotlin/io/spine/gradle/report/license/LicenseReporter.kt +++ b/buildSrc/src/main/kotlin/io/spine/gradle/report/license/LicenseReporter.kt @@ -33,6 +33,8 @@ import io.spine.dependency.local.Spine import io.spine.gradle.SpineTaskGroup import io.spine.gradle.applyPlugin import io.spine.gradle.getTask +import io.spine.gradle.report.license.Paths.outputFilename +import io.spine.gradle.report.license.Paths.relativePath import java.io.File import org.gradle.api.Project import org.gradle.api.Task @@ -74,6 +76,19 @@ object LicenseReporter { */ private const val mergeTaskName = "mergeAllLicenseReports" + /** + * The reason for opting [projectTaskName] out of the build cache. + * + * The task only re-renders already resolved dependency metadata into a small + * Markdown file, so recomputing it is cheaper than a cache round trip. + * Gradle Doctor consistently reports such tasks as + * [slower from cache](https://runningcode.github.io/gradle-doctor/slower-from-cache/). + * + * Up-to-date checks still apply, so an unchanged project does not re-run the task. + */ + private const val cacheOptOutReason = + "Rendering the license report is faster than fetching and unpacking a cache entry." + /** * Enables the generation of the license report for a single Gradle project. * @@ -82,7 +97,7 @@ object LicenseReporter { */ fun generateReportIn(project: Project) { project.applyPlugin(LicenseReportPlugin::class.java) - val reportOutputDir = project.layout.buildDirectory.dir(Paths.relativePath).get().asFile + val reportOutputDir = project.layout.buildDirectory.dir(relativePath).get().asFile with(project.the()) { outputDir = reportOutputDir.absolutePath @@ -94,21 +109,22 @@ object LicenseReporter { ) configurations = ALL - renderers = arrayOf(MarkdownReportRenderer(Paths.outputFilename)) + renderers = arrayOf(MarkdownReportRenderer(outputFilename)) } // The rendered report embeds the project's Maven coordinates — including its // version — in the report header (see `Template.writeHeader`). The - // `generateLicenseReport` task is a `@CacheableTask` that keys its up-to-date check - // and build-cache entry on the resolved dependencies only, not on the project version. - // Without the version as an explicit input, a version-only change leaves the task - // `UP-TO-DATE` (or restorable from the build cache), so the report keeps the previous - // version while `pom.xml`, produced by an always-running task, is updated. Declaring - // the version as an input invalidates the cached output when it changes, so the report - // is regenerated. The value is read lazily so it reflects the version resolved at - // execution time, regardless of when `project.version` is assigned during configuration. + // `generateLicenseReport` task keys its up-to-date check on the resolved + // dependencies only, not on the project version. Without the version as an explicit + // input, a version-only change leaves the task `UP-TO-DATE`, so the report keeps the + // previous version while `pom.xml`, produced by an always-running task, is updated. + // Declaring the version as an input invalidates the output when it changes, so the + // report is regenerated. The value is read lazily so it reflects the version resolved + // at execution time, regardless of when `project.version` is assigned + // during configuration. project.tasks.generateLicenseReport.configure { inputs.property("projectVersion", project.provider { project.version.toString() }) + outputs.doNotCacheIf(cacheOptOutReason) { true } } } @@ -171,7 +187,7 @@ object LicenseReporter { val paths = sourceProjects .map { val buildDir = it.layout.buildDirectory.asFile.get() - "$buildDir/${Paths.relativePath}/${Paths.outputFilename}" + "$buildDir/$relativePath/$outputFilename" }.filter { val exists = File(it).exists() if (!exists) { @@ -181,7 +197,7 @@ object LicenseReporter { } println("Merging the license reports from all projects.") val mergedContent = paths.joinToString("\n\n\n") { (File(it)).readText() } - val output = Paths.outputFile(rootProject.rootDir, Paths.outputFilename) + val output = Paths.outputFile(rootProject.rootDir, outputFilename) output.parentFile.mkdirs() output.writeText(mergedContent) } diff --git a/config b/config index c93dbeed72..02824c32a4 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit c93dbeed7283ca9feb7f5f01a9ad17f8dfe2c5a3 +Subproject commit 02824c32a44a1691a2dd2fc17c209cdacb3499ee diff --git a/docs/dependencies/dependencies.md b/docs/dependencies/dependencies.md index 1102bccea7..ed8495850d 100644 --- a/docs/dependencies/dependencies.md +++ b/docs/dependencies/dependencies.md @@ -1,11 +1,25 @@ -# Dependencies of `io.spine.tools:compiler-api:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-api:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. @@ -22,26 +36,11 @@ * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -51,6 +50,10 @@ * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -63,7 +66,7 @@ * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -98,10 +101,99 @@ * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -138,6 +230,46 @@ * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -146,11 +278,77 @@ * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -198,70 +396,208 @@ * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) ## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -278,6 +614,10 @@ * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -314,6 +654,10 @@ * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -447,6 +791,28 @@ 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -471,6 +837,61 @@ * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -483,6 +904,14 @@ * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -505,6 +934,10 @@ 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -657,6 +1090,46 @@ * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -669,6 +1142,15 @@ * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -677,6 +1159,36 @@ * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -685,6 +1197,14 @@ * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -706,12 +1226,17 @@ * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) -1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -719,9 +1244,19 @@ * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -743,6 +1278,14 @@ * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -851,10 +1394,6 @@ * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -887,10 +1426,6 @@ * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -899,10 +1434,6 @@ * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1023,6 +1554,10 @@ * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -1063,6 +1598,23 @@ * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1095,27 +1647,99 @@ * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-api-tests:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-api-tests:2.0.0-SNAPSHOT.066` ## Runtime ## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. @@ -1132,26 +1756,11 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1161,6 +1770,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -1181,7 +1794,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1259,13 +1872,102 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -1326,6 +2028,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -1334,10 +2076,49 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1346,6 +2127,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1363,9 +2152,24 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 13.0. * **Project URL:** [http://www.jetbrains.org](http://www.jetbrains.org) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1374,6 +2178,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-bom. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1426,6 +2238,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1462,6 +2278,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1471,26 +2304,94 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [BSD-3-Clause](https://asm.ow2.io/license.html) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-backend:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-backend:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. @@ -1507,26 +2408,11 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1536,6 +2422,10 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -1552,7 +2442,7 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1587,21 +2477,110 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) -1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. - * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) - * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) -1. **Group** : io.grpc. **Name** : grpc-bom. **Version** : 1.81.0. - * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) - * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) -1. **Group** : io.grpc. **Name** : grpc-context. **Version** : 1.81.0. - * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) - * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + +1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. + * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) + * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) + +1. **Group** : io.grpc. **Name** : grpc-bom. **Version** : 1.81.0. + * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) + * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) + +1. **Group** : io.grpc. **Name** : grpc-context. **Version** : 1.81.0. + * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) + * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) 1. **Group** : io.grpc. **Name** : grpc-core. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) @@ -1627,6 +2606,46 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -1635,11 +2654,77 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1687,70 +2772,208 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) ## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1767,6 +2990,10 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -1803,6 +3030,10 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1936,6 +3167,28 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -1960,6 +3213,61 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1972,6 +3280,14 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -1994,6 +3310,10 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2146,6 +3466,46 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -2158,6 +3518,15 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -2166,6 +3535,36 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2174,6 +3573,14 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2195,10 +3602,15 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -2208,9 +3620,19 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -2232,6 +3654,14 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2340,10 +3770,6 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2376,10 +3802,6 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2388,10 +3810,6 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2512,6 +3930,10 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -2552,9 +3974,26 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) -1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. - * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) - * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. + * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : org.ow2.asm. **Name** : asm. **Version** : 9.10.1. * **Project URL:** [http://asm.ow2.io/](http://asm.ow2.io/) @@ -2584,23 +4023,100 @@ This report was generated on **Mon Aug 03 17:17:19 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-cli:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-cli:2.0.0-SNAPSHOT.066` ## Runtime +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2620,11 +4136,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2635,10 +4146,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) @@ -2718,6 +4229,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -2734,7 +4249,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2769,11 +4284,33 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.97.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) -1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.91.0. +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.97.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -2781,6 +4318,73 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -2817,6 +4421,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -2825,20 +4469,86 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : net.java.dev.jna. **Name** : jna. **Version** : 5.14.0. * **Project URL:** [https://github.com/java-native-access/jna](https://github.com/java-native-access/jna) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [LGPL-2.1-or-later](https://www.gnu.org/licenses/old-licenses/lgpl-2.1) +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + 1. **Group** : org.functionaljava. **Name** : functionaljava. **Version** : 5.0. * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -2886,70 +4596,228 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) ## Compile, tests, and tooling +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3030,6 +4898,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -3070,6 +4942,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3203,15 +5079,45 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.97.0. + * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) -1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.97.0. + * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) @@ -3227,6 +5133,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3239,6 +5200,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3261,6 +5230,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3413,6 +5386,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -3425,6 +5438,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -3433,11 +5455,41 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : net.java.dev.jna. **Name** : jna. **Version** : 5.14.0. * **Project URL:** [https://github.com/java-native-access/jna](https://github.com/java-native-access/jna) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [LGPL-2.1-or-later](https://www.gnu.org/licenses/old-licenses/lgpl-2.1) +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3446,6 +5498,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3467,10 +5527,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -3480,9 +5545,19 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -3504,6 +5579,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3612,10 +5695,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3648,10 +5727,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3660,10 +5735,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3784,6 +5855,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -3824,6 +5899,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3856,23 +5948,100 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-gradle-api:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-gradle-api:2.0.0-SNAPSHOT.066` ## Runtime +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3897,21 +6066,11 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3921,6 +6080,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -3933,7 +6096,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -3968,10 +6131,99 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -4008,6 +6260,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -4016,11 +6308,77 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4068,66 +6426,178 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. - * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. - * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + +## Compile, tests, and tooling +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. + * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4143,6 +6613,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -4171,7 +6645,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4283,6 +6757,28 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) @@ -4291,6 +6787,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/korlibs/korge-next](https://github.com/korlibs/korge-next) * **License:** [MIT](https://raw.githubusercontent.com/korlibs/korge-next/master/korge/LICENSE.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4299,6 +6850,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4321,6 +6880,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4473,6 +7036,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -4485,10 +7088,57 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4510,18 +7160,33 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -4543,6 +7208,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4811,6 +7484,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -4851,6 +7528,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4883,23 +7577,100 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-gradle-plugin:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-gradle-plugin:2.0.0-SNAPSHOT.066` ## Runtime +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4924,21 +7695,11 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4948,6 +7709,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -4960,7 +7725,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -4995,10 +7760,99 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -5035,6 +7889,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -5043,13 +7937,79 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) -1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. - * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 13.0. - * **Project URL:** [http://www.jetbrains.org](http://www.jetbrains.org) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 13.0. + * **Project URL:** [http://www.jetbrains.org](http://www.jetbrains.org) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-bom. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) @@ -5095,35 +8055,152 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + ## Compile, tests, and tooling +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5133,27 +8210,22 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5170,6 +8242,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -5198,7 +8274,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5314,6 +8390,28 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) @@ -5322,6 +8420,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/korlibs/korge-next](https://github.com/korlibs/korge-next) * **License:** [MIT](https://raw.githubusercontent.com/korlibs/korge-next/master/korge/LICENSE.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5330,6 +8483,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5352,6 +8513,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5504,6 +8669,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -5516,6 +8721,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -5524,6 +8738,44 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5545,18 +8797,33 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -5578,6 +8845,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5878,6 +9149,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -5922,6 +9197,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5954,23 +9246,100 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-jvm:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-jvm:2.0.0-SNAPSHOT.066` ## Runtime +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5990,11 +9359,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6005,10 +9369,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) @@ -6024,6 +9388,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -6040,7 +9408,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6075,18 +9443,107 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) -1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. - * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) - * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) -1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.91.0. - * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) -1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.97.0. + * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.97.0. + * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -6123,6 +9580,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -6131,15 +9628,81 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + 1. **Group** : org.functionaljava. **Name** : functionaljava. **Version** : 5.0. * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6187,70 +9750,228 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) ## Compile, tests, and tooling +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6267,6 +9988,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -6303,6 +10028,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6436,14 +10165,44 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.97.0. + * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format-spi. **Version** : 2.97.0. + * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) @@ -6460,6 +10219,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6472,6 +10286,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6494,6 +10316,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6646,6 +10472,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -6658,6 +10524,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -6666,6 +10541,36 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6674,6 +10579,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6695,10 +10608,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -6708,9 +10626,19 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -6732,7 +10660,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6840,10 +10776,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6876,10 +10808,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -6888,10 +10816,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7012,6 +10936,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -7052,6 +10980,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7084,26 +11029,98 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-params:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-params:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. @@ -7120,26 +11137,11 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7149,6 +11151,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -7161,7 +11167,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7196,10 +11202,99 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -7236,6 +11331,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -7244,11 +11379,77 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7296,70 +11497,208 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) ## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7376,6 +11715,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -7412,6 +11755,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7545,6 +11892,28 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -7569,6 +11938,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7581,6 +12005,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7603,6 +12035,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7743,17 +12179,57 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group** : io.kotest. **Name** : kotest-assertions-shared-jvm. **Version** : 6.1.11. - * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) - * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.kotest. **Name** : kotest-assertions-shared-jvm. **Version** : 6.1.11. + * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) + * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) + +1. **Group** : io.kotest. **Name** : kotest-common. **Version** : 6.1.11. + * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) + * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) + +1. **Group** : io.kotest. **Name** : kotest-common-jvm. **Version** : 6.1.11. + * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) + * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) + +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) -1. **Group** : io.kotest. **Name** : kotest-common. **Version** : 6.1.11. - * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) - * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) -1. **Group** : io.kotest. **Name** : kotest-common-jvm. **Version** : 6.1.11. - * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) - * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) @@ -7767,6 +12243,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -7775,6 +12260,44 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7796,10 +12319,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -7809,9 +12337,19 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -7833,6 +12371,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7941,10 +12487,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7977,10 +12519,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -7989,10 +12527,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -8113,6 +12647,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -8153,6 +12691,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -8185,21 +12740,79 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-protoc-plugin:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-protoc-plugin:2.0.0-SNAPSHOT.066` ## Runtime 1. **Group** : com.google.code.findbugs. **Name** : jsr305. **Version** : 3.0.2. @@ -8282,36 +12895,36 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) ## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -8679,10 +13292,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -9035,19 +13648,33 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-test-env:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-test-env:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. @@ -9064,26 +13691,11 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9093,6 +13705,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -9109,7 +13725,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9144,10 +13760,99 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://developers.google.com/protocol-buffers/](https://developers.google.com/protocol-buffers/) * **License:** [BSD-3-Clause](https://opensource.org/licenses/BSD-3-Clause) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -9184,6 +13889,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -9192,11 +13937,77 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.codehaus.mojo. **Name** : animal-sniffer-annotations. **Version** : 1.27. * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9236,78 +14047,216 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.coroutines](https://github.com/Kotlin/kotlinx.coroutines) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlinx. **Name** : kotlinx-datetime. **Version** : 0.8.0. - * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) - * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains.kotlinx. **Name** : kotlinx-datetime. **Version** : 0.8.0. + * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains.kotlinx. **Name** : kotlinx-datetime-jvm. **Version** : 0.8.0. + * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + +1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. + * **Project URL:** [http://jspecify.org/](http://jspecify.org/) + * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + +## Compile, tests, and tooling +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlinx. **Name** : kotlinx-datetime-jvm. **Version** : 0.8.0. - * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) - * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) -1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. - * **Project URL:** [http://jspecify.org/](http://jspecify.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9324,6 +14273,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -9364,6 +14317,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9497,6 +14454,28 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -9521,6 +14500,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9533,6 +14567,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9555,6 +14597,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9707,6 +14753,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -9719,6 +14805,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -9727,6 +14822,44 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9748,10 +14881,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -9761,9 +14899,19 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -9785,6 +14933,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9893,10 +15049,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9929,10 +15081,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -9941,10 +15089,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10065,6 +15209,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -10105,6 +15253,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10137,26 +15302,98 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). -# Dependencies of `io.spine.tools:compiler-testlib:2.0.0-SNAPSHOT.065` +# Dependencies of `io.spine.tools:compiler-testlib:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. @@ -10173,26 +15410,11 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. - * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) - * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10202,6 +15424,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ben-manes/caffeine](https://github.com/ben-manes/caffeine) * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -10222,7 +15448,7 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://findbugs.sourceforge.net/](http://findbugs.sourceforge.net/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.13.2. +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10280,13 +15506,102 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.sksamuel.aedile. **Name** : aedile-core. **Version** : 3.0.4. * **Project URL:** [https://www.github.com/sksamuel/aedile](https://www.github.com/sksamuel/aedile) * **License:** [The Apache 2.0 License](https://opensource.org/licenses/Apache-2.0) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.grpc. **Name** : grpc-api. **Version** : 1.81.0. * **Project URL:** [https://github.com/grpc/grpc-java](https://github.com/grpc/grpc-java) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -10343,9 +15658,49 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) -1. **Group** : io.kotest. **Name** : kotest-common-jvm. **Version** : 6.1.11. - * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) - * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.kotest. **Name** : kotest-common-jvm. **Version** : 6.1.11. + * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) + * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) + +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) @@ -10355,10 +15710,49 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://jcp.org/en/jsr/detail?id=250](http://jcp.org/en/jsr/detail?id=250) * **License:** [CDDL + GPLv2 with classpath exception](https://github.com/javaee/javax.annotation/blob/master/LICENSE) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10367,6 +15761,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.checkerframework. **Name** : checker-compat-qual. **Version** : 2.5.3. * **Project URL:** [https://checkerframework.org](https://checkerframework.org) * **License:** [GNU General Public License, version 2 (GPL2), with the classpath exception](http://www.gnu.org/software/classpath/license.html) @@ -10376,10 +15778,29 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) -1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 23.0.0. +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10435,6 +15856,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx-datetime](https://github.com/Kotlin/kotlinx-datetime) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jspecify. **Name** : jspecify. **Version** : 1.0.0. * **Project URL:** [http://jspecify.org/](http://jspecify.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10451,6 +15876,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10460,66 +15902,183 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [BSD-3-Clause](https://asm.ow2.io/license.html) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. - * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) ## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : be.cyberelf.nanoxml. **Name** : nanoxml. **Version** : 2.2.3. + * **Project URL:** [http://nanoxml.cyberelf.be/](http://nanoxml.cyberelf.be/) + * **License:** [The zlib/libpng License](http://www.opensource.org/licenses/zlib-license.html) + +1. **Group** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.esotericsoftware.kryo. **Name** : kryo. **Version** : 2.24.0. + * **Project URL:** [https://github.com/EsotericSoftware/kryo](https://github.com/EsotericSoftware/kryo) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.esotericsoftware.minlog. **Name** : minlog. **Version** : 1.2. + * **Project URL:** [http://code.google.com/p/minlog/](http://code.google.com/p/minlog/) + * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : com.fasterxml. **Name** : aalto-xml. **Version** : 1.3.0. + * **Project URL:** [https://github.com/FasterXML/aalto-xml](https://github.com/FasterXML/aalto-xml) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-annotations. **Version** : 2.22. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-core. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-xml. **Version** : 2.15.3. * **Project URL:** [https://github.com/FasterXML/jackson-dataformat-xml](https://github.com/FasterXML/jackson-dataformat-xml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jdk8) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jsr310. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310](https://github.com/FasterXML/jackson-modules-java8/jackson-datatype-jsr310) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.fasterxml.jackson.jr. **Name** : jackson-jr-objects. **Version** : 2.22.1. + * **Project URL:** [https://github.com/FasterXML/jackson-jr](https://github.com/FasterXML/jackson-jr) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.15.3. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.0. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-kotlin. **Version** : 2.22.1. * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.0. * **Project URL:** [https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names](https://github.com/FasterXML/jackson-modules-java8/jackson-module-parameter-names) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 7.2.0. +1. **Group** : com.fasterxml.woodstox. **Name** : woodstox-core. **Version** : 6.5.1. * **Project URL:** [https://github.com/FasterXML/woodstox](https://github.com/FasterXML/woodstox) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10536,6 +16095,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://www.github.com/KevinStern/software-and-algorithms](https://www.github.com/KevinStern/software-and-algorithms) * **License:** [MIT License](http://www.opensource.org/licenses/mit-license.php) +1. **Group** : com.github.spullara.cli-parser. **Name** : cli-parser. **Version** : 1.1.5. + * **Project URL:** [http://code.google.com/p/cli-parser/](http://code.google.com/p/cli-parser/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.android. **Name** : annotations. **Version** : 4.1.1.4. * **Project URL:** [http://source.android.com/](http://source.android.com/) * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0) @@ -10572,6 +16135,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.14.0. + * **Project URL:** [https://github.com/google/gson](https://github.com/google/gson) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : com.google.code.gson. **Name** : gson. **Version** : 2.8.9. * **Project URL:** [https://github.com/google/gson/gson](https://github.com/google/gson/gson) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10705,6 +16272,28 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : com.google.truth.extensions. **Name** : truth-proto-extension. **Version** : 1.4.5. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.ibm.icu. **Name** : icu4j. **Version** : 67.1. + * **Project URL:** [http://icu-project.org/](http://icu-project.org/) + * **License:** [Unicode/ICU License](https://raw.githubusercontent.com/unicode-org/icu/master/icu4c/LICENSE) + +1. **Group** : com.jetbrains.rd. **Name** : rd-core. **Version** : 2021.3.5. + * **Project URL:** [https://github.com/JetBrains/rd](https://github.com/JetBrains/rd) + * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : com.jgoodies. **Name** : forms. **Version** : 1.1-preview. + * **Project URL:** [http://www.jgoodies.com/](http://www.jgoodies.com/) + * **License:** BSD + +1. **Group** : com.jgoodies. **Name** : jgoodies-common. **Version** : 1.4.0. + * **Project URL:** [http://www.jgoodies.com/downloads/libraries.html](http://www.jgoodies.com/downloads/libraries.html) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.html) + +1. **Group** : com.miglayout. **Name** : miglayout-core. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + +1. **Group** : com.miglayout. **Name** : miglayout-swing. **Version** : 11.0. + * **License:** [BSD](http://www.debian.org/misc/bsd.license) + 1. **Group** : com.palantir.javaformat. **Name** : palantir-java-format. **Version** : 2.91.0. * **Project URL:** [https://github.com/palantir/palantir-java-format](https://github.com/palantir/palantir-java-format) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) @@ -10729,6 +16318,61 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/square/kotlinpoet](https://github.com/square/kotlinpoet) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : com.sun.activation. **Name** : javax.activation. **Version** : 1.2.0. + * **Project URL:** [http://www.oracle.com](http://www.oracle.com) + * **License:** [CDDL/GPLv2+CE](https://github.com/javaee/activation/blob/master/LICENSE.txt) + +1. **Group** : com.sun.istack. **Name** : istack-commons-runtime. **Version** : 3.0.7. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + * **License:** [GPL2 w/ CPE](https://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : com.sun.xml.fastinfoset. **Name** : FastInfoset. **Version** : 1.2.15. + * **Project URL:** [http://fi.java.net](http://fi.java.net) + * **License:** [Apache License, Version 2.0](http://www.opensource.org/licenses/apache2.0.php) + +1. **Group** : com.thoughtworks.xstream. **Name** : xstream. **Version** : 1.4.18. + * **Project URL:** [http://x-stream.github.io](http://x-stream.github.io) + * **License:** [BSD-3-Clause](http://x-stream.github.io/license.html) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-image. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-io. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.common. **Name** : common-lang. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-core. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-metadata. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : com.twelvemonkeys.imageio. **Name** : imageio-tiff. **Version** : 3.6.1. + * **License:** [The BSD License](https://github.com/haraldk/TwelveMonkeys#license) + +1. **Group** : commons-codec. **Name** : commons-codec. **Version** : 1.22.0. + * **Project URL:** [https://commons.apache.org/proper/commons-codec/](https://commons.apache.org/proper/commons-codec/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-collections. **Name** : commons-collections. **Version** : 3.2.2. + * **Project URL:** [http://commons.apache.org/collections/](http://commons.apache.org/collections/) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-io. **Name** : commons-io. **Version** : 2.11.0. + * **Project URL:** [https://commons.apache.org/proper/commons-io/](https://commons.apache.org/proper/commons-io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-lang. **Name** : commons-lang. **Version** : 2.4. + * **Project URL:** [http://commons.apache.org/lang/](http://commons.apache.org/lang/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : commons-logging. **Name** : commons-logging. **Version** : 1.3.6. + * **Project URL:** [https://commons.apache.org/proper/commons-logging/](https://commons.apache.org/proper/commons-logging/) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : dev.drewhamilton.poko. **Name** : poko-annotations. **Version** : 0.17.1. * **Project URL:** [https://github.com/drewhamilton/Poko](https://github.com/drewhamilton/Poko) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10741,6 +16385,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/ZacSweers/auto-service-ksp](https://github.com/ZacSweers/auto-service-ksp) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : dk.brics. **Name** : automaton. **Version** : 1.12-1. + * **Project URL:** [http://www.brics.dk/automaton](http://www.brics.dk/automaton) + * **License:** [BSD](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : io.github.classgraph. **Name** : classgraph. **Version** : 4.8.128. + * **Project URL:** [https://github.com/classgraph/classgraph](https://github.com/classgraph/classgraph) + * **License:** [The MIT License (MIT)](http://opensource.org/licenses/MIT) + 1. **Group** : io.github.davidburstrom.contester. **Name** : contester-breakpoint. **Version** : 0.2.0. * **Project URL:** [https://github.com/davidburstrom/contester](https://github.com/davidburstrom/contester) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10763,6 +16415,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using 1. **Group** : io.github.java-diff-utils. **Name** : java-diff-utils. **Version** : 4.16. * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : io.github.x-stream. **Name** : mxparser. **Version** : 1.2.2. + * **Project URL:** [http://x-stream.github.io/mxparser](http://x-stream.github.io/mxparser) + * **License:** [Indiana University Extreme! Lab Software License](https://raw.githubusercontent.com/x-stream/mxparser/master/LICENSE.txt) + 1. **Group** : io.gitlab.arturbosch.detekt. **Name** : detekt-api. **Version** : 1.23.8. * **Project URL:** [https://detekt.dev](https://detekt.dev) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10915,6 +16571,46 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/kotest/kotest](https://github.com/kotest/kotest) * **License:** [Apache-2.0](https://opensource.org/licenses/Apache-2.0) +1. **Group** : io.netty. **Name** : netty-buffer. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-http2. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-codec-socks. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-common. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-handler-proxy. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-resolver. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + +1. **Group** : io.netty. **Name** : netty-transport. **Version** : 4.1.72.Final. + * **Project URL:** [https://netty.io/](https://netty.io/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0) + 1. **Group** : io.perfmark. **Name** : perfmark-api. **Version** : 0.27.0. * **Project URL:** [https://github.com/perfmark/perfmark](https://github.com/perfmark/perfmark) * **License:** [Apache 2.0](https://opensource.org/licenses/Apache-2.0) @@ -10927,6 +16623,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : javax.xml.bind. **Name** : jaxb-api. **Version** : 2.3.1. + * **Project URL:** [http://www.oracle.com/](http://www.oracle.com/) + * **License:** [CDDL 1.1](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + * **License:** [GPL2 w/ CPE](https://oss.oracle.com/licenses/CDDL+GPL-1.1) + +1. **Group** : jaxen. **Name** : jaxen. **Version** : 1.2.0. + * **Project URL:** [http://www.cafeconleche.org/jaxen](http://www.cafeconleche.org/jaxen) + * **License:** [BSD License 2.0](https://raw.githubusercontent.com/jaxen-xpath/jaxen/master/LICENSE.txt) + 1. **Group** : junit. **Name** : junit. **Version** : 4.13.2. * **Project URL:** [http://junit.org](http://junit.org) * **License:** [Eclipse Public License 1.0](http://www.eclipse.org/legal/epl-v10.html) @@ -10935,6 +16640,36 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/trustin/os-maven-plugin/](https://github.com/trustin/os-maven-plugin/) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0) +1. **Group** : net.bytebuddy. **Name** : byte-buddy-agent. **Version** : 1.10.1. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : net.jcip. **Name** : jcip-annotations. **Version** : 1.0. + * **Project URL:** [http://jcip.net/](http://jcip.net/) + +1. **Group** : one.util. **Name** : streamex. **Version** : 0.7.3. + * **Project URL:** [https://github.com/amaembo/streamex](https://github.com/amaembo/streamex) + * **License:** [Apache License, Version 2.0](${license.url}) + +1. **Group** : org.apache.commons. **Name** : commons-compress. **Version** : 1.21. + * **Project URL:** [https://commons.apache.org/proper/commons-compress/](https://commons.apache.org/proper/commons-compress/) + * **License:** [Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : fluent-hc. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpclient. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpcore. **Version** : 4.4.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-core-ga](http://hc.apache.org/httpcomponents-core-ga) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.httpcomponents. **Name** : httpmime. **Version** : 4.5.13. + * **Project URL:** [http://hc.apache.org/httpcomponents-client](http://hc.apache.org/httpcomponents-client) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apache.logging.log4j. **Name** : log4j-api. **Version** : 2.26.0. * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10943,6 +16678,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://logging.apache.org/log4j/2.x/](https://logging.apache.org/log4j/2.x/) * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.apache.velocity. **Name** : velocity. **Version** : 1.7. + * **Project URL:** [http://velocity.apache.org/engine/devel/](http://velocity.apache.org/engine/devel/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.apache.xmlgraphics. **Name** : xmlgraphics-commons. **Version** : 2.6. + * **Project URL:** [http://xmlgraphics.apache.org/commons/](http://xmlgraphics.apache.org/commons/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.apiguardian. **Name** : apiguardian-api. **Version** : 1.1.2. * **Project URL:** [https://github.com/apiguardian-team/apiguardian](https://github.com/apiguardian-team/apiguardian) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -10964,10 +16707,15 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) * **License:** [MIT license](https://spdx.org/licenses/MIT.txt) -1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.3.0. +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2. + * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) + +1. **Group** : org.codehaus.woodstox. **Name** : stax2-api. **Version** : 4.2.1. * **Project URL:** [http://github.com/FasterXML/stax2-api](http://github.com/FasterXML/stax2-api) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - * **License:** [The BSD 2-Clause License](http://www.opensource.org/licenses/bsd-license.php) + * **License:** [The BSD License](http://www.opensource.org/licenses/bsd-license.php) 1. **Group** : org.freemarker. **Name** : freemarker. **Version** : 2.3.32. * **Project URL:** [https://freemarker.apache.org/](https://freemarker.apache.org/) @@ -10977,9 +16725,19 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [http://functionaljava.org/](http://functionaljava.org/) * **License:** [The BSD3 License](https://github.com/functionaljava/functionaljava/blob/master/etc/LICENCE) +1. **Group** : org.glassfish.jaxb. **Name** : jaxb-runtime. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.glassfish.jaxb. **Name** : txw2. **Version** : 2.3.1. + * **License:** [CDDL+GPL License](http://glassfish.java.net/public/CDDL+GPL_1_1.html) + 1. **Group** : org.hamcrest. **Name** : hamcrest-core. **Version** : 1.3. * **License:** [New BSD License](http://www.opensource.org/licenses/bsd-license.php) +1. **Group** : org.imgscalr. **Name** : imgscalr-lib. **Version** : 4.2. + * **Project URL:** [http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/](http://www.thebuzzmedia.com/software/imgscalr-java-image-scaling-library/) + * **License:** [ASF 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jacoco. **Name** : org.jacoco.agent. **Version** : 0.8.15. * **License:** [EPL-2.0](https://www.eclipse.org/legal/epl-2.0/) @@ -11001,6 +16759,14 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jetbrains. **Name** : annotations. **Version** : 26.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.jetbrains. **Name** : annotations-java5. **Version** : 20.1.0. + * **Project URL:** [https://github.com/JetBrains/java-annotations](https://github.com/JetBrains/java-annotations) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.jetbrains. **Name** : markdown. **Version** : 0.7.3. * **Project URL:** [https://github.com/JetBrains/markdown](https://github.com/JetBrains/markdown) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -11109,10 +16875,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-reflect. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -11145,10 +16907,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -11157,10 +16915,6 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.1.21. - * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) - * **License:** [The Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.3.21. * **Project URL:** [https://kotlinlang.org/](https://kotlinlang.org/) * **License:** [Apache-2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -11281,6 +17035,10 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://github.com/Kotlin/kotlinx.serialization](https://github.com/Kotlin/kotlinx.serialization) * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.14.2. + * **Project URL:** [https://jsoup.org/](https://jsoup.org/) + * **License:** [The MIT License](https://jsoup.org/license) + 1. **Group** : org.jsoup. **Name** : jsoup. **Version** : 1.16.1. * **Project URL:** [https://jsoup.org/](https://jsoup.org/) * **License:** [The MIT License](https://jsoup.org/license) @@ -11321,6 +17079,23 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://junit.org/](https://junit.org/) * **License:** [Eclipse Public License v2.0](https://www.eclipse.org/legal/epl-v20.html) +1. **Group** : org.jvnet.staxex. **Name** : stax-ex. **Version** : 1.8. + * **Project URL:** [http://stax-ex.java.net/](http://stax-ex.java.net/) + * **License:** [ + Dual license consisting of the CDDL v1.1 and GPL v2 + ](https://glassfish.dev.java.net/public/CDDL+GPL_1_1.html) + +1. **Group** : org.lz4. **Name** : lz4-pure-java. **Version** : 1.8.0. + * **Project URL:** [https://github.com/lz4/lz4-java](https://github.com/lz4/lz4-java) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.mozilla. **Name** : rhino-runtime. **Version** : 1.7.13. + * **Project URL:** [https://developer.mozilla.org/en/Rhino](https://developer.mozilla.org/en/Rhino) + * **License:** [Mozilla Public License, Version 2.0](http://www.mozilla.org/MPL/2.0/index.txt) + +1. **Group** : org.objenesis. **Name** : objenesis. **Version** : 3.2. + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + 1. **Group** : org.opentest4j. **Name** : opentest4j. **Version** : 1.3.0. * **Project URL:** [https://github.com/ota4j-team/opentest4j](https://github.com/ota4j-team/opentest4j) * **License:** [The Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) @@ -11353,13 +17128,71 @@ This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : org.snakeyaml. **Name** : snakeyaml-engine. **Version** : 3.0.1. + * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml-engine](https://bitbucket.org/snakeyaml/snakeyaml-engine) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : org.swinglabs. **Name** : swingx-core. **Version** : 1.6.2-2. + * **License:** [Lesser General Public License (LGPL)](http://www.gnu.org/copyleft/lesser.html) + +1. **Group** : org.tukaani. **Name** : xz. **Version** : 1.9. + * **Project URL:** [https://tukaani.org/xz/java.html](https://tukaani.org/xz/java.html) + * **License:** Public Domain + 1. **Group** : org.yaml. **Name** : snakeyaml. **Version** : 2.5. * **Project URL:** [https://bitbucket.org/snakeyaml/snakeyaml](https://bitbucket.org/snakeyaml/snakeyaml) * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +1. **Group** : oro. **Name** : oro. **Version** : 2.0.8.**No license information found** +1. **Group** : tools.jackson. **Name** : jackson-bom. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-bom](https://github.com/FasterXML/jackson-bom) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-core. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-core](https://github.com/FasterXML/jackson-core) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.core. **Name** : jackson-databind. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson](https://github.com/FasterXML/jackson) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.dataformat. **Name** : jackson-dataformat-yaml. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-dataformats-text](https://github.com/FasterXML/jackson-dataformats-text) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-datatypes-collections](https://github.com/FasterXML/jackson-datatypes-collections) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : tools.jackson.module. **Name** : jackson-module-kotlin. **Version** : 3.2.1. + * **Project URL:** [https://github.com/FasterXML/jackson-module-kotlin](https://github.com/FasterXML/jackson-module-kotlin) + * **License:** [Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xerces. **Name** : xercesImpl. **Version** : 2.12.1. + * **Project URL:** [https://xerces.apache.org/xerces2-j/](https://xerces.apache.org/xerces2-j/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-apis. **Name** : xml-apis-ext. **Version** : 1.3.04. + * **Project URL:** [http://xml.apache.org/commons/components/external/](http://xml.apache.org/commons/components/external/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xml-resolver. **Name** : xml-resolver. **Version** : 1.2. + * **Project URL:** [http://xml.apache.org/commons/components/resolver/](http://xml.apache.org/commons/components/resolver/) + * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : xmlpull. **Name** : xmlpull. **Version** : 1.1.3.1. + * **Project URL:** [http://www.xmlpull.org](http://www.xmlpull.org) + * **License:** [Public Domain](http://www.xmlpull.org/v1/download/unpacked/LICENSE.txt) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Mon Aug 03 17:17:20 WEST 2026** using +This report was generated on **Thu Aug 13 15:52:13 WEST 2026** using [Gradle-License-Report plugin](https://github.com/jk1/Gradle-License-Report) by Evgeny Naumenko, licensed under [Apache 2.0 License](https://github.com/jk1/Gradle-License-Report/blob/master/LICENSE). \ No newline at end of file diff --git a/docs/dependencies/pom.xml b/docs/dependencies/pom.xml index 17de3b7037..21e58959fc 100644 --- a/docs/dependencies/pom.xml +++ b/docs/dependencies/pom.xml @@ -10,7 +10,7 @@ all modules and does not describe the project structure per-subproject. --> io.spine.tools compiler -2.0.0-SNAPSHOT.065 +2.0.0-SNAPSHOT.066 2015 @@ -23,24 +23,6 @@ all modules and does not describe the project structure per-subproject. - - com.fasterxml.jackson - jackson-bom - 2.22.1 - compile - - - com.fasterxml.jackson.core - jackson-databind - 2.22.1 - compile - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.22.1 - compile - com.github.ajalt.clikt clikt @@ -74,7 +56,7 @@ all modules and does not describe the project structure per-subproject. com.palantir.javaformat palantir-java-format - 2.91.0 + 2.97.0 compile @@ -104,19 +86,19 @@ all modules and does not describe the project structure per-subproject. io.spine spine-base - 2.0.0-SNAPSHOT.426 + 2.0.0-SNAPSHOT.440 compile io.spine spine-environment - 2.0.0-SNAPSHOT.426 + 2.0.0-SNAPSHOT.440 compile io.spine spine-format - 2.0.0-SNAPSHOT.426 + 2.0.0-SNAPSHOT.440 compile @@ -140,7 +122,7 @@ all modules and does not describe the project structure per-subproject. io.spine spine-server - 2.0.0-SNAPSHOT.522 + 2.0.0-SNAPSHOT.523 compile @@ -170,13 +152,13 @@ all modules and does not describe the project structure per-subproject. io.spine.tools gradle-plugin-api - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile io.spine.tools jvm-tools - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile @@ -188,13 +170,13 @@ all modules and does not describe the project structure per-subproject. io.spine.tools plugin-base - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile io.spine.tools protobuf-setup-plugins - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile @@ -206,19 +188,19 @@ all modules and does not describe the project structure per-subproject. io.spine.tools psi-java - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile io.spine.tools server-testlib - 2.0.0-SNAPSHOT.522 + 2.0.0-SNAPSHOT.523 compile io.spine.tools tool-base - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile @@ -245,6 +227,24 @@ all modules and does not describe the project structure per-subproject. 1.10.2 compile + + tools.jackson + jackson-bom + 3.2.1 + compile + + + tools.jackson.core + jackson-databind + 3.2.1 + compile + + + tools.jackson.dataformat + jackson-dataformat-yaml + 3.2.1 + compile + com.google.auto.service auto-service @@ -264,9 +264,9 @@ all modules and does not describe the project structure per-subproject. provided - com.fasterxml.jackson.module + tools.jackson.module jackson-module-kotlin - 2.22.1 + 3.2.1 runtime @@ -284,7 +284,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools plugin-testlib - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 test @@ -381,12 +381,12 @@ all modules and does not describe the project structure per-subproject. io.spine.tools compiler-cli-all - 2.0.0-SNAPSHOT.064 + 2.0.0-SNAPSHOT.065 io.spine.tools compiler-protoc-plugin - 2.0.0-SNAPSHOT.064 + 2.0.0-SNAPSHOT.065 io.spine.tools diff --git a/jvm/src/test/kotlin/io/spine/tools/compiler/jvm/style/JavaCodeStyleFormatterPluginSpec.kt b/jvm/src/test/kotlin/io/spine/tools/compiler/jvm/style/JavaCodeStyleFormatterPluginSpec.kt index c96c2354d7..9d9740d129 100644 --- a/jvm/src/test/kotlin/io/spine/tools/compiler/jvm/style/JavaCodeStyleFormatterPluginSpec.kt +++ b/jvm/src/test/kotlin/io/spine/tools/compiler/jvm/style/JavaCodeStyleFormatterPluginSpec.kt @@ -36,7 +36,7 @@ import org.junit.jupiter.api.Test @DisplayName("`JavaCodeStyleFormatterPlugin` should") internal class JavaCodeStyleFormatterPluginSpec { - @Disabled + @Disabled("because we use `PalantirJavaFormatter` instead of `PsiJavaCodeStyleFormatter`") @Test fun `have only the 'JavaCodeStyleFormatter' renderer`() { val plugin = JavaCodeStyleFormatterPlugin() diff --git a/tests/build.gradle.kts b/tests/build.gradle.kts index db5072b681..58502456f7 100644 --- a/tests/build.gradle.kts +++ b/tests/build.gradle.kts @@ -28,6 +28,7 @@ import io.spine.dependency.boms.BomsPlugin import io.spine.dependency.lib.Caffeine import io.spine.dependency.lib.Grpc import io.spine.dependency.lib.Jackson +import io.spine.dependency.lib.JacksonV2 import io.spine.dependency.lib.Kotlin import io.spine.dependency.lib.KotlinPoet import io.spine.dependency.lib.Protobuf @@ -107,6 +108,32 @@ subprojects { Jackson.forceArtifacts(project, this@all, this@resolutionStrategy) Jackson.DataType.forceArtifacts(project, this@all, this@resolutionStrategy) Jackson.DataFormat.forceArtifacts(project, this@all, this@resolutionStrategy) + + /* + Jackson 2.x reaches this build only transitively — Palantir Java + Format and the IntelliJ Platform both consume it — while `Jackson` + declares the 3.x line under the `tools.jackson` group and so no + longer aligns `com.fasterxml.jackson.*`. Whenever those consumers + disagree on a version, the `failOnVersionConflict()` set by + `forceVersions()` above turns the divergence into a build failure + instead of resolving it. + + A BOM cannot do this job here: the Protobuf plugin configurations + such as `compileProtoPath` ignore `enforcedPlatform`. Matching the + whole group also covers the artifacts `JacksonV2` does not model, + e.g. `jackson-jr-objects` and `jackson-module-kotlin`. + + `jackson-annotations` is excluded on purpose: Jackson 3.x keeps + consuming it at its own version, forced via `Jackson.annotations`. + */ + eachDependency { + val jackson2 = requested.group.startsWith(JacksonV2.group) + if (jackson2 && requested.name != "jackson-annotations") { + useVersion(JacksonV2.version) + because("Align the Jackson 2.x line pulled in transitively.") + } + } + @Suppress("DEPRECATION") // To force `Kotlin.stdLibJdk7`. force( Grpc.bom, diff --git a/version.gradle.kts b/version.gradle.kts index 6c9eb8b7c5..5b95c99700 100644 --- a/version.gradle.kts +++ b/version.gradle.kts @@ -30,7 +30,7 @@ * This version is also used by integration test projects. * E.g. see `tests/consumer/build.gradle.kts`. */ -private val compilerVersion = "2.0.0-SNAPSHOT.065" +private val compilerVersion = "2.0.0-SNAPSHOT.066" extra.set("compilerVersion", compilerVersion) /**