Skip to content

Commit

Permalink
Backport #5751 to 5.3.x (#1604)
Browse files Browse the repository at this point in the history
* Fixing default module name for kotlin-extensions (#1602)
  • Loading branch information
nhachicha authored Jan 23, 2025
1 parent 07ceb69 commit 36b5504
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion driver-kotlin-extensions/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -165,4 +165,6 @@ tasks.javadocJar.configure {
// ===========================
tasks.sourcesJar { from(project.sourceSets.main.map { it.kotlin }) }

afterEvaluate { tasks.jar { manifest { attributes["Automatic-Module-Name"] = "org.mongodb.driver.kotlin.core" } } }
afterEvaluate {
tasks.jar { manifest { attributes["Automatic-Module-Name"] = "org.mongodb.driver.kotlin.extensions" } }
}

0 comments on commit 36b5504

Please sign in to comment.