1
mirror of https://github.com/CarmJos/MineSQL.git synced 2024-09-19 20:25:45 +00:00

测试部署与自动上传

This commit is contained in:
Carm Jos 2022-01-27 00:03:17 +08:00
parent 229aca4eae
commit d2fd0d58cf
14 changed files with 35 additions and 21 deletions

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>
</parent>
<modelVersion>4.0.0</modelVersion>

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>
</parent>
<modelVersion>4.0.0</modelVersion>

View File

@ -1,4 +1,9 @@
package cc.carm.plugin.easysql;
public class EasySQL {
}

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>

View File

@ -0,0 +1,4 @@
package cc.carm.plugin.easysql;
public class EasySQLBukkit {
}

View File

@ -1,4 +0,0 @@
package cc.carm.plugin.easysql.bukkit;
public class EasySQLPlugin {
}

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>

View File

@ -0,0 +1,4 @@
package cc.carm.plugin.easysql;
public class EasySQLBungee {
}

View File

@ -1,4 +0,0 @@
package cc.carm.plugin.easysql.bungee;
public class EasySQLPlugin {
}

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>
@ -24,7 +24,6 @@
<name>EasySQL-Plugin-Fabric</name>
<dependencies>
<dependency>

View File

@ -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!
}

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>

View File

@ -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;
}

View File

@ -17,7 +17,7 @@
<groupId>cc.carm.plugin</groupId>
<artifactId>easysql-plugin</artifactId>
<packaging>pom</packaging>
<version>0.0.1</version>
<version>0.0.2</version>
<modules>
<module>easysql-plugin-api</module>