Skip to content

Commit

Permalink
renamed package to net.feltmc from io.github.feltmc
Browse files Browse the repository at this point in the history
  • Loading branch information
Trinsdar committed Sep 17, 2023
1 parent 3d66f5c commit 230f3ac
Show file tree
Hide file tree
Showing 14 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.feltmc.feltasm.platform.forge;
package net.feltmc.feltasm.platform.fabric;

import io.github.feltmc.feltasm.asm.FeltASMBootstrap;
import net.feltmc.feltasm.asm.FeltASMBootstrap;
import org.objectweb.asm.tree.ClassNode;
import org.spongepowered.asm.mixin.extensibility.IMixinConfigPlugin;
import org.spongepowered.asm.mixin.extensibility.IMixinInfo;
Expand Down
2 changes: 1 addition & 1 deletion fabric/src/main/resources/feltasm.init.mixins.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"minVersion": "0.8",
"plugin": "io.github.feltmc.feltasm.platform.fabric.FeltASMMixinPlugin"
"plugin": "net.feltmc.feltasm.platform.fabric.FeltASMMixinPlugin"
}
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package io.github.feltmc.feltasm.platform.fabric;
package net.feltmc.feltasm.platform.forge;

import io.github.feltmc.feltasm.asm.FeltASMBootstrap;
import net.feltmc.feltasm.asm.FeltASMBootstrap;
import org.objectweb.asm.tree.ClassNode;
import org.spongepowered.asm.mixin.extensibility.IMixinConfigPlugin;
import org.spongepowered.asm.mixin.extensibility.IMixinInfo;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.feltmc.feltasm.platform.forge;
package net.feltmc.feltasm.platform.forge;

import net.minecraftforge.fml.common.Mod;

Expand Down
2 changes: 1 addition & 1 deletion forge/src/main/resources/feltasm.init.mixins.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"minVersion": "0.8",
"plugin": "io.github.feltmc.feltasm.platform.forge.FeltASMMixinPlugin"
"plugin": "net.feltmc.feltasm.platform.forge.FeltASMMixinPlugin"
}
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@
org.gradle.jvmargs=-Xmx1G
# Mod Properties
mod_version = 0.2.2
maven_group = io.github.feltmc
maven_group = net.feltmc
archives_base_name = feltasm
asm_version=9.5

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.feltmc.feltasm.asm;
package net.feltmc.feltasm.asm;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.feltmc.feltasm.asm;
package net.feltmc.feltasm.asm;

import java.lang.annotation.ElementType;
import java.lang.annotation.Retention;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.feltmc.feltasm.asm;
package net.feltmc.feltasm.asm;

import org.jetbrains.annotations.ApiStatus;
import org.objectweb.asm.Opcodes;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.feltmc.feltasm.asm;
package net.feltmc.feltasm.asm;

import javax.annotation.processing.AbstractProcessor;
import javax.annotation.processing.ProcessingEnvironment;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.feltmc.feltasm.asm;
package net.feltmc.feltasm.asm;

import org.spongepowered.asm.mixin.injection.selectors.ElementNode;
import org.spongepowered.asm.mixin.injection.selectors.ISelectorContext;
Expand Down
1 change: 1 addition & 0 deletions src/main/java/net/feltmc/feltasm/asm/package-info.java
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package net.feltmc.feltasm.asm;
Original file line number Diff line number Diff line change
@@ -1 +1 @@
io.github.feltmc.feltasm.asm.FeltAsmAP
net.feltmc.feltasm.asm.FeltAsmAP

0 comments on commit 230f3ac

Please sign in to comment.