Skip to content

Commit

Permalink
测试部署与自动上传
Browse files Browse the repository at this point in the history
  • Loading branch information
CarmJos committed Jan 26, 2022
1 parent 229aca4 commit d2fd0d5
Show file tree
Hide file tree
Showing 14 changed files with 35 additions and 21 deletions.
2 changes: 1 addition & 1 deletion easysql-plugin-api/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
2 changes: 1 addition & 1 deletion easysql-plugin-impl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
package cc.carm.plugin.easysql;

public class EasySQL {





}
2 changes: 1 addition & 1 deletion platforms/easysql-plugin-bukkit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package cc.carm.plugin.easysql;

public class EasySQLBukkit {
}

This file was deleted.

2 changes: 1 addition & 1 deletion platforms/easysql-plugin-bungee/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
package cc.carm.plugin.easysql;

public class EasySQLBungee {
}

This file was deleted.

3 changes: 1 addition & 2 deletions platforms/easysql-plugin-fabric/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand All @@ -24,7 +24,6 @@

<name>EasySQL-Plugin-Fabric</name>


<dependencies>

<dependency>
Expand Down
Original file line number Diff line number Diff line change
@@ -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!


}
2 changes: 1 addition & 1 deletion platforms/easysql-plugin-velocity/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package cc.carm.plugin.easysql.velocity;
package cc.carm.plugin.easysql;


import com.google.inject.Inject;
Expand All @@ -11,23 +11,23 @@
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;

}


public static EasySQLPlugin getInstance() {
public static EasySQLVelocity getInstance() {
return instance;
}

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -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>
Expand Down

0 comments on commit d2fd0d5

Please sign in to comment.