refactor: me.zacharias.chat → me.neurodock, org rename cleanup
build / build (push) Has been cancelled
build / build (push) Has been cancelled
- Renamed package from me.zacharias.chat to me.neurodock across all 8 modules - Updated Gradle group from me.zacharias.neurodock to me.neurodock - Updated README and other files to reflect new Gitea org URL (Chat_things → neurodock) Dev note: 95 files touched. The Great Refactor is complete, long may it rest.
This commit is contained in:
@@ -2,7 +2,6 @@ plugins {
|
||||
id 'java-library'
|
||||
}
|
||||
|
||||
group = 'me.zacharias.neurodock'
|
||||
version = '0.1.0'
|
||||
|
||||
repositories {
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin;
|
||||
package me.neurodock.plugin;
|
||||
|
||||
import java.io.File;
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin;
|
||||
package me.neurodock.plugin;
|
||||
|
||||
public class LoadedPlugins {
|
||||
// TODO: Implement
|
||||
+3
-4
@@ -1,9 +1,8 @@
|
||||
package me.zacharias.chat.plugin;
|
||||
package me.neurodock.plugin;
|
||||
|
||||
|
||||
import me.zacharias.chat.plugin.annotations.InjectPluginMetadata;
|
||||
import me.zacharias.chat.plugin.annotations.PluginEntryPoint;
|
||||
import me.zacharias.chat.plugin.tool.Tool;
|
||||
import me.neurodock.plugin.annotations.PluginEntryPoint;
|
||||
import me.neurodock.plugin.tool.Tool;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
/**
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin;
|
||||
package me.neurodock.plugin;
|
||||
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin.annotations;
|
||||
package me.neurodock.plugin.annotations;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin.annotations;
|
||||
package me.neurodock.plugin.annotations;
|
||||
|
||||
import java.lang.annotation.ElementType;
|
||||
import java.lang.annotation.Retention;
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin.exceptions;
|
||||
package me.neurodock.plugin.exceptions;
|
||||
|
||||
public class PluginLoadingException extends RuntimeException {
|
||||
public PluginLoadingException(String message, String pluginName) {
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
package me.zacharias.chat.plugin.exceptions;
|
||||
package me.neurodock.plugin.exceptions;
|
||||
|
||||
import me.zacharias.chat.plugin.tool.Tool;
|
||||
import me.neurodock.plugin.tool.Tool;
|
||||
|
||||
public class ToolRuntimeException extends Exception {
|
||||
String toolName;
|
||||
+3
-3
@@ -1,7 +1,7 @@
|
||||
package me.zacharias.chat.plugin.tool;
|
||||
package me.neurodock.plugin.tool;
|
||||
|
||||
import me.zacharias.chat.plugin.Plugin;
|
||||
import me.zacharias.chat.plugin.exceptions.ToolRuntimeException;
|
||||
import me.neurodock.plugin.Plugin;
|
||||
import me.neurodock.plugin.exceptions.ToolRuntimeException;
|
||||
import org.jetbrains.annotations.NotNull;
|
||||
import org.json.JSONObject;
|
||||
|
||||
@@ -0,0 +1,4 @@
|
||||
package me.neurodock.plugin.tool;
|
||||
|
||||
public class ToolArguments {
|
||||
}
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin.tool;
|
||||
package me.neurodock.plugin.tool;
|
||||
|
||||
public class ToolParameters {
|
||||
/**
|
||||
+1
-1
@@ -1,4 +1,4 @@
|
||||
package me.zacharias.chat.plugin.tool;
|
||||
package me.neurodock.plugin.tool;
|
||||
|
||||
public class ToolResponse {
|
||||
public static ToolResponse empty(Tool tool) {
|
||||
@@ -1,4 +0,0 @@
|
||||
package me.zacharias.chat.plugin.tool;
|
||||
|
||||
public class ToolArguments {
|
||||
}
|
||||
Reference in New Issue
Block a user