Skip to content

Commit

Permalink
feat(exts:database): Rename and refactor database extension module to…
Browse files Browse the repository at this point in the history
… `ext-database`, including changes to build.gradle.kts, settings.gradle.kts, and source file names.
  • Loading branch information
phodal committed Apr 7, 2024
1 parent 37ceab6 commit fab0fa5
Show file tree
Hide file tree
Showing 26 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions build.gradle.kts
Expand Up @@ -272,7 +272,7 @@ project(":plugin") {
implementation(project(":rust"))
implementation(project(":cpp"))
implementation(project(":scala"))
implementation(project(":exts:database"))
implementation(project(":exts:ext-database"))
implementation(project(":exts:ext-android"))
implementation(project(":exts:ext-harmonyos"))
implementation(project(":exts:ext-terminal"))
Expand Down Expand Up @@ -445,7 +445,7 @@ project(":") {
kover(project(":rust"))
kover(project(":scala"))

kover(project(":exts:database"))
kover(project(":exts:ext-database"))
kover(project(":exts:ext-android"))
kover(project(":exts:devins-lang"))
}
Expand Down Expand Up @@ -564,7 +564,7 @@ project(":goland") {
}
}

project(":exts:database") {
project(":exts:ext-database") {
intellij {
version.set(ideaVersion)
plugins.set(ideaPlugins + "com.intellij.database")
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion settings.gradle.kts
Expand Up @@ -19,7 +19,7 @@ include(
)

include(
"exts:database",
"exts:ext-database",
// since JetBrains also call `android.jar`, so we rename it to `ext-android`
"exts:ext-android",
"exts:ext-harmonyos",
Expand Down

0 comments on commit fab0fa5

Please sign in to comment.