Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.

Commit

Permalink
Change group name
Browse files Browse the repository at this point in the history
  • Loading branch information
esotericenderman committed Oct 4, 2024
1 parent ce282d0 commit 6d3aa2a
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 23 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -31,9 +31,9 @@ fun pascalcase(kebabcaseString: String): String {
return pascalCaseString
}

val mainProjectAuthor = "rolyPolyVole"
val mainProjectAuthor = "Esoteric Organisation"
val topLevelDomain = "org"
val projectAuthors = listOfNotNull(mainProjectAuthor, "Slqmy")
val projectAuthors = listOfNotNull(mainProjectAuthor, "rolyPolyVole", "Esoteric Enderman")

group = topLevelDomain + groupStringSeparator + mainProjectAuthor.lowercase() + groupStringSeparator + snakecase(rootProject.name)
version = "1.0.0-SNAPSHOT"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.rolypolyvole.better_armour_stands_plugin;
package org.esoteric_organisation.better_armor_stands_plugin;

import org.bukkit.Bukkit;
import org.bukkit.Material;
Expand All @@ -7,13 +7,13 @@
import org.bukkit.inventory.ShapedRecipe;
import org.bukkit.plugin.PluginManager;
import org.bukkit.plugin.java.JavaPlugin;
import org.rolypolyvole.better_armour_stands_plugin.listener.ArmourStandBreakListener;
import org.rolypolyvole.better_armour_stands_plugin.listener.ArmourStandPlaceListener;
import org.rolypolyvole.better_armour_stands_plugin.listener.ArmourStandRightClickListener;
import org.rolypolyvole.better_armour_stands_plugin.manager.PoseManager;
import org.rolypolyvole.better_armour_stands_plugin.util.RecipeUtil;
import org.esoteric_organisation.better_armor_stands_plugin.listener.ArmourStandBreakListener;
import org.esoteric_organisation.better_armor_stands_plugin.listener.ArmourStandPlaceListener;
import org.esoteric_organisation.better_armor_stands_plugin.listener.ArmourStandRightClickListener;
import org.esoteric_organisation.better_armor_stands_plugin.manager.PoseManager;
import org.esoteric_organisation.better_armor_stands_plugin.util.RecipeUtil;

public final class BetterArmourStandsPlugin extends JavaPlugin {
public final class BetterArmorStandsPlugin extends JavaPlugin {

private PoseManager poseManager;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.rolypolyvole.better_armour_stands_plugin.listener;
package org.esoteric_organisation.better_armor_stands_plugin.listener;

import org.bukkit.Material;
import org.bukkit.entity.ArmorStand;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
package org.rolypolyvole.better_armour_stands_plugin.listener;
package org.esoteric_organisation.better_armor_stands_plugin.listener;

import org.bukkit.configuration.file.YamlConfiguration;
import org.bukkit.entity.ArmorStand;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;
import org.bukkit.event.entity.CreatureSpawnEvent;
import org.jetbrains.annotations.NotNull;
import org.rolypolyvole.better_armour_stands_plugin.BetterArmourStandsPlugin;
import org.esoteric_organisation.better_armor_stands_plugin.BetterArmorStandsPlugin;

public class ArmourStandPlaceListener implements Listener {

private final BetterArmourStandsPlugin plugin;
private final BetterArmorStandsPlugin plugin;

public ArmourStandPlaceListener(BetterArmourStandsPlugin plugin) {
public ArmourStandPlaceListener(BetterArmorStandsPlugin plugin) {
this.plugin = plugin;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.rolypolyvole.better_armour_stands_plugin.listener;
package org.esoteric_organisation.better_armor_stands_plugin.listener;

import org.bukkit.Material;
import org.bukkit.configuration.file.YamlConfiguration;
Expand All @@ -10,14 +10,14 @@
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.PlayerInventory;
import org.jetbrains.annotations.NotNull;
import org.rolypolyvole.better_armour_stands_plugin.BetterArmourStandsPlugin;
import org.rolypolyvole.better_armour_stands_plugin.manager.PoseManager;
import org.esoteric_organisation.better_armor_stands_plugin.BetterArmorStandsPlugin;
import org.esoteric_organisation.better_armor_stands_plugin.manager.PoseManager;

public class ArmourStandRightClickListener implements Listener {

private final BetterArmourStandsPlugin plugin;
private final BetterArmorStandsPlugin plugin;

public ArmourStandRightClickListener(BetterArmourStandsPlugin plugin) {
public ArmourStandRightClickListener(BetterArmorStandsPlugin plugin) {
this.plugin = plugin;
}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package org.rolypolyvole.better_armour_stands_plugin.manager;
package org.esoteric_organisation.better_armor_stands_plugin.manager;

import org.bukkit.entity.ArmorStand;
import org.bukkit.util.EulerAngle;
import org.jetbrains.annotations.NotNull;
import org.rolypolyvole.better_armour_stands_plugin.BetterArmourStandsPlugin;
import org.esoteric_organisation.better_armor_stands_plugin.BetterArmorStandsPlugin;

import java.util.ArrayList;

Expand All @@ -15,7 +15,7 @@ public ArrayList<ArrayList<ArrayList<Double>>> getPoses() {
return poses;
}

public PoseManager(@NotNull BetterArmourStandsPlugin plugin) {
public PoseManager(@NotNull BetterArmorStandsPlugin plugin) {
poses = (ArrayList<ArrayList<ArrayList<Double>>>) plugin.getConfig().getList("pose-changing.poses");
assert poses != null;

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package org.rolypolyvole.better_armour_stands_plugin.util;
package org.esoteric_organisation.better_armor_stands_plugin.util;

import org.bukkit.Bukkit;
import org.bukkit.Material;
Expand Down

0 comments on commit 6d3aa2a

Please sign in to comment.