Update to match Maven

This commit is contained in:
Paldiu
2022-02-09 23:12:30 -06:00
parent aa54dd5f10
commit 45076be8df
28 changed files with 148 additions and 47 deletions

View File

@ -1,9 +1,9 @@
package io.github.simplex.cl;
package io.github.simplexdevelopment.cl;
import io.github.simplex.cl.api.ICommand;
import io.github.simplex.cl.api.SubCommand;
import io.github.simplex.msgutils.AdvancedColors;
import io.github.simplex.msgutils.BasicColors;
import io.github.simplexdevelopment.cl.api.ICommand;
import io.github.simplexdevelopment.cl.api.SubCommand;
import io.github.simplexdevelopment.msgutils.AdvancedColors;
import io.github.simplexdevelopment.msgutils.BasicColors;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.TextComponent;
import org.bukkit.Bukkit;

View File

@ -1,6 +1,6 @@
package io.github.simplex.cl;
package io.github.simplexdevelopment.cl;
import io.github.simplex.cl.api.annotations.Info;
import io.github.simplexdevelopment.cl.api.annotations.Info;
import org.bukkit.Bukkit;
import org.bukkit.plugin.Plugin;

View File

@ -1,4 +1,4 @@
package io.github.simplex.cl;
package io.github.simplexdevelopment.cl;
import net.kyori.adventure.text.Component;
import org.bukkit.command.Command;

View File

@ -1,4 +1,4 @@
package io.github.simplex.cl;
package io.github.simplexdevelopment.cl;
import org.bukkit.command.CommandSender;

View File

@ -1,4 +1,4 @@
package io.github.simplex.cl.api;
package io.github.simplexdevelopment.cl.api;
import org.bukkit.command.CommandExecutor;
import org.bukkit.command.CommandSender;

View File

@ -1,4 +1,4 @@
package io.github.simplex.cl.api;
package io.github.simplexdevelopment.cl.api;
@FunctionalInterface
public interface SubCommand {

View File

@ -1,4 +1,4 @@
package io.github.simplex.cl.api.annotations;
package io.github.simplexdevelopment.cl.api.annotations;
import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;

View File

@ -1,9 +1,9 @@
package io.github.simplex.cl.impl;
package io.github.simplexdevelopment.cl.impl;
import io.github.simplex.cl.CommandBase;
import io.github.simplex.cl.api.annotations.Info;
import io.github.simplex.msgutils.AdvancedColors;
import io.github.simplex.msgutils.BasicColors;
import io.github.simplexdevelopment.cl.CommandBase;
import io.github.simplexdevelopment.cl.api.annotations.Info;
import io.github.simplexdevelopment.msgutils.AdvancedColors;
import io.github.simplexdevelopment.msgutils.BasicColors;
import org.bukkit.command.CommandSender;
@Info(name = "example", description = "An example command implementation to see how this works.", usage = "/example [info]", aliases = "ex, impl")

View File

@ -1,4 +1,4 @@
package io.github.simplex.msgutils;
package io.github.simplexdevelopment.msgutils;
import net.kyori.adventure.text.format.TextColor;

View File

@ -1,4 +1,4 @@
package io.github.simplex.msgutils;
package io.github.simplexdevelopment.msgutils;
import net.kyori.adventure.text.format.TextColor;

View File

@ -1,4 +1,4 @@
package io.github.simplex.msgutils;
package io.github.simplexdevelopment.msgutils;
import net.kyori.adventure.text.format.TextDecoration;
import net.kyori.adventure.text.format.TextFormat;