Skip to content

Commit

Permalink
Rename net.pistonmaster.soulfire to com.soulfiremc
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexProgrammerDE committed Feb 26, 2024
1 parent 03d6bce commit 07a1fa1
Show file tree
Hide file tree
Showing 374 changed files with 1,374 additions and 1,372 deletions.
2 changes: 1 addition & 1 deletion build-data/build.gradle.kts
Expand Up @@ -9,7 +9,7 @@ sourceSets {
javaSources {
property("version", rootProject.version.toString())
property("description", rootProject.description)
property("url", "https://github.com/AlexProgrammerDE/SoulFire")
property("url", "https://soulfiremc.com")
property("commit", indraGit.commit()?.name ?: "unknown")
}
}
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.builddata;
package com.soulfiremc.builddata;

// The constants are replaced before compilation
public class BuildData {
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Expand Up @@ -13,7 +13,7 @@ plugins {
val mavenVersion: String by project

allprojects {
group = "net.pistonmaster"
group = "com.soulfiremc"
version = mavenVersion
description = "Advanced Minecraft Server-Stresser Tool."

Expand All @@ -25,7 +25,7 @@ allprojects {
}
}

var mainClassString = "net.pistonmaster.soulfire.launcher.SoulFireJava8Launcher"
var mainClassString = "com.soulfiremc.launcher.SoulFireJava8Launcher"

application {
applicationName = "SoulFire"
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/src/main/kotlin/sf-java-conventions.gradle.kts
Expand Up @@ -46,7 +46,7 @@ indra {
configurePublications {
pom {
name = "SoulFire"
url = "https://github.com/AlexProgrammerDE/SoulFire"
url = "https://soulfiremc.com"
organization {
name = "AlexProgrammerDE"
url = "https://pistonmaster.net"
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator;
package com.soulfiremc.generator;

import net.fabricmc.api.ModInitializer;
import net.minecraft.server.MinecraftServer;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
Expand Down
Expand Up @@ -15,13 +15,13 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import java.util.Locale;
import java.util.Objects;
import net.minecraft.core.registries.BuiltInRegistries;
import net.pistonmaster.soulfire.generator.util.GeneratorConstants;
import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.GeneratorConstants;
import com.soulfiremc.generator.util.ResourceHelper;

public class AttributesJavaGenerator implements IDataGenerator {
@Override
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import it.unimi.dsi.fastutil.Hash;
import it.unimi.dsi.fastutil.ints.IntArrayList;
Expand Down
Expand Up @@ -15,16 +15,16 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import net.minecraft.Util;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.FallingBlock;
import net.pistonmaster.soulfire.generator.mixin.BlockAccessor;
import net.pistonmaster.soulfire.generator.util.BlockSettingsAccessor;
import com.soulfiremc.generator.mixin.BlockAccessor;
import com.soulfiremc.generator.util.BlockSettingsAccessor;

public class BlocksDataGenerator implements IDataGenerator {
public static JsonObject generateBlock(Block block) {
Expand Down
Expand Up @@ -15,12 +15,12 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import java.util.Locale;
import net.minecraft.core.registries.BuiltInRegistries;
import net.pistonmaster.soulfire.generator.util.GeneratorConstants;
import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.GeneratorConstants;
import com.soulfiremc.generator.util.ResourceHelper;

public class BlocksJavaGenerator implements IDataGenerator {
@Override
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonElement;
import com.google.gson.internal.Streams;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
Expand Down
Expand Up @@ -15,14 +15,14 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.EntityType;
import net.pistonmaster.soulfire.generator.util.MCHelper;
import com.soulfiremc.generator.util.MCHelper;

public class EntitiesDataGenerator implements IDataGenerator {

Expand Down
Expand Up @@ -15,12 +15,12 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import java.util.Locale;
import net.minecraft.core.registries.BuiltInRegistries;
import net.pistonmaster.soulfire.generator.util.GeneratorConstants;
import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.GeneratorConstants;
import com.soulfiremc.generator.util.ResourceHelper;

public class EntitiesJavaGenerator implements IDataGenerator {
@Override
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

public interface IDataGenerator {
String getDataName();
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonArray;
import com.google.gson.JsonObject;
Expand Down
Expand Up @@ -15,12 +15,12 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import java.util.Locale;
import net.minecraft.core.registries.BuiltInRegistries;
import net.pistonmaster.soulfire.generator.util.GeneratorConstants;
import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.GeneratorConstants;
import com.soulfiremc.generator.util.ResourceHelper;

public class ItemsJavaGenerator implements IDataGenerator {
@Override
Expand Down
Expand Up @@ -15,9 +15,9 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.ResourceHelper;

public class LanguageDataGenerator implements IDataGenerator {
@Override
Expand Down
Expand Up @@ -15,12 +15,12 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import lombok.SneakyThrows;
import net.minecraft.world.level.material.MapColor;
import net.pistonmaster.soulfire.generator.util.GeneratorConstants;
import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.GeneratorConstants;
import com.soulfiremc.generator.util.ResourceHelper;

public class MapColorJavaGenerator implements IDataGenerator {
@Override
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import java.util.ArrayList;
import java.util.List;
Expand All @@ -25,8 +25,8 @@
import net.minecraft.tags.EntityTypeTags;
import net.minecraft.tags.ItemTags;
import net.minecraft.tags.TagKey;
import net.pistonmaster.soulfire.generator.util.GeneratorConstants;
import net.pistonmaster.soulfire.generator.util.ResourceHelper;
import com.soulfiremc.generator.util.GeneratorConstants;
import com.soulfiremc.generator.util.ResourceHelper;

@Slf4j
public class TagsDataGenerator {
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.generators;
package com.soulfiremc.generator.generators;

import com.google.gson.JsonObject;
import com.google.gson.internal.Streams;
Expand All @@ -30,8 +30,8 @@
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Blocks;
import net.pistonmaster.soulfire.generator.Main;
import net.pistonmaster.soulfire.generator.util.GsonInstance;
import com.soulfiremc.generator.Main;
import com.soulfiremc.generator.util.GsonInstance;

@Slf4j
public class WorldExporterGenerator implements IDataGenerator {
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.mixin;
package com.soulfiremc.generator.mixin;

import net.minecraft.world.level.block.state.BlockBehaviour;
import org.spongepowered.asm.mixin.Mixin;
Expand Down
Expand Up @@ -15,10 +15,10 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.mixin;
package com.soulfiremc.generator.mixin;

import net.minecraft.world.level.block.state.BlockBehaviour;
import net.pistonmaster.soulfire.generator.util.BlockSettingsAccessor;
import com.soulfiremc.generator.util.BlockSettingsAccessor;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Unique;
import org.spongepowered.asm.mixin.injection.At;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.mixin;
package com.soulfiremc.generator.mixin;

import net.minecraft.server.Eula;
import org.spongepowered.asm.mixin.Mixin;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.mixin;
package com.soulfiremc.generator.mixin;

import net.minecraft.world.flag.FeatureFlagSet;
import org.spongepowered.asm.mixin.Mixin;
Expand Down
Expand Up @@ -15,14 +15,14 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.mixin;
package com.soulfiremc.generator.mixin;

import java.nio.file.Path;
import net.minecraft.DetectedVersion;
import net.minecraft.server.MinecraftServer;
import net.minecraft.server.dedicated.DedicatedServer;
import net.pistonmaster.soulfire.generator.Main;
import net.pistonmaster.soulfire.generator.generators.DataGenerators;
import com.soulfiremc.generator.Main;
import com.soulfiremc.generator.generators.DataGenerators;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.util;
package com.soulfiremc.generator.util;

import net.minecraft.world.level.block.state.BlockBehaviour;

Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.util;
package com.soulfiremc.generator.util;

public class GeneratorConstants {
public static final String VALUES_REPLACE = "// VALUES REPLACE";
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.util;
package com.soulfiremc.generator.util;

import com.google.gson.Gson;

Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.util;
package com.soulfiremc.generator.util;

import net.fabricmc.loader.api.FabricLoader;
import net.minecraft.gametest.framework.GameTestHelper;
Expand Down
Expand Up @@ -15,7 +15,7 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
package net.pistonmaster.soulfire.generator.util;
package com.soulfiremc.generator.util;

import java.nio.charset.StandardCharsets;
import java.util.Objects;
Expand Down
2 changes: 1 addition & 1 deletion data-generator/src/main/resources/fabric.mod.json
Expand Up @@ -13,7 +13,7 @@
"environment": "server",
"entrypoints": {
"main": [
"net.pistonmaster.soulfire.generator.Main"
"com.soulfiremc.generator.Main"
]
},
"mixins": [
Expand Down

0 comments on commit 07a1fa1

Please sign in to comment.