diff --git a/dependency-reduced-pom.xml b/dependency-reduced-pom.xml index 54dd9937..edd813f6 100644 --- a/dependency-reduced-pom.xml +++ b/dependency-reduced-pom.xml @@ -27,32 +27,6 @@ true - - - com.h2database:h2 - - ** - - - - org.xerial:sqlite-jdbc - - ** - - - - org.mariadb.jbdc:mariadb-java-client - - ** - - - - mysql:mysql-connector-java - - ** - - - org.bstats @@ -63,7 +37,7 @@ maven-javadoc-plugin - 3.2.0 + 3.3.0 public PicoJobs @@ -134,13 +108,13 @@ org.spongepowered configurate-core - 3.7.2 + 4.1.1 provided org.spongepowered - configurate-json - 3.7.2 + configurate-gson + 4.1.1 provided @@ -152,7 +126,7 @@ org.spongepowered configurate-yaml - 3.7.2 + 4.1.1 provided @@ -164,7 +138,7 @@ org.spongepowered configurate-hocon - 3.7.2 + 4.1.1 provided diff --git a/src/main/java/com/gmail/picono435/picojobs/commands/JobsAdminCommand.java b/src/main/java/com/gmail/picono435/picojobs/commands/JobsAdminCommand.java index 238778aa..c3af4102 100644 --- a/src/main/java/com/gmail/picono435/picojobs/commands/JobsAdminCommand.java +++ b/src/main/java/com/gmail/picono435/picojobs/commands/JobsAdminCommand.java @@ -201,12 +201,11 @@ public boolean onCommand(CommandSender sender, Command cmd, String label, String if(subcmd.equalsIgnoreCase("editor") || subcmd.equalsIgnoreCase(editorString) || subcmd.equalsIgnoreCase("editor")) { // CREATE EDITOR p.sendMessage(LanguageManager.formatMessage("&7Preparing a new editor session. Please wait...")); - p.sendMessage(LanguageManager.formatMessage("&cThis feature is not yet avaiable for public. For more information check our discord or/and ou wiki.")); String editor = createEditor(sender); if(editor != null) { p.sendMessage(LanguageManager.formatMessage("&aClick the link below to open the editor:\n&b&ehttp://www.piconodev.tk/editor/picojobs/" + editor)); } else { - p.sendMessage(LanguageManager.getMessage("unknow-error")); + p.sendMessage(LanguageManager.formatMessage("&cThis feature is not yet avaiable for public. For more information check our discord or/and ou wiki.")); } return true; } diff --git a/src/main/java/com/gmail/picono435/picojobs/dependencies/Dependency.java b/src/main/java/com/gmail/picono435/picojobs/dependencies/Dependency.java index 2e0bc479..23b1304d 100644 --- a/src/main/java/com/gmail/picono435/picojobs/dependencies/Dependency.java +++ b/src/main/java/com/gmail/picono435/picojobs/dependencies/Dependency.java @@ -94,7 +94,7 @@ public enum Dependency { this.artifactId = Objects.requireNonNull(artifactId, "artifactId"); this.version = Objects.requireNonNull(version, "version"); // Please ask @lucko before using this mirror in your own project. - this.repoUrl = "https://nexus.lucko.me/repository/maven-central/"; + this.repoUrl = "https://repo1.maven.org/maven2/"; } Dependency(String groupId, String artifactId, String version, String repoUrl) { @@ -139,7 +139,7 @@ public static Dependency[] getRequiredDependencies() { @Override public String toString() { - return "LibraryLoader.Dependency(" + + return "Dependency(" + "groupId=" + this.getGroupId() + ", " + "artifactId=" + this.getArtifactId() + ", " + "version=" + this.getVersion() + ", " +