-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from MEFRREEX/feat/more-server-software
feat: more server software and fixes
- Loading branch information
Showing
11 changed files
with
108 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
plugins { | ||
id("java") | ||
id("com.github.johnrengelman.shadow") version "8.1.1" | ||
} | ||
|
||
repositories { | ||
maven("https://repo.jukeboxmc.eu/releases") | ||
maven("https://repo.jukeboxmc.eu/snapshots") | ||
} | ||
|
||
dependencies { | ||
compileOnlyApi("org.jukeboxmc:JukeboxMC-API:1.0.0-SNAPSHOT") | ||
api(project(":api")) | ||
} | ||
|
||
tasks.withType<Jar> { | ||
archiveFileName.set("JOOQConnector-JukeboxMC-${project.version}.jar") | ||
} | ||
|
||
tasks.build { | ||
dependsOn(tasks.shadowJar) | ||
} |
16 changes: 16 additions & 0 deletions
16
plugin-jukeboxmc/src/main/java/com/mefrreex/jooq/JOOQConnectorJukeboxMC.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.mefrreex.jooq; | ||
|
||
import org.jukeboxmc.api.plugin.Plugin; | ||
|
||
public class JOOQConnectorJukeboxMC extends Plugin { | ||
|
||
@Override | ||
public void onStartup() { | ||
JOOQConnector.setJOOQMessagesEnabled(false); | ||
} | ||
|
||
@Override | ||
public void onEnable() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name: "JOOQConnector" | ||
version: "${project.version}" | ||
author: "MEFRREEX" | ||
main: com.mefrreex.jooq.JOOQConnectorJukeboxMC |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
plugins { | ||
id("java") | ||
id("com.github.johnrengelman.shadow") version "8.1.1" | ||
} | ||
|
||
repositories { | ||
mavenCentral() | ||
maven("https://repo.waterdog.dev/main") | ||
maven("https://repo.opencollab.dev/maven-releases") | ||
maven("https://repo.opencollab.dev/maven-snapshots") | ||
} | ||
|
||
dependencies { | ||
compileOnlyApi("dev.waterdog.waterdogpe:waterdog:2.0.0-SNAPSHOT") | ||
api(project(":api")) | ||
} | ||
|
||
tasks.withType<Jar> { | ||
archiveFileName.set("JOOQConnector-WaterdogPE-${project.version}.jar") | ||
} | ||
|
||
tasks.build { | ||
dependsOn(tasks.shadowJar) | ||
} |
16 changes: 16 additions & 0 deletions
16
plugin-waterdogpe/src/main/java/com/mefrreex/jooq/JOOQConnectorWaterdogPE.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
package com.mefrreex.jooq; | ||
|
||
import dev.waterdog.waterdogpe.plugin.Plugin; | ||
|
||
public class JOOQConnectorWaterdogPE extends Plugin { | ||
|
||
@Override | ||
public void onStartup() { | ||
JOOQConnector.setJOOQMessagesEnabled(false); | ||
} | ||
|
||
@Override | ||
public void onEnable() { | ||
|
||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
name: "JOOQConnector" | ||
version: "${project.version}" | ||
author: "MEFRREEX" | ||
main: com.mefrreex.jooq.JOOQConnectorWaterdogPE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters