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> <parent>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<version>0.0.1</version> <version>0.0.2</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
+1 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<version>0.0.1</version> <version>0.0.2</version>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -1,4 +1,9 @@
package cc.carm.plugin.easysql; package cc.carm.plugin.easysql;
public class EasySQL { public class EasySQL {
} }
+1 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<version>0.0.1</version> <version>0.0.2</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -0,0 +1,4 @@
package cc.carm.plugin.easysql;
public class EasySQLBukkit {
}
@@ -1,4 +0,0 @@
package cc.carm.plugin.easysql.bukkit;
public class EasySQLPlugin {
}
+1 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<version>0.0.1</version> <version>0.0.2</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -0,0 +1,4 @@
package cc.carm.plugin.easysql;
public class EasySQLBungee {
}
@@ -1,4 +0,0 @@
package cc.carm.plugin.easysql.bungee;
public class EasySQLPlugin {
}
+1 -2
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<version>0.0.1</version> <version>0.0.2</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
@@ -24,7 +24,6 @@
<name>EasySQL-Plugin-Fabric</name> <name>EasySQL-Plugin-Fabric</name>
<dependencies> <dependencies>
<dependency> <dependency>
@@ -0,0 +1,10 @@
package cc.carm.plugin.easysql;
public class EasySQLFabric {
// Sadly I don't know how to create a fabric plugins,
// If you know how to make a fabric plugin , just contribute your code here!
}
+1 -1
View File
@@ -5,7 +5,7 @@
<parent> <parent>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<version>0.0.1</version> <version>0.0.2</version>
<relativePath>../../pom.xml</relativePath> <relativePath>../../pom.xml</relativePath>
</parent> </parent>
<modelVersion>4.0.0</modelVersion> <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; import com.google.inject.Inject;
@@ -11,15 +11,15 @@ import java.util.logging.Logger;
description = "", description = "",
url = "https://github.com/CarmJos/EasySQL-Plugin", authors = "CarmJos" 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 ProxyServer server;
private final Logger logger; private final Logger logger;
@Inject @Inject
public EasySQLPlugin(ProxyServer server, Logger logger) { public EasySQLVelocity(ProxyServer server, Logger logger) {
instance = this; instance = this;
this.server = server; this.server = server;
this.logger = logger; this.logger = logger;
@@ -27,7 +27,7 @@ public class EasySQLPlugin {
} }
public static EasySQLPlugin getInstance() { public static EasySQLVelocity getInstance() {
return instance; return instance;
} }
+1 -1
View File
@@ -17,7 +17,7 @@
<groupId>cc.carm.plugin</groupId> <groupId>cc.carm.plugin</groupId>
<artifactId>easysql-plugin</artifactId> <artifactId>easysql-plugin</artifactId>
<packaging>pom</packaging> <packaging>pom</packaging>
<version>0.0.1</version> <version>0.0.2</version>
<modules> <modules>
<module>easysql-plugin-api</module> <module>easysql-plugin-api</module>