Skip to content

Commit

Permalink
feat(exts-git): extract git plugin support and rename refactoring imp…
Browse files Browse the repository at this point in the history
…lementation for #183
  • Loading branch information
phodal committed May 8, 2024
1 parent c8ff245 commit 3970a5f
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 11 additions & 1 deletion build.gradle.kts
Expand Up @@ -275,6 +275,7 @@ project(":plugin") {
implementation(project(":exts:ext-database"))
implementation(project(":exts:ext-android"))
implementation(project(":exts:ext-harmonyos"))
implementation(project(":exts:ext-git"))
implementation(project(":exts:ext-terminal"))
implementation(project(":exts:devins-lang"))
}
Expand Down Expand Up @@ -597,6 +598,16 @@ project(":exts:ext-harmonyos") {
}
}

project(":exts:ext-git") {
intellij {
version.set(ideaVersion)
}

dependencies {
implementation(project(":"))
}
}

project(":exts:ext-terminal") {
intellij {
version.set(ideaVersion)
Expand Down Expand Up @@ -662,7 +673,6 @@ project(":exts:devins-lang") {
}
}


fun File.isPluginJar(): Boolean {
if (!isFile) return false
if (extension != "jar") return false
Expand Down
2 changes: 2 additions & 0 deletions settings.gradle.kts
Expand Up @@ -24,6 +24,8 @@ include(
"exts:ext-android",
"exts:ext-harmonyos",
"exts:ext-terminal",
// git4idea is the git plugin for IntelliJ IDEA, so we rename it to `exts-git`
"exts:ext-git",

// the Input Language support for AutoDev
"exts:devins-lang"
Expand Down

0 comments on commit 3970a5f

Please sign in to comment.