Skip to content

Commit

Permalink
remove forginx
Browse files Browse the repository at this point in the history
  • Loading branch information
Wulian233 authored Feb 15, 2024
1 parent 14c5c0d commit d3dcd0c
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 44 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,6 @@ jobs:
chmod +x gradlew
./gradlew build
- name: Merge Fabric & Forge & NeoForge JARs
run: |
chmod +x gradlew
./gradlew mergeJars
- name: Upload artifacts (fabric)
uses: actions/upload-artifact@v3
with:
Expand All @@ -49,9 +44,3 @@ jobs:
with:
name: neoforge
path: ${{ github.workspace }}/neoforge/build/libs

- name: Upload artifacts (Forgix merged jar)
uses: actions/upload-artifact@v3
with:
name: merged
path: ${{ github.workspace }}/build/libs/forgix
22 changes: 0 additions & 22 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
plugins {
id "architectury-plugin" version "3.4-SNAPSHOT"
id "io.github.pacifistmc.forgix" version "1.2.6"
id "dev.architectury.loom" version "1.5-SNAPSHOT" apply false
}

Expand Down Expand Up @@ -43,24 +42,3 @@ allprojects {
withSourcesJar()
}
}

forgix {
group = rootProject.maven_group
mergedJarName = "${rootProject.archives_base_name}-${rootProject.version}.jar"
outputDir = "build/libs/forgix"

forge {
projectName = "forge"
jarLocation = "build/libs/${rootProject.archives_base_name}-forge-${rootProject.version}.jar"
}

fabric {
projectName = "fabric"
jarLocation = "build/libs/${rootProject.archives_base_name}-fabric-${rootProject.version}.jar"
}

custom {
projectName = "neoforge"
jarLocation = "build/libs/${rootProject.archives_base_name}-neoforge-${rootProject.version}.jar"
}
}
2 changes: 0 additions & 2 deletions common/src/main/resources/chatimpressiveanimation.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"required": true,
"package": "com.wulian.chatimpressiveanimation.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ChatScreenMixin"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
public class ChatImpressiveAnimationClientFabric implements ClientModInitializer {
@Override
public void onInitializeClient() {
ChatImpressiveAnimation.LOGGER.info("Chat Animation is loaded!");
ChatImpressiveAnimation.LOGGER.info("Chat Impressive Animation is loaded!");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"required": true,
"package": "com.wulian.chatimpressiveanimation.fabric.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ChatHudMixin"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class ChatImpressiveAnimationClientForge {
public ChatImpressiveAnimationClientForge() {
if (FMLLoader.getDist().isClient()) {
ChatImpressiveAnimation.LOGGER.info("Chat Animation is loaded!");
ChatImpressiveAnimation.LOGGER.info("Chat Impressive Animation is loaded!");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"required": true,
"package": "com.wulian.chatimpressiveanimation.forge.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ChatHudMixin"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
public class ChatImpressiveAnimationClientNeoForge {
public ChatImpressiveAnimationClientNeoForge() {
if (FMLLoader.getDist().isClient()) {
ChatImpressiveAnimation.LOGGER.info("Chat Animation is loaded!");
ChatImpressiveAnimation.LOGGER.info("Chat Impressive Animation is loaded!");
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
"required": true,
"package": "com.wulian.chatimpressiveanimation.neoforge.mixin",
"compatibilityLevel": "JAVA_17",
"mixins": [
],
"client": [
"ChatHudMixin"
],
Expand Down

0 comments on commit d3dcd0c

Please sign in to comment.