Summary
The com.databricks:databricks-jdbc:3.3.2 artifact published to Maven Central today (2026-04-28) cannot be resolved. Its POM declares a single compile dependency on com.databricks:databricks-jdbc-core:3.3.2, but that artifact was never published — the com.databricks:databricks-jdbc-core group/artifact does not exist on Maven Central at all.
This breaks any consumer that bumps from 3.3.1 → 3.3.2.
Reproduction
Minimal Gradle build:
repositories { mavenCentral() }
dependencies { implementation("com.databricks:databricks-jdbc:3.3.2") }
Resolution fails with:
Could not find com.databricks:databricks-jdbc-core:3.3.2.
Required by:
root project > com.databricks:databricks-jdbc:3.3.2
Maven produces the equivalent error.
Evidence
Likely cause
The multi-module split landed in #1243 (merged 2026-03-02), introducing jdbc-core/, assembly-thin/, and assembly-uber/ modules. 3.3.1 (#1281) released without issue, suggesting the release workflow correctly published a self-contained artifact under the databricks-jdbc coordinate. 3.3.2 (#1419) appears to have published the parent/wrapper POM by mistake — one that points at a jdbc-core module that isn't itself promoted to Maven Central.
Suggested fix
Either:
- Publish
com.databricks:databricks-jdbc-core:3.3.2 to Maven Central (and document it as a public coordinate going forward), or
- Re-release as 3.3.3 with the
databricks-jdbc artifact restored to a self-contained jar (no transitive dependency on the internal core module), matching 3.3.1's behavior.
Yanking 3.3.2 isn't possible on Maven Central, so a follow-up release is the practical path.
Impact
3.3.2 is currently unusable for any downstream consumer. Dependabot/Renovate users will see CI failures on the auto-generated bump PRs.
Summary
The
com.databricks:databricks-jdbc:3.3.2artifact published to Maven Central today (2026-04-28) cannot be resolved. Its POM declares a single compile dependency oncom.databricks:databricks-jdbc-core:3.3.2, but that artifact was never published — thecom.databricks:databricks-jdbc-coregroup/artifact does not exist on Maven Central at all.This breaks any consumer that bumps from 3.3.1 → 3.3.2.
Reproduction
Minimal Gradle build:
repositories { mavenCentral() } dependencies { implementation("com.databricks:databricks-jdbc:3.3.2") }Resolution fails with:
Maven produces the equivalent error.
Evidence
databricks-jdbc-core:3.3.2.Likely cause
The multi-module split landed in #1243 (merged 2026-03-02), introducing
jdbc-core/,assembly-thin/, andassembly-uber/modules. 3.3.1 (#1281) released without issue, suggesting the release workflow correctly published a self-contained artifact under thedatabricks-jdbccoordinate. 3.3.2 (#1419) appears to have published the parent/wrapper POM by mistake — one that points at ajdbc-coremodule that isn't itself promoted to Maven Central.Suggested fix
Either:
com.databricks:databricks-jdbc-core:3.3.2to Maven Central (and document it as a public coordinate going forward), ordatabricks-jdbcartifact restored to a self-contained jar (no transitive dependency on the internal core module), matching 3.3.1's behavior.Yanking 3.3.2 isn't possible on Maven Central, so a follow-up release is the practical path.
Impact
3.3.2 is currently unusable for any downstream consumer. Dependabot/Renovate users will see CI failures on the auto-generated bump PRs.