From 9561b8f126212ff8fd778038bd7c4b05fa5862fe Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 20:26:42 +0100 Subject: [PATCH 01/15] Bump version -> `2.0.0-SNAPSHOT.065` --- version.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.gradle.kts b/version.gradle.kts index b4c9f76078..6c9eb8b7c5 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.064" +private val compilerVersion = "2.0.0-SNAPSHOT.065" extra.set("compilerVersion", compilerVersion) /** From 2feaa0eedf0f0483c3356a819a7ba32a407dffa2 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 20:27:12 +0100 Subject: [PATCH 02/15] Bump Base and ToolBase --- buildSrc/src/main/kotlin/io/spine/dependency/local/Base.kt | 4 ++-- .../src/main/kotlin/io/spine/dependency/local/ToolBase.kt | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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/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" From e449f25c07033dcc6642d736e095b82becd2bc50 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 20:36:21 +0100 Subject: [PATCH 03/15] Bump version -> `2.0.0-SNAPSHOT.066` --- version.gradle.kts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) /** From b5b2f4da611b5ce402fc5e21c3b8365b9d467402 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 20:45:59 +0100 Subject: [PATCH 04/15] Update `config` --- .../workflows/gradle-wrapper-validation.yml | 19 ---- buildSrc/build.gradle.kts | 7 +- buildSrc/src/main/kotlin/BuildExtensions.kt | 23 ++++ .../kotlin/io/spine/dependency/boms/Boms.kt | 4 +- .../kotlin/io/spine/dependency/lib/Jackson.kt | 84 ++++++++++---- .../io/spine/dependency/lib/JacksonV2.kt | 105 ++++++++++++++++++ .../kotlin/io/spine/dependency/lib/Log4j2.kt | 18 ++- .../kotlin/io/spine/dependency/lib/Roaster.kt | 7 -- .../io/spine/dependency/local/Change.kt | 2 +- .../io/spine/dependency/local/Compiler.kt | 17 +-- .../io/spine/dependency/local/Logging.kt | 2 +- .../spine/dependency/local/ModelCompiler.kt | 40 ------- .../kotlin/io/spine/dependency/local/Time.kt | 2 +- .../io/spine/dependency/local/ToolBase.kt | 4 +- .../io/spine/dependency/local/Validation.kt | 5 +- .../spine/dependency/test/Testcontainers.kt | 16 ++- .../gradle/report/license/LicenseReporter.kt | 40 +++++-- config | 2 +- 18 files changed, 271 insertions(+), 126 deletions(-) delete mode 100644 .github/workflows/gradle-wrapper-validation.yml create mode 100644 buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt delete mode 100644 buildSrc/src/main/kotlin/io/spine/dependency/local/ModelCompiler.kt 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/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 556f37a88e..5c24dc3c97 100644 --- a/buildSrc/src/main/kotlin/BuildExtensions.kt +++ b/buildSrc/src/main/kotlin/BuildExtensions.kt @@ -30,6 +30,7 @@ import io.spine.dependency.build.ErrorProne import io.spine.dependency.build.GradleDoctor import io.spine.dependency.build.Ksp import io.spine.dependency.build.PluginPublishPlugin +import io.spine.dependency.lib.JetBrainsAnnotations import io.spine.dependency.lib.Protobuf import io.spine.dependency.local.Compiler import io.spine.dependency.local.CoreJvmCompiler @@ -39,10 +40,12 @@ import io.spine.dependency.test.Kover import io.spine.gradle.repo.standardToSpineSdk import org.gradle.api.Project import org.gradle.api.Task +import org.gradle.api.artifacts.ModuleDependency import org.gradle.api.file.DuplicatesStrategy import org.gradle.api.tasks.JavaExec import org.gradle.jvm.tasks.Jar import org.gradle.kotlin.dsl.ScriptHandlerScope +import org.gradle.kotlin.dsl.exclude import org.gradle.plugin.use.PluginDependenciesSpec import org.gradle.plugin.use.PluginDependencySpec @@ -347,3 +350,23 @@ fun Project.allowDuplicationInSourcesJar() { } } } + +/** + * Excludes `org.jetbrains:annotations` from this published dependency. + * + * 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 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` + * dependency, which satisfies the pin. + */ +fun ModuleDependency.excludeJetBrainsAnnotations() { + exclude(group = JetBrainsAnnotations.groupId, module = JetBrainsAnnotations.artifactId) +} 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..7d078ed97e 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,34 @@ 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). 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 +75,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 +106,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 +121,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..256918f848 --- /dev/null +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt @@ -0,0 +1,105 @@ +/* + * 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). 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/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/Change.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/Change.kt index 26bef1ae26..7c094938ba 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Change.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Change.kt @@ -33,7 +33,7 @@ package io.spine.dependency.local */ @Suppress("ConstPropertyName") object Change { - const val version = "2.0.0-SNAPSHOT.206" + const val version = "2.0.0-SNAPSHOT.207" const val group = Spine.group const val artifact = "spine-change" const val lib = "$group:$artifact:$version" 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 2e2bc5adf3..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.062" + 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.062" + 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/Logging.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/Logging.kt index c79171f064..52beacda7d 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Logging.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Logging.kt @@ -33,7 +33,7 @@ package io.spine.dependency.local */ @Suppress("ConstPropertyName", "unused") object Logging { - const val version = "2.0.0-SNAPSHOT.422" + const val version = "2.0.0-SNAPSHOT.423" const val group = Spine.group const val loggingArtifact = "spine-logging" 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/Time.kt b/buildSrc/src/main/kotlin/io/spine/dependency/local/Time.kt index 271fe49e33..3b4fd0b38a 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Time.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Time.kt @@ -40,7 +40,7 @@ import io.spine.dependency.Dependency ) object Time : Dependency() { override val group = Spine.group - override val version = "2.0.0-SNAPSHOT.244" + override val version = "2.0.0-SNAPSHOT.250" private const val infix = "spine-time" fun lib(version: String): String = "$group:$infix:$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 5b945e28ec..5a742dfa19 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.410" - const val dogfoodingVersion = "2.0.0-SNAPSHOT.410" + const val version = "2.0.0-SNAPSHOT.404" + const val dogfoodingVersion = "2.0.0-SNAPSHOT.404" 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 9a92fe8b0f..6348fa21bf 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/local/Validation.kt @@ -36,7 +36,7 @@ object Validation { /** * The version of the Validation library artifacts. */ - const val version = "2.0.0-SNAPSHOT.450" + const val version = "2.0.0-SNAPSHOT.460" const val group = Spine.toolsGroup private const val prefix = "validation" @@ -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 91e13d433c..02824c32a4 160000 --- a/config +++ b/config @@ -1 +1 @@ -Subproject commit 91e13d433c0e892f4cb48c7575bb05899018974d +Subproject commit 02824c32a44a1691a2dd2fc17c209cdacb3499ee From eae370c7d680f97a383784ce76e3b488e88f2f43 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 21:07:48 +0100 Subject: [PATCH 05/15] Bump CoreJvm -> `2.0.0-SNAPSHOT.523` --- buildSrc/src/main/kotlin/io/spine/dependency/local/CoreJvm.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" From 36c1f7c0c102feb4fcd66b52f265099bdc7e4069 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 21:20:45 +0100 Subject: [PATCH 06/15] Force Time artifacts --- build.gradle.kts | 3 +++ 1 file changed, 3 insertions(+) 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 From 4b20c037c3008392c7e17ec04fd2f14fab8bfc22 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Wed, 12 Aug 2026 21:20:52 +0100 Subject: [PATCH 07/15] Update dependency reports --- docs/dependencies/dependencies.md | 1558 +++++++++++++++++++---------- docs/dependencies/pom.xml | 68 +- 2 files changed, 1041 insertions(+), 585 deletions(-) diff --git a/docs/dependencies/dependencies.md b/docs/dependencies/dependencies.md index 04e7024dc3..fb5666b234 100644 --- a/docs/dependencies/dependencies.md +++ b/docs/dependencies/dependencies.md @@ -1,52 +1,12 @@ -# Dependencies of `io.spine.tools:compiler-api:2.0.0-SNAPSHOT.064` +# 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) - * **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. - * **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. - * **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-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) - * **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) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -202,66 +162,120 @@ * **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.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** : 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) ## 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. **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.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-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-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.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.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.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-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) @@ -706,10 +720,10 @@ * **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/) @@ -851,10 +865,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 +897,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 +905,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) @@ -1095,66 +1097,60 @@ * **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.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) - -The dependencies distributed under several licenses, are used according their commercial-use-friendly license. - -This report was generated on **Fri Jul 24 18:42:23 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.064` - -## Runtime -## Compile, tests, and tooling -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +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-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) - -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** : 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.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) + +The dependencies distributed under several licenses, are used according their commercial-use-friendly license. + +This report was generated on **Wed Aug 12 21:08:09 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.066` + +## Runtime +## Compile, tests, and tooling +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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. @@ -1471,65 +1467,55 @@ This report was generated on **Fri Jul 24 18:42:23 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) - -The dependencies distributed under several licenses, are used according their commercial-use-friendly license. - -This report was generated on **Fri Jul 24 18:42:21 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.064` - -## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +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-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) - -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** : 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.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) + +The dependencies distributed under several licenses, are used according their commercial-use-friendly license. + +This report was generated on **Wed Aug 12 21:08:09 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.066` + +## Runtime +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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. @@ -1691,66 +1677,120 @@ This report was generated on **Fri Jul 24 18:42:21 WEST 2026** using * **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.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** : 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) ## 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. **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.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-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-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.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.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.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.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-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) @@ -2195,10 +2235,10 @@ This report was generated on **Fri Jul 24 18:42:21 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/) @@ -2340,10 +2380,6 @@ This report was generated on **Fri Jul 24 18:42:21 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 +2412,6 @@ This report was generated on **Fri Jul 24 18:42:21 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 +2420,6 @@ This report was generated on **Fri Jul 24 18:42:21 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) @@ -2584,24 +2612,58 @@ This report was generated on **Fri Jul 24 18:42:21 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.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** : 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) -The dependencies distributed under several licenses, are used according their commercial-use-friendly license. - -This report was generated on **Fri Jul 24 18:42:23 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). - +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) -# Dependencies of `io.spine.tools:compiler-cli:2.0.0-SNAPSHOT.064` +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) + + +The dependencies distributed under several licenses, are used according their commercial-use-friendly license. + +This report was generated on **Wed Aug 12 21:08:09 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.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.21.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) @@ -2610,42 +2672,27 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.21.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** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.21.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-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. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.21.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.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.21.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) - * **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.21.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) @@ -2890,66 +2937,150 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.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** : 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) ## 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. **Name** : jackson-bom. **Version** : 2.21.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. **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.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-core. **Version** : 2.21.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-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-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.21.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.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.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.21.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-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.21.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-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.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.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-parameter-names. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.21.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.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** : 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) @@ -3467,10 +3598,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -3612,10 +3743,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +3775,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +3783,6 @@ This report was generated on **Fri Jul 24 18:42:23 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) @@ -3856,21 +3975,55 @@ This report was generated on **Fri Jul 24 18:42:23 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.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** : 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) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using +This report was generated on **Wed Aug 12 21:08:09 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.064` +# Dependencies of `io.spine.tools:compiler-gradle-api:2.0.0-SNAPSHOT.066` ## Runtime 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. @@ -3897,26 +4050,6 @@ This report was generated on **Fri Jul 24 18:42:23 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) - * **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) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -4072,31 +4205,84 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.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.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** : 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) + ## Compile, tests, and tooling +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) @@ -4106,27 +4292,12 @@ This report was generated on **Fri Jul 24 18:42:23 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) - * **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. +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) @@ -4510,10 +4681,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -4883,21 +5054,55 @@ This report was generated on **Fri Jul 24 18:42:23 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.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** : 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) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using +This report was generated on **Wed Aug 12 21:08:09 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.064` +# Dependencies of `io.spine.tools:compiler-gradle-plugin:2.0.0-SNAPSHOT.066` ## Runtime 1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. @@ -4924,26 +5129,6 @@ This report was generated on **Fri Jul 24 18:42:23 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) - * **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) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -5099,31 +5284,84 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.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.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** : 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) + ## Compile, tests, and tooling +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 +5371,12 @@ This report was generated on **Fri Jul 24 18:42:23 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) - * **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. +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) @@ -5545,10 +5768,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -5954,24 +6177,58 @@ This report was generated on **Fri Jul 24 18:42:23 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.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** : 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) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using +This report was generated on **Wed Aug 12 21:08:09 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.064` +# Dependencies of `io.spine.tools:compiler-jvm:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.21.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) @@ -5980,42 +6237,27 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.21.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** : com.fasterxml.jackson.core. **Name** : jackson-databind. **Version** : 2.21.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-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. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-guava. **Version** : 2.21.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.1. +1. **Group** : com.fasterxml.jackson.datatype. **Name** : jackson-datatype-jdk8. **Version** : 2.21.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) - * **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.21.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) @@ -6191,66 +6433,150 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.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** : 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) ## 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. **Name** : jackson-bom. **Version** : 2.21.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. **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.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-core. **Version** : 2.21.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-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-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.21.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.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.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.21.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.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.21.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-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.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.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +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-parameter-names. **Version** : 2.21.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.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) @@ -6695,10 +7021,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -6840,10 +7166,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +7198,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +7206,6 @@ This report was generated on **Fri Jul 24 18:42:23 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) @@ -7084,65 +7398,59 @@ This report was generated on **Fri Jul 24 18:42:23 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.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) - -The dependencies distributed under several licenses, are used according their commercial-use-friendly license. - -This report was generated on **Fri Jul 24 18:42:23 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.064` - -## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +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-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) - -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** : 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.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) + +The dependencies distributed under several licenses, are used according their commercial-use-friendly license. + +This report was generated on **Wed Aug 12 21:08:09 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.066` + +## Runtime +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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. @@ -7300,66 +7608,120 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.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** : 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) ## 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. **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.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-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-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.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.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.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-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) @@ -7796,10 +8158,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -7941,10 +8303,6 @@ This report was generated on **Fri Jul 24 18:42:23 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,19 +8335,11 @@ This report was generated on **Fri Jul 24 18:42:23 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) -1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.0.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.1.21. +1. **Group** : org.jetbrains.kotlin. **Name** : kotlin-stdlib-common. **Version** : 2.0.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) @@ -8185,21 +8535,55 @@ This report was generated on **Fri Jul 24 18:42:23 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.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** : 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) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using +This report was generated on **Wed Aug 12 21:08:09 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.064` +# 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 +8666,36 @@ This report was generated on **Fri Jul 24 18:42:23 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 +9063,10 @@ This report was generated on **Fri Jul 24 18:42:23 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,60 +9419,20 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using +This report was generated on **Wed Aug 12 21:08:09 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.064` +# 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) - * **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. - * **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. - * **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-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) - * **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) - * **License:** [The Apache Software License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) - 1. **Group** : com.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -9248,66 +9592,120 @@ This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using * **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.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** : 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) ## 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. **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.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-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-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.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.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.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-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) @@ -9748,10 +10146,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -9893,10 +10291,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +10323,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +10331,6 @@ This report was generated on **Fri Jul 24 18:42:23 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) @@ -10137,65 +10523,59 @@ This report was generated on **Fri Jul 24 18:42:23 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.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) - -The dependencies distributed under several licenses, are used according their commercial-use-friendly license. - -This report was generated on **Fri Jul 24 18:42:23 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.064` - -## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.22.1. +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-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) - -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** : 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.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) + +The dependencies distributed under several licenses, are used according their commercial-use-friendly license. + +This report was generated on **Wed Aug 12 21:08:09 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.066` + +## Runtime +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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. @@ -10460,66 +10840,120 @@ This report was generated on **Fri Jul 24 18:42:23 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** : 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) ## 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. **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.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-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-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.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.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.jackson.module. **Name** : jackson-module-parameter-names. **Version** : 2.22.1. +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-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) @@ -10964,10 +11398,10 @@ This report was generated on **Fri Jul 24 18:42:23 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/) @@ -11109,10 +11543,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +11575,6 @@ This report was generated on **Fri Jul 24 18:42:23 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 +11583,6 @@ This report was generated on **Fri Jul 24 18:42:23 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) @@ -11353,13 +11775,47 @@ This report was generated on **Fri Jul 24 18:42:23 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.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** : 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) + The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Fri Jul 24 18:42:23 WEST 2026** using +This report was generated on **Wed Aug 12 21:08:09 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 4f6901f544..1f0f0b5610 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.064 +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 @@ -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,25 +122,25 @@ 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 io.spine spine-time - 2.0.0-SNAPSHOT.244 + 2.0.0-SNAPSHOT.250 compile io.spine spine-time-java - 2.0.0-SNAPSHOT.244 + 2.0.0-SNAPSHOT.250 compile io.spine spine-validation-jvm-runtime - 2.0.0-SNAPSHOT.450 + 2.0.0-SNAPSHOT.460 compile @@ -182,7 +164,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools logging-testlib - 2.0.0-SNAPSHOT.422 + 2.0.0-SNAPSHOT.423 compile @@ -212,7 +194,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools server-testlib - 2.0.0-SNAPSHOT.522 + 2.0.0-SNAPSHOT.523 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 @@ -290,7 +290,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools time-testlib - 2.0.0-SNAPSHOT.244 + 2.0.0-SNAPSHOT.250 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.062 + 2.0.0-SNAPSHOT.065 io.spine.tools compiler-protoc-plugin - 2.0.0-SNAPSHOT.062 + 2.0.0-SNAPSHOT.065 io.spine.tools @@ -411,7 +411,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools validation-java-bundle - 2.0.0-SNAPSHOT.450 + 2.0.0-SNAPSHOT.460 org.jacoco From ce037e2f591fc4d8cedc1de4a21f6f3980c0f6e1 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:43:12 +0100 Subject: [PATCH 08/15] Bump ToolBase -> `2.0.0-SNAPSHOT.410` Co-Authored-By: Claude Opus 5 --- .../src/main/kotlin/io/spine/dependency/local/ToolBase.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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" From ed2d09c4805d11f8b8529f145f14ec8f4a46e359 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:43:23 +0100 Subject: [PATCH 09/15] Align the transitive Jackson 2.x line in the integration tests The Jackson 3 migration moved the `Jackson` dependency object from the `com.fasterxml.jackson` group to `tools.jackson`. The force directives in `tests/build.gradle.kts` kept referring to `Jackson`, so they now pin the 3.x coordinates and no longer align the 2.x artifacts, which reach this build only transitively: * `palantir-java-format` brings Jackson 2.21.1; * `intellij-platform-java` brings Jackson 2.22.1. Since `forceVersions()` enables `failOnVersionConflict()`, that divergence failed `:compiler-extension:extractIncludeProto` instead of resolving to the higher version. Align the whole 2.x group via `eachDependency` rather than an enumerated force list: the conflict also covers artifacts `JacksonV2` does not model, such as `jackson-jr-objects` and `jackson-module-kotlin`. A BOM cannot be used here because the Protobuf plugin configurations, `compileProtoPath` among them, ignore `enforcedPlatform`. `jackson-annotations` is excluded because Jackson 3.x keeps consuming it at its own version, forced via `Jackson.annotations`. Co-Authored-By: Claude Opus 5 --- tests/build.gradle.kts | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/tests/build.gradle.kts b/tests/build.gradle.kts index db5072b681..4691f28b88 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,31 @@ 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 brings 2.21.1, while IntelliJ Platform brings 2.22.1. + Since `Jackson` moved to the `tools.jackson` group (Jackson 3.x), + it no longer aligns `com.fasterxml.jackson.*`, and the + `failOnVersionConflict()` set by `forceVersions()` above turns + that divergence into a build failure. + + 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, From d797e6e5eb84adf117a80d03578e69bf87ac430e Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:47:47 +0100 Subject: [PATCH 10/15] Update dependency reports Regenerated after the ToolBase bump to `2.0.0-SNAPSHOT.410`, which widens the IntelliJ Platform transitive surface and brings in the Jackson 2.x artifacts aligned by the preceding commit. Co-Authored-By: Claude Opus 5 --- docs/dependencies/dependencies.md | 5573 ++++++++++++++++++++++++++++- docs/dependencies/pom.xml | 14 +- 2 files changed, 5484 insertions(+), 103 deletions(-) diff --git a/docs/dependencies/dependencies.md b/docs/dependencies/dependencies.md index fb5666b234..114d5c73ad 100644 --- a/docs/dependencies/dependencies.md +++ b/docs/dependencies/dependencies.md @@ -3,14 +3,57 @@ # Dependencies of `io.spine.tools:compiler-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.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. + * **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. + * **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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -23,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) @@ -58,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) @@ -98,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) @@ -106,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) @@ -158,14 +396,43 @@ * **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) @@ -196,7 +463,42 @@ * **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) @@ -225,6 +527,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.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) @@ -235,6 +542,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.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) @@ -260,6 +572,11 @@ * **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) @@ -270,6 +587,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.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) @@ -292,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) @@ -328,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) @@ -461,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) @@ -485,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) @@ -497,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) @@ -519,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) @@ -671,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) @@ -683,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) @@ -691,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) @@ -699,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) @@ -720,6 +1226,11 @@ * **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.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) @@ -733,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/) @@ -757,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) @@ -1025,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) @@ -1065,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) @@ -1101,10 +1651,18 @@ * **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) @@ -1135,10 +1693,26 @@ * **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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -1149,25 +1723,68 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using ## Runtime ## Compile, tests, and tooling -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** : 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** : com.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. - * **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** : cglib. **Name** : cglib-nodep. **Version** : 3.2.4. + * **License:** [ASF 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) +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.google.api.grpc. **Name** : proto-google-common-protos. **Version** : 2.64.1. - * **Project URL:** [https://github.com/googleapis/sdk-platform-java](https://github.com/googleapis/sdk-platform-java) - * **License:** [Apache-2.0](https://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** : com.google.auto.service. **Name** : auto-service-annotations. **Version** : 1.1.1. - * **Project URL:** [https://github.com/google/auto/tree/main/service](https://github.com/google/auto/tree/main/service) - * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) +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. + * **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. + * **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. + * **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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. + * **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) + +1. **Group** : com.google.api.grpc. **Name** : proto-google-common-protos. **Version** : 2.64.1. + * **Project URL:** [https://github.com/googleapis/sdk-platform-java](https://github.com/googleapis/sdk-platform-java) + * **License:** [Apache-2.0](https://www.apache.org/licenses/LICENSE-2.0.txt) + +1. **Group** : com.google.auto.service. **Name** : auto-service-annotations. **Version** : 1.1.1. + * **Project URL:** [https://github.com/google/auto/tree/main/service](https://github.com/google/auto/tree/main/service) + * **License:** [Apache 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) 1. **Group** : com.google.auto.value. **Name** : auto-value-annotations. **Version** : 1.11.0. * **Project URL:** [https://github.com/google/auto/tree/main/value](https://github.com/google/auto/tree/main/value) @@ -1177,7 +1794,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1255,13 +1872,102 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1322,6 +2028,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1330,10 +2076,49 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1342,6 +2127,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1359,9 +2152,24 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1370,6 +2178,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1422,6 +2238,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1458,6 +2278,23 @@ This report was generated on **Wed Aug 12 21:08:09 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,6 +2308,14 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -1501,10 +2346,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:42 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). @@ -1514,14 +2375,57 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # Dependencies of `io.spine.tools:compiler-backend: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.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. + * **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. + * **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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -1538,7 +2442,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1573,10 +2477,99 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1613,6 +2606,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1621,11 +2654,77 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1673,14 +2772,43 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -1711,7 +2839,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -1740,6 +2903,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -1750,6 +2918,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -1775,6 +2948,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -1785,6 +2963,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -1807,6 +2990,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1843,6 +3030,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -1976,6 +3167,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2000,6 +3213,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2012,6 +3280,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2034,6 +3310,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2186,6 +3466,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2198,6 +3518,15 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2206,6 +3535,36 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2214,6 +3573,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2235,6 +3602,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -2248,9 +3620,19 @@ This report was generated on **Wed Aug 12 21:08:09 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/) @@ -2272,6 +3654,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2540,6 +3930,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2580,6 +3974,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2616,10 +4027,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -2650,10 +4069,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -2663,7 +4098,26 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # Dependencies of `io.spine.tools:compiler-cli:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.21.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.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) @@ -2672,27 +4126,37 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using * **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.21.1. +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.21.1. +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.datatype. **Name** : jackson-datatype-guava. **Version** : 2.21.1. +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.21.1. +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.module. **Name** : jackson-module-parameter-names. **Version** : 2.21.1. +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.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. * **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) @@ -2765,6 +4229,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2781,7 +4249,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2816,6 +4284,28 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -2828,6 +4318,73 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2864,6 +4421,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2872,20 +4469,86 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -2933,14 +4596,43 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -2971,18 +4663,53 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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.21.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. **Name** : jackson-bom. **Version** : 2.22.0. +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) @@ -3000,12 +4727,12 @@ This report was generated on **Wed Aug 12 21:08:09 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.core. **Name** : jackson-core. **Version** : 2.21.1. +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.0. +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) @@ -3015,12 +4742,12 @@ This report was generated on **Wed Aug 12 21:08:09 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.core. **Name** : jackson-databind. **Version** : 2.21.1. +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.0. +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) @@ -3035,22 +4762,22 @@ This report was generated on **Wed Aug 12 21:08:09 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.21.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-guava. **Version** : 2.22.0. +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.21.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-jdk8. **Version** : 2.22.0. +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) @@ -3058,7 +4785,12 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using 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) + * **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) @@ -3070,12 +4802,17 @@ This report was generated on **Wed Aug 12 21:08:09 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.module. **Name** : jackson-module-parameter-names. **Version** : 2.21.1. +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.0. +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) @@ -3161,6 +4898,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3201,6 +4942,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3334,6 +5079,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3358,6 +5125,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3370,6 +5192,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3392,6 +5222,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3544,6 +5378,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3556,6 +5430,15 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3564,11 +5447,41 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3577,6 +5490,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3598,6 +5519,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -3611,9 +5537,19 @@ This report was generated on **Wed Aug 12 21:08:09 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/) @@ -3635,6 +5571,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3903,6 +5847,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3943,6 +5891,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -3979,10 +5944,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -4013,10 +5986,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -4026,6 +6015,25 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # 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) @@ -4050,10 +6058,24 @@ This report was generated on **Wed Aug 12 21:08:09 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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -4066,7 +6088,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4101,10 +6123,99 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4141,6 +6252,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4149,11 +6300,77 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4201,18 +6418,47 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4243,7 +6489,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -4292,11 +6573,21 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -4314,6 +6605,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4342,7 +6637,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4454,6 +6749,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4462,6 +6779,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4470,6 +6842,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4492,6 +6872,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4644,6 +7028,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4656,10 +7080,57 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4681,6 +7152,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -4690,9 +7166,19 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using * **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/) @@ -4714,6 +7200,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -4982,6 +7476,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5022,6 +7520,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5058,10 +7573,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -5092,10 +7615,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -5105,6 +7644,25 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # 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) @@ -5129,10 +7687,24 @@ This report was generated on **Wed Aug 12 21:08:09 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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -5145,7 +7717,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5180,10 +7752,99 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5220,6 +7881,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5228,14 +7929,80 @@ This report was generated on **Wed Aug 12 21:08:09 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.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/) * **License:** [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt) @@ -5280,18 +8047,47 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5322,7 +8118,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -5371,11 +8202,21 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -5393,6 +8234,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5421,7 +8266,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5537,6 +8382,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5545,6 +8412,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5553,6 +8475,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5575,6 +8505,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5727,6 +8661,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -5735,17 +8709,64 @@ This report was generated on **Wed Aug 12 21:08:09 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.inject. **Name** : javax.inject. **Version** : 1. - * **Project URL:** [http://code.google.com/p/atinject/](http://code.google.com/p/atinject/) +1. **Group** : javax.inject. **Name** : javax.inject. **Version** : 1. + * **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** : kr.motd.maven. **Name** : os-maven-plugin. **Version** : 1.7.1. + * **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** : 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** : kr.motd.maven. **Name** : os-maven-plugin. **Version** : 1.7.1. - * **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** : 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) @@ -5768,6 +8789,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -5777,9 +8803,19 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using * **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/) @@ -5801,6 +8837,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6101,6 +9141,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6145,6 +9189,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6181,10 +9242,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -6215,10 +9284,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -6228,7 +9313,26 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # Dependencies of `io.spine.tools:compiler-jvm:2.0.0-SNAPSHOT.066` ## Runtime -1. **Group** : com.fasterxml.jackson. **Name** : jackson-bom. **Version** : 2.21.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.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) @@ -6237,27 +9341,37 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using * **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.21.1. +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.21.1. +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.datatype. **Name** : jackson-datatype-guava. **Version** : 2.21.1. +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.21.1. +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.module. **Name** : jackson-module-parameter-names. **Version** : 2.21.1. +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.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. * **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) @@ -6266,6 +9380,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6282,7 +9400,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6317,6 +9435,28 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -6329,6 +9469,73 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6365,6 +9572,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6373,15 +9620,81 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6429,14 +9742,43 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -6467,7 +9809,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -6483,6 +9860,11 @@ This report was generated on **Wed Aug 12 21:08:09 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. **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) @@ -6506,6 +9888,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -6521,6 +9908,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -6541,12 +9933,17 @@ This report was generated on **Wed Aug 12 21:08:09 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-jdk8. **Version** : 2.21.1. +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.0. +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) @@ -6556,6 +9953,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -6566,12 +9968,17 @@ This report was generated on **Wed Aug 12 21:08:09 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.module. **Name** : jackson-module-parameter-names. **Version** : 2.21.1. +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.0. +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) @@ -6593,6 +10000,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6629,6 +10040,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6762,6 +10177,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6786,6 +10223,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6798,6 +10290,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6820,6 +10320,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6972,6 +10476,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -6980,17 +10524,56 @@ This report was generated on **Wed Aug 12 21:08:09 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.inject. **Name** : javax.inject. **Version** : 1. - * **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.inject. **Name** : javax.inject. **Version** : 1. + * **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** : kr.motd.maven. **Name** : os-maven-plugin. **Version** : 1.7.1. + * **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** : 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** : 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** : kr.motd.maven. **Name** : os-maven-plugin. **Version** : 1.7.1. - * **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** : 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/) @@ -7000,6 +10583,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7021,6 +10612,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -7034,9 +10630,19 @@ This report was generated on **Wed Aug 12 21:08:09 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/) @@ -7058,6 +10664,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7326,6 +10940,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7366,6 +10984,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7402,10 +11037,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -7436,10 +11079,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -7449,14 +11108,57 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # Dependencies of `io.spine.tools:compiler-params: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.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. + * **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. + * **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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -7469,7 +11171,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7504,10 +11206,99 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7544,6 +11335,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7552,11 +11383,77 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7604,14 +11501,43 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -7642,7 +11568,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -7671,6 +11632,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -7681,6 +11647,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -7706,6 +11677,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -7716,6 +11692,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -7738,6 +11719,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7774,6 +11759,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7907,6 +11896,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7931,6 +11942,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7943,6 +12009,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -7965,6 +12039,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -8117,6 +12195,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -8129,13 +12247,60 @@ This report was generated on **Wed Aug 12 21:08:09 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** : kr.motd.maven. **Name** : os-maven-plugin. **Version** : 1.7.1. - * **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** : kr.motd.maven. **Name** : os-maven-plugin. **Version** : 1.7.1. + * **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) @@ -8158,6 +12323,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -8171,9 +12341,19 @@ This report was generated on **Wed Aug 12 21:08:09 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/) @@ -8195,6 +12375,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -8463,6 +12651,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -8503,6 +12695,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -8539,10 +12748,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -8573,10 +12790,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -9419,7 +13652,7 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:42 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). @@ -9429,14 +13662,57 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # Dependencies of `io.spine.tools:compiler-test-env: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.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. + * **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. + * **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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -9453,7 +13729,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9488,10 +13764,99 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9528,6 +13893,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9536,11 +13941,77 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9588,14 +14059,43 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -9626,7 +14126,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -9655,6 +14190,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -9665,6 +14205,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -9690,6 +14235,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -9700,6 +14250,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -9722,6 +14277,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9762,6 +14321,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9895,6 +14458,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9919,6 +14504,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9931,6 +14571,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -9953,6 +14601,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10105,6 +14757,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10117,6 +14809,15 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10125,6 +14826,44 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10146,6 +14885,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10159,9 +14903,19 @@ This report was generated on **Wed Aug 12 21:08:09 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/) @@ -10183,6 +14937,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10451,6 +15213,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10491,6 +15257,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10527,10 +15310,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10561,10 +15352,26 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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). @@ -10574,14 +15381,57 @@ This report was generated on **Wed Aug 12 21:08:09 WEST 2026** using # Dependencies of `io.spine.tools:compiler-testlib: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.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. + * **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. + * **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.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.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.github.ben-manes.caffeine. **Name** : caffeine. **Version** : 3.2.4. * **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) @@ -10602,7 +15452,7 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10660,13 +15510,102 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10727,6 +15666,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10735,10 +15714,49 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10747,6 +15765,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10756,10 +15782,29 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10815,6 +15860,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10831,6 +15880,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -10844,6 +15910,14 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10874,7 +15948,42 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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) @@ -10903,6 +16012,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10913,6 +16027,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10938,6 +16057,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10948,6 +16072,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -10970,6 +16099,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11006,6 +16139,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11139,6 +16276,28 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11163,6 +16322,61 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11175,6 +16389,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11197,6 +16419,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11349,6 +16575,46 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11361,6 +16627,15 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11369,6 +16644,36 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11377,6 +16682,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11398,6 +16711,11 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -11411,9 +16729,19 @@ This report was generated on **Wed Aug 12 21:08:09 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/) @@ -11435,6 +16763,14 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11703,6 +17039,10 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11743,6 +17083,23 @@ This report was generated on **Wed Aug 12 21:08:09 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) @@ -11779,10 +17136,18 @@ This report was generated on **Wed Aug 12 21:08:09 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.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) @@ -11813,9 +17178,25 @@ This report was generated on **Wed Aug 12 21:08:09 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** : 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 **Wed Aug 12 21:08:09 WEST 2026** using +This report was generated on **Thu Aug 13 15:47:43 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 1f0f0b5610..f839d76c2f 100644 --- a/docs/dependencies/pom.xml +++ b/docs/dependencies/pom.xml @@ -152,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 @@ -170,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 @@ -188,7 +188,7 @@ 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 @@ -200,7 +200,7 @@ all modules and does not describe the project structure per-subproject. io.spine.tools tool-base - 2.0.0-SNAPSHOT.404 + 2.0.0-SNAPSHOT.410 compile @@ -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 From 17bca077753aed26a9de4b57328fb5d66c6e6272 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:51:04 +0100 Subject: [PATCH 11/15] Bump `PalantirJavaFormat` -> `2.97.0` --- .../main/kotlin/io/spine/dependency/lib/PalantirJavaFormat.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]) From 224449d9f50c889d4db26a8300cdbb3b6c86fea0 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:54:03 +0100 Subject: [PATCH 12/15] Update dependency reports --- docs/dependencies/dependencies.md | 66 +++++++++++++++---------------- docs/dependencies/pom.xml | 2 +- 2 files changed, 32 insertions(+), 36 deletions(-) diff --git a/docs/dependencies/dependencies.md b/docs/dependencies/dependencies.md index 114d5c73ad..ed8495850d 100644 --- a/docs/dependencies/dependencies.md +++ b/docs/dependencies/dependencies.md @@ -1712,7 +1712,7 @@ The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -2365,7 +2365,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:42 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). @@ -4088,7 +4088,7 @@ This report was generated on **Thu Aug 13 15:47:42 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -4306,11 +4306,11 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using 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. +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) @@ -5105,10 +5105,18 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using * **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) @@ -6005,7 +6013,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -7634,7 +7642,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -9303,7 +9311,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -9457,11 +9465,11 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using 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. +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) @@ -9850,11 +9858,6 @@ This report was generated on **Thu Aug 13 15:47:43 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. **Name** : jackson-bom. **Version** : 2.21.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. **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) @@ -9878,11 +9881,6 @@ This report was generated on **Thu Aug 13 15:47:43 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.core. **Name** : jackson-core. **Version** : 2.21.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-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) @@ -9898,11 +9896,6 @@ This report was generated on **Thu Aug 13 15:47:43 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.core. **Name** : jackson-databind. **Version** : 2.21.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.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) @@ -9923,11 +9916,6 @@ This report was generated on **Thu Aug 13 15:47:43 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.21.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-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) @@ -10203,10 +10191,18 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using * **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) @@ -11098,7 +11094,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -12809,7 +12805,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -13652,7 +13648,7 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:42 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). @@ -15371,7 +15367,7 @@ This report was generated on **Thu Aug 13 15:47:42 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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). @@ -17197,6 +17193,6 @@ This report was generated on **Thu Aug 13 15:47:43 WEST 2026** using The dependencies distributed under several licenses, are used according their commercial-use-friendly license. -This report was generated on **Thu Aug 13 15:47:43 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 f839d76c2f..21e58959fc 100644 --- a/docs/dependencies/pom.xml +++ b/docs/dependencies/pom.xml @@ -56,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 From 80c2f0510f2d2c659343ed3005c3888ea1f05b41 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:59:06 +0100 Subject: [PATCH 13/15] Document disabled test --- .../compiler/jvm/style/JavaCodeStyleFormatterPluginSpec.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() From 7569c233c3dd3654bcb65d421166e4f2f17de998 Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 15:59:50 +0100 Subject: [PATCH 14/15] Restate the Jackson alignment rationale as an invariant The comment cited the concrete versions the two consumers happened to bring at the time. Bumping Palantir Java Format to 2.97.0 aligned them on 2.22.1, which made those numbers wrong. State the condition the rule guards against instead, so the comment stays true across future bumps. Co-Authored-By: Claude Opus 5 --- tests/build.gradle.kts | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/tests/build.gradle.kts b/tests/build.gradle.kts index 4691f28b88..58502456f7 100644 --- a/tests/build.gradle.kts +++ b/tests/build.gradle.kts @@ -110,12 +110,13 @@ subprojects { Jackson.DataFormat.forceArtifacts(project, this@all, this@resolutionStrategy) /* - Jackson 2.x reaches this build only transitively: Palantir Java - Format brings 2.21.1, while IntelliJ Platform brings 2.22.1. - Since `Jackson` moved to the `tools.jackson` group (Jackson 3.x), - it no longer aligns `com.fasterxml.jackson.*`, and the - `failOnVersionConflict()` set by `forceVersions()` above turns - that divergence into a build failure. + 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 From 9f6f46433905d4bb9271444171fe977f5e8f5c1d Mon Sep 17 00:00:00 2001 From: alexander-yevsyukov Date: Thu, 13 Aug 2026 16:47:15 +0100 Subject: [PATCH 15/15] Add link to JSTEP-1 --- buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt | 3 ++- .../src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt | 6 ++++-- 2 files changed, 6 insertions(+), 3 deletions(-) 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 7d078ed97e..7fa433555c 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/Jackson.kt @@ -33,7 +33,8 @@ import io.spine.dependency.DependencyWithBom * Jackson library dependencies. * * Jackson 3.x uses the `tools.jackson` group ID and the matching `tools.jackson.*` - * packages (JSTEP-1). The sole exception is `jackson-annotations`: Jackson 3.x keeps + * 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. * diff --git a/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt b/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt index 256918f848..1a2d62bf16 100644 --- a/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt +++ b/buildSrc/src/main/kotlin/io/spine/dependency/lib/JacksonV2.kt @@ -33,8 +33,10 @@ 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). We declare the 2.x line - * to align the versions of the artifacts pulled transitively by third-party + * 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