Skip to content

Commit

Permalink
Change top-level-domain to 'org'
Browse files Browse the repository at this point in the history
It makes more sense for an organisation I think.
  • Loading branch information
esotericenderman committed Sep 14, 2024
1 parent a288840 commit 310271d
Show file tree
Hide file tree
Showing 27 changed files with 85 additions and 85 deletions.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ val snakecaseMainProjectAuthorName = snakecase(mainProjectAuthorName)

val projectAuthors = listOfNotNull(mainProjectAuthorName)

val topLevelDomain = "dev"
val topLevelDomain = "org"

val projectNameString = rootProject.name
val snakecaseProjectNameString = snakecase(projectNameString)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin;
package org.esoteric_organisation.template_paper_plugin;

import org.bukkit.NamespacedKey;
import org.bukkit.plugin.java.JavaPlugin;
Expand All @@ -8,22 +8,22 @@

import dev.jorel.commandapi.CommandAPI;
import dev.jorel.commandapi.CommandAPIBukkitConfig;
import dev.esoteric_organisation.template_paper_plugin.commands.GiveCustomItemCommand;
import dev.esoteric_organisation.template_paper_plugin.commands.PlaceCustomMultiblockCommand;
import dev.esoteric_organisation.template_paper_plugin.commands.SetLanguageCommand;
import dev.esoteric_organisation.template_paper_plugin.commands.SpawnCustomMultientityCommand;
import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItemManager;
import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblockManager;
import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;
import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientityManager;
import dev.esoteric_organisation.template_paper_plugin.data.player.PlayerDataManager;
import dev.esoteric_organisation.template_paper_plugin.file.FileManager;
import dev.esoteric_organisation.template_paper_plugin.http_server.HttpServerManager;
import dev.esoteric_organisation.template_paper_plugin.language.LanguageManager;
import dev.esoteric_organisation.template_paper_plugin.language.Message;
import dev.esoteric_organisation.template_paper_plugin.resource_pack.ResourcePackManager;
import org.esoteric_organisation.template_paper_plugin.commands.GiveCustomItemCommand;
import org.esoteric_organisation.template_paper_plugin.commands.PlaceCustomMultiblockCommand;
import org.esoteric_organisation.template_paper_plugin.commands.SetLanguageCommand;
import org.esoteric_organisation.template_paper_plugin.commands.SpawnCustomMultientityCommand;
import org.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import org.esoteric_organisation.template_paper_plugin.custom_item.CustomItemManager;
import org.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import org.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblockManager;
import org.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;
import org.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientityManager;
import org.esoteric_organisation.template_paper_plugin.data.player.PlayerDataManager;
import org.esoteric_organisation.template_paper_plugin.file.FileManager;
import org.esoteric_organisation.template_paper_plugin.http_server.HttpServerManager;
import org.esoteric_organisation.template_paper_plugin.language.LanguageManager;
import org.esoteric_organisation.template_paper_plugin.language.Message;
import org.esoteric_organisation.template_paper_plugin.resource_pack.ResourcePackManager;

@DefaultQualifier(NonNull.class)
public class TemplatePaperPlugin extends JavaPlugin {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.commands;
package org.esoteric_organisation.template_paper_plugin.commands;

import java.util.stream.Stream;

Expand All @@ -8,9 +8,9 @@
import dev.jorel.commandapi.arguments.ArgumentSuggestions;
import dev.jorel.commandapi.arguments.CustomArgument;
import dev.jorel.commandapi.arguments.CustomArgument.CustomArgumentException;
import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import dev.esoteric_organisation.template_paper_plugin.language.Message;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import org.esoteric_organisation.template_paper_plugin.language.Message;
import dev.jorel.commandapi.arguments.StringArgument;

public class GiveCustomItemCommand extends CommandAPICommand {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.commands;
package org.esoteric_organisation.template_paper_plugin.commands;

import java.util.stream.Stream;

Expand All @@ -8,9 +8,9 @@
import dev.jorel.commandapi.arguments.ArgumentSuggestions;
import dev.jorel.commandapi.arguments.CustomArgument;
import dev.jorel.commandapi.arguments.CustomArgument.CustomArgumentException;
import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import dev.esoteric_organisation.template_paper_plugin.language.Message;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import org.esoteric_organisation.template_paper_plugin.language.Message;
import dev.jorel.commandapi.arguments.StringArgument;

public class PlaceCustomMultiblockCommand extends CommandAPICommand {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.commands;
package org.esoteric_organisation.template_paper_plugin.commands;

import dev.jorel.commandapi.CommandAPICommand;
import dev.jorel.commandapi.arguments.Argument;
Expand All @@ -9,9 +9,9 @@

import java.util.Set;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.language.LanguageManager;
import dev.esoteric_organisation.template_paper_plugin.language.Message;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.language.LanguageManager;
import org.esoteric_organisation.template_paper_plugin.language.Message;
import net.kyori.adventure.text.Component;
import org.checkerframework.checker.nullness.qual.NonNull;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.commands;
package org.esoteric_organisation.template_paper_plugin.commands;

import java.util.stream.Stream;

Expand All @@ -8,9 +8,9 @@
import dev.jorel.commandapi.arguments.ArgumentSuggestions;
import dev.jorel.commandapi.arguments.CustomArgument;
import dev.jorel.commandapi.arguments.CustomArgument.CustomArgumentException;
import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;
import dev.esoteric_organisation.template_paper_plugin.language.Message;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;
import org.esoteric_organisation.template_paper_plugin.language.Message;
import dev.jorel.commandapi.arguments.StringArgument;

public class SpawnCustomMultientityCommand extends CommandAPICommand {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_item;
package org.esoteric_organisation.template_paper_plugin.custom_item;

import org.bukkit.Bukkit;
import org.bukkit.Material;
Expand All @@ -7,7 +7,7 @@
import org.bukkit.inventory.ItemStack;
import org.bukkit.persistence.PersistentDataType;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.checkerframework.checker.nullness.qual.NonNull;

public abstract class AbstractCustomItem implements Listener {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_item;
package org.esoteric_organisation.template_paper_plugin.custom_item;

public enum CustomItem {
;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
package dev.esoteric_organisation.template_paper_plugin.custom_item;
package org.esoteric_organisation.template_paper_plugin.custom_item;

import java.util.HashMap;
import java.util.Map;

import org.bukkit.entity.Player;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.custom_item.AbstractCustomItem;
import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.custom_item.AbstractCustomItem;
import org.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;

public class CustomItemManager {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multiblock;
package org.esoteric_organisation.template_paper_plugin.custom_multiblock;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -8,8 +8,8 @@
import org.bukkit.block.Block;
import org.bukkit.event.Listener;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.util.types.BlockLocation;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.util.types.BlockLocation;
import org.checkerframework.checker.nullness.qual.NonNull;

public abstract class AbstractCustomMultiblock implements Listener {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multiblock;
package org.esoteric_organisation.template_paper_plugin.custom_multiblock;

public enum CustomMultiblock {
;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multiblock;
package org.esoteric_organisation.template_paper_plugin.custom_multiblock;

import java.io.File;
import java.io.FileReader;
Expand All @@ -16,9 +16,9 @@

import com.google.gson.Gson;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.AbstractCustomMultiblock;
import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.custom_multiblock.AbstractCustomMultiblock;
import org.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import org.checkerframework.checker.nullness.qual.NonNull;

public class CustomMultiblockManager {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multiblock;
package org.esoteric_organisation.template_paper_plugin.custom_multiblock;

import java.util.List;
import java.util.Map.Entry;

import dev.esoteric_organisation.template_paper_plugin.util.types.BlockLocation;
import org.esoteric_organisation.template_paper_plugin.util.types.BlockLocation;
import org.checkerframework.checker.nullness.qual.NonNull;

public class StoredCustomMultiblock {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multiblock;
package org.esoteric_organisation.template_paper_plugin.custom_multiblock;

import java.util.ArrayList;
import java.util.List;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multientity;
package org.esoteric_organisation.template_paper_plugin.custom_multientity;

import java.util.List;

Expand All @@ -8,7 +8,7 @@
import org.bukkit.event.Listener;
import org.bukkit.persistence.PersistentDataType;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.checkerframework.checker.nullness.qual.NonNull;

public abstract class AbstractCustomMultientity<E extends Entity> implements Listener {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multientity;
package org.esoteric_organisation.template_paper_plugin.custom_multientity;

public enum CustomMultientity {
;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.custom_multientity;
package org.esoteric_organisation.template_paper_plugin.custom_multientity;

import java.util.HashMap;
import java.util.List;
Expand All @@ -7,9 +7,9 @@
import org.bukkit.Location;
import org.bukkit.entity.Entity;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.custom_multientity.AbstractCustomMultientity;
import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.custom_multientity.AbstractCustomMultientity;
import org.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;

public class CustomMultientityManager {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.data.player;
package org.esoteric_organisation.template_paper_plugin.data.player;

import java.io.File;
import java.io.FileReader;
Expand All @@ -13,7 +13,7 @@

import com.google.gson.Gson;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.checkerframework.checker.nullness.qual.NonNull;

public class PlayerDataManager {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.data.player;
package org.esoteric_organisation.template_paper_plugin.data.player;

import java.util.UUID;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package dev.esoteric_organisation.template_paper_plugin.file;
package org.esoteric_organisation.template_paper_plugin.file;

import java.io.File;
import java.io.IOException;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;

public class FileManager {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.file;
package org.esoteric_organisation.template_paper_plugin.file;

import java.util.ArrayList;
import java.util.Collections;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
package dev.esoteric_organisation.template_paper_plugin.http_server;
package org.esoteric_organisation.template_paper_plugin.http_server;

import com.sun.net.httpserver.HttpServer;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.file.FileUtil;
import dev.esoteric_organisation.template_paper_plugin.http_server.event.listeners.PlayerJoinListener;
import dev.esoteric_organisation.template_paper_plugin.resource_pack.ResourcePackManager;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.file.FileUtil;
import org.esoteric_organisation.template_paper_plugin.http_server.event.listeners.PlayerJoinListener;
import org.esoteric_organisation.template_paper_plugin.resource_pack.ResourcePackManager;

import com.sun.net.httpserver.HttpHandler;
import com.sun.net.httpserver.HttpExchange;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.http_server.event.listeners;
package org.esoteric_organisation.template_paper_plugin.http_server.event.listeners;

import java.net.URI;

Expand All @@ -7,9 +7,9 @@
import org.bukkit.event.Listener;
import org.bukkit.event.player.PlayerJoinEvent;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.file.FileUtil;
import dev.esoteric_organisation.template_paper_plugin.http_server.HttpServerManager;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.file.FileUtil;
import org.esoteric_organisation.template_paper_plugin.http_server.HttpServerManager;
import net.kyori.adventure.resource.ResourcePackInfo;
import net.kyori.adventure.resource.ResourcePackRequest;
import org.checkerframework.checker.nullness.qual.NonNull;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package dev.esoteric_organisation.template_paper_plugin.language;
package org.esoteric_organisation.template_paper_plugin.language;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.data.player.PlayerProfile;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.data.player.PlayerProfile;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.TextReplacementConfig;
import net.kyori.adventure.text.minimessage.MiniMessage;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
package dev.esoteric_organisation.template_paper_plugin.language;
package org.esoteric_organisation.template_paper_plugin.language;

import java.util.function.BooleanSupplier;

import dev.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import dev.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import dev.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;
import org.esoteric_organisation.template_paper_plugin.custom_item.CustomItem;
import org.esoteric_organisation.template_paper_plugin.custom_multiblock.CustomMultiblock;
import org.esoteric_organisation.template_paper_plugin.custom_multientity.CustomMultientity;

public enum Message {
SET_LANGUAGE_SUCCESSFULLY(() -> false),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
package dev.esoteric_organisation.template_paper_plugin.resource_pack;
package org.esoteric_organisation.template_paper_plugin.resource_pack;

import java.io.File;
import java.util.List;

import org.apache.commons.io.FileUtils;

import dev.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import dev.esoteric_organisation.template_paper_plugin.file.FileUtil;
import org.esoteric_organisation.template_paper_plugin.TemplatePaperPlugin;
import org.esoteric_organisation.template_paper_plugin.file.FileUtil;

public class ResourcePackManager {

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package dev.esoteric_organisation.template_paper_plugin.util.types;
package org.esoteric_organisation.template_paper_plugin.util.types;

import org.bukkit.Location;
import org.bukkit.block.Block;
Expand Down

0 comments on commit 310271d

Please sign in to comment.