Skip to content

Commit 36b5504

Browse files
authored
Backport #5751 to 5.3.x (#1604)
* Fixing default module name for kotlin-extensions (#1602)
1 parent 07ceb69 commit 36b5504

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

driver-kotlin-extensions/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -165,4 +165,6 @@ tasks.javadocJar.configure {
165165
// ===========================
166166
tasks.sourcesJar { from(project.sourceSets.main.map { it.kotlin }) }
167167

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

0 commit comments

Comments
 (0)