dependency-conflict-resolver

作者: kotlin

Diagnose and resolve Gradle and Spring classpath conflicts, version drift, and binary incompatibilities in Kotlin applications. Use when `NoSuchMethodError`,…

npx skills add https://github.com/kotlin/kotlin-backend-agent-skills --skill dependency-conflict-resolver

Dependency Conflict Resolver

Source mapping: Tier 2 high-value skill derived from Kotlin_Spring_Developer_Pipeline.md (SK-05).

Mission

Find which artifact version actually wins, why it wins, and what the narrowest safe correction is. Treat dependency conflict resolution as a version-authority problem, not a guessing contest.

Read First

  • ./gradlew dependencies or module-scoped dependencies output.
  • ./gradlew dependencyInsight --dependency <artifact> for the failing library family.
  • Root and module build files, version catalogs, imported BOMs, and plugin versions.
  • The exact runtime or compile-time error:
    • NoSuchMethodError
    • ClassNotFoundException
    • NoClassDefFoundError
    • AbstractMethodError
    • duplicate binding warnings

Diagnose In This Order

  1. Identify the failing class or method owner.
  2. Identify which artifact provides that class.
  3. Identify all candidate versions on the graph.
  4. Identify the winning version and why it won:
    • direct dependency
    • BOM or platform
    • version catalog alias
    • transitive dependency
    • conflict resolution rule
  5. Identify the true version authority that should own the family.

Advanced Classpath Traps

  • A compile-time green build and a runtime linkage error usually means binary incompatibility between resolved artifacts, not a missing import.
  • Jackson, Netty, SLF4J, Logback, Kotlin stdlib, and Hibernate families should usually be version-aligned as families, not patched one artifact at a time.
  • Plugin classpath and application classpath are different worlds. A plugin upgrade may not fix a runtime library conflict and vice versa.
  • Test runtime can differ from main runtime. A conflict that appears only in tests may come from test fixtures, mock libraries, or test containers support.
  • enforcedPlatform, strictly, and exclusions can fix a conflict or silently lock the graph into brittle behavior. Use them deliberately.
  • Multiple logging bindings often create confusing startup behavior long before they fail hard.
  • Shading or relocation is rarely the first answer in an ordinary Spring Boot app. Reach for it only when classpath isolation is truly required.

Gradle Resolution Nuances

  • Variant-aware resolution can choose artifacts by attributes such as usage, JVM version, and capabilities. A "present" dependency may still resolve to the wrong variant.
  • BOM import order and multiple platforms can subtly change which family wins even when the declared versions look reasonable.
  • api versus implementation leakage in shared modules can make conflicts appear only in downstream consumers.
  • Duplicate classes from repackaged or relocated jars may not surface until runtime classloading or auto-configuration scans.
  • Annotation processors, KSP, and plugin classpaths may need separate alignment from the main application runtime.

Expert Heuristics

  • If the symptom is runtime-only, inspect the packaged artifact or runtime classpath, not only IDE dependency trees.
  • If a library family is managed by Spring Boot, prefer returning ownership to the BOM over adding more local pins.
  • If the same conflict recurs across modules, solve it at the platform or convention level instead of patching one module at a time.
  • If a dependency looks unused, verify reflective, auto-configured, or service-loader usage before removing it.

Preferred Resolution Strategy

  • Prefer removing an unnecessary explicit version when the BOM already manages a compatible one.
  • Prefer aligning the entire affected dependency family.
  • Prefer a direct, documented version override over hidden exclusions if an override is truly needed.
  • Use exclusions only when a dependency is genuinely wrong for the module, not merely inconvenient.
  • Explain why the chosen layer should own the version so the conflict does not return on the next upgrade.

Output Contract

Return these sections:

  • Conflict summary: what is colliding and where the symptom appears.
  • Winning path: how the resolved artifact version is selected.
  • Version authority: which file or platform should own the fix.
  • Minimal fix: the smallest safe dependency or platform change.
  • Verification: compile-time and runtime checks that confirm the graph is healthy.

Guardrails

  • Do not invent version numbers without tracing the existing compatibility model.
  • Do not spray exclusions until the graph goes green.
  • Do not use force as the default answer.
  • Do not fix only the visibly failing artifact when the whole library family is misaligned.

Quality Bar

A good run of this skill explains the conflict path and resolves it at the right authority layer. A bad run produces a one-off version pin that compiles today and recreates the same conflict in the next branch.

來自 kotlin 的更多技能

ci-cd-containerization-advisor
kotlin
為 Kotlin 加 Spring 應用程式設計可重現的建置、映像檔與部署管線,包括 CI 驗證、分層容器、部署安全性……
official
configuration-properties-profiles-kotlin-safe
kotlin
Design and diagnose Spring configuration, profiles, and `@ConfigurationProperties` binding for Kotlin applications. Use when property binding fails,…
official
domain-decomposition-api-design-advisor
kotlin
在實作開始前,將業務範疇分解為限界上下文、模組或服務邊界、工作流程及API合約。適用於規劃新的…
official
error-model-validation-architect
kotlin
為 Kotlin 加 Spring 服務設計並實作一致的 API 驗證與錯誤處理行為。用於定義錯誤負載、映射框架…
official
gradle-kotlin-dsl-doctor
kotlin
Generate, debug, and repair Kotlin + Spring Gradle builds with minimal, compatible changes. Use when `build.gradle.kts` or `settings.gradle.kts` is failing,…
official
integration-resilience-engineer
kotlin
為 Kotlin 和 Spring 服務設計具備彈性的 HTTP、訊息傳遞及排程整合,並明確設定超時預算、重試機制、冪等性、斷路器…
official
jackson-kotlin-serialization-specialist
kotlin
診斷並設計 Kotlin 搭配 Jackson 在 Spring 應用程式中的 JSON 序列化與反序列化行為。適用於 DTO 無法反序列化、預設…
official
java-kotlin-migration-assistant
kotlin
在基於Spring的程式碼庫中將Java程式碼遷移至Kotlin,不改變行為、公開合約、框架相容性或二進位假設,除非…
official