Skip to content

Commit

Permalink
Implemented PanelStudio-MC16-Forge
Browse files Browse the repository at this point in the history
  • Loading branch information
lukflug committed Apr 19, 2021
1 parent 6441b26 commit a4f8300
Show file tree
Hide file tree
Showing 9 changed files with 690 additions and 6 deletions.
9 changes: 6 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
org.gradle.jvmargs = -Xmx2500m
version = 0.2.0-SNAPSHOT

forgeGradle3 = 3.0.190
forgeGradle3 = 3.0.191
mappings12 = 39-1.12
minecraft12 = 1.12.2-14.23.5.2854

loomVersion = 0.6.37
minecraft16 = 1.16.5
mappings16 = 1.16.5+build.4
minecraft16fabric = 1.16.5
mappings16fabric = 1.16.5+build.4

mappings16forge = 20201028-1.16.3
minecraft16forge = 1.16.5-36.0.46

minecraft8fabric = 1.8.9
mappings8fabric = 1.8.9+build.202102062228
Expand Down
4 changes: 2 additions & 2 deletions panelstudio-mc16-fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ minecraft {
}

dependencies {
minecraft "com.mojang:minecraft:${minecraft16}"
mappings "net.fabricmc:yarn:${mappings16}:v2"
minecraft "com.mojang:minecraft:${minecraft16fabric}"
mappings "net.fabricmc:yarn:${mappings16fabric}:v2"
annotationProcessor "org.ow2.asm:asm:9.0"
annotationProcessor "org.ow2.asm:asm-analysis:9.0"
annotationProcessor "org.ow2.asm:asm-commons:9.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ public void init() {
@Override
public void removed() {
getGUI().exit();
super.removed();
}

@Override
Expand Down
35 changes: 35 additions & 0 deletions panelstudio-mc16-forge/build.gradle
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@

buildscript {
repositories {
jcenter()
maven {
name = "forge"
url = "https://files.minecraftforge.net/maven"
}
}
dependencies {
classpath "net.minecraftforge.gradle:ForgeGradle:${forgeGradle3}"
}
}

apply plugin: "net.minecraftforge.gradle"

minecraft {
mappings("snapshot",project.mappings16forge)
}

dependencies {
minecraft "net.minecraftforge:forge:${minecraft16forge}"
compile project(":panelstudio")
}

publishing {
publications {
mavenJava(MavenPublication) {
pom {
name = "PanelStudio-MC16-Forge"
description = "A supplement to PanelStudio desgined for Minecraft Forge 1.16.x."
}
}
}
}
Loading

0 comments on commit a4f8300

Please sign in to comment.