1
mirror of https://github.com/CarmJos/MineSQL.git synced 2026-06-04 16:43:03 +08:00

测试部署与自动上传

This commit is contained in:
2022-01-27 00:03:17 +08:00
parent 229aca4eae
commit d2fd0d58cf
14 changed files with 35 additions and 21 deletions
+1 -1
View File
@@ -5,7 +5,7 @@
<parent>
<artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId>
<version>0.0.1</version>
<version>0.0.2</version>
<relativePath>../../pom.xml</relativePath>
</parent>
<modelVersion>4.0.0</modelVersion>
@@ -1,4 +1,4 @@
package cc.carm.plugin.easysql.velocity;
package cc.carm.plugin.easysql;
import com.google.inject.Inject;
@@ -11,15 +11,15 @@ import java.util.logging.Logger;
description = "",
url = "https://github.com/CarmJos/EasySQL-Plugin", authors = "CarmJos"
)
public class EasySQLPlugin {
public class EasySQLVelocity {
private static EasySQLPlugin instance;
private static EasySQLVelocity instance;
private final ProxyServer server;
private final Logger logger;
@Inject
public EasySQLPlugin(ProxyServer server, Logger logger) {
public EasySQLVelocity(ProxyServer server, Logger logger) {
instance = this;
this.server = server;
this.logger = logger;
@@ -27,7 +27,7 @@ public class EasySQLPlugin {
}
public static EasySQLPlugin getInstance() {
public static EasySQLVelocity getInstance() {
return instance;
}