mirror of
https://github.com/carlrobertoh/ProxyAI.git
synced 2026-04-26 10:41:49 +00:00
refactor: rename modules
This commit is contained in:
parent
4848b46bd6
commit
7ad7a037d7
53 changed files with 9 additions and 13 deletions
|
|
@ -33,7 +33,7 @@ fun properties(key: String): Provider<String> {
|
|||
fun environment(key: String) = providers.environmentVariable(key)
|
||||
|
||||
plugins {
|
||||
id("codegpt.java-conventions")
|
||||
id("proxyai.java-conventions")
|
||||
id("org.jetbrains.intellij.platform")
|
||||
alias(libs.plugins.changelog)
|
||||
alias(libs.plugins.protobuf)
|
||||
|
|
@ -70,8 +70,8 @@ dependencies {
|
|||
testFramework(TestFrameworkType.JUnit5)
|
||||
}
|
||||
|
||||
implementation(project(":codegpt-telemetry"))
|
||||
implementation(project(":codegpt-treesitter"))
|
||||
implementation(project(":proxyai-telemetry"))
|
||||
implementation(project(":proxyai-treesitter"))
|
||||
|
||||
implementation(platform(libs.okhttp.bom))
|
||||
implementation(platform(libs.slf4j.bom))
|
||||
|
|
@ -198,7 +198,7 @@ tasks {
|
|||
prepareSandbox {
|
||||
dependsOn("updateSubmodules")
|
||||
from(layout.projectDirectory.dir("src/main/cpp/llama.cpp")) {
|
||||
into("CodeGPT/llama.cpp")
|
||||
into("ProxyAI/llama.cpp")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id("codegpt.java-conventions")
|
||||
id("proxyai.java-conventions")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
plugins {
|
||||
id("codegpt.java-conventions")
|
||||
id("proxyai.java-conventions")
|
||||
}
|
||||
|
||||
dependencies {
|
||||
|
|
@ -1,3 +1,3 @@
|
|||
rootProject.name = "CodeGPT"
|
||||
include(":codegpt-treesitter")
|
||||
include(":codegpt-telemetry")
|
||||
rootProject.name = "ProxyAI"
|
||||
include(":proxyai-treesitter")
|
||||
include(":proxyai-telemetry")
|
||||
|
|
|
|||
|
|
@ -24,10 +24,6 @@ public final class CodeGPTPlugin {
|
|||
return requireNonNull(PluginManagerCore.getPlugin(CODEGPT_ID)).getPluginPath();
|
||||
}
|
||||
|
||||
public static @NotNull String getPluginOptionsPath() {
|
||||
return PathManager.getOptionsPath() + separator + "CodeGPT";
|
||||
}
|
||||
|
||||
public static @NotNull String getLlamaSourcePath() {
|
||||
return getPluginBasePath() + separator + "llama.cpp";
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue