Skip to content

Commit fab0fa5

Browse files
committed
feat(exts:database): Rename and refactor database extension module to ext-database, including changes to build.gradle.kts, settings.gradle.kts, and source file names.
1 parent 37ceab6 commit fab0fa5

26 files changed

+4
-4
lines changed

build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ project(":plugin") {
272272
implementation(project(":rust"))
273273
implementation(project(":cpp"))
274274
implementation(project(":scala"))
275-
implementation(project(":exts:database"))
275+
implementation(project(":exts:ext-database"))
276276
implementation(project(":exts:ext-android"))
277277
implementation(project(":exts:ext-harmonyos"))
278278
implementation(project(":exts:ext-terminal"))
@@ -445,7 +445,7 @@ project(":") {
445445
kover(project(":rust"))
446446
kover(project(":scala"))
447447

448-
kover(project(":exts:database"))
448+
kover(project(":exts:ext-database"))
449449
kover(project(":exts:ext-android"))
450450
kover(project(":exts:devins-lang"))
451451
}
@@ -564,7 +564,7 @@ project(":goland") {
564564
}
565565
}
566566

567-
project(":exts:database") {
567+
project(":exts:ext-database") {
568568
intellij {
569569
version.set(ideaVersion)
570570
plugins.set(ideaPlugins + "com.intellij.database")
File renamed without changes.

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ include(
1919
)
2020

2121
include(
22-
"exts:database",
22+
"exts:ext-database",
2323
// since JetBrains also call `android.jar`, so we rename it to `ext-android`
2424
"exts:ext-android",
2525
"exts:ext-harmonyos",

0 commit comments

Comments
 (0)