-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now supports 1.8.9 and 1.12.2 Forge and Fabric
- Loading branch information
Showing
70 changed files
with
573 additions
and
273 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,15 @@ | ||
plugins { | ||
idea | ||
java | ||
|
||
kotlin("jvm") version "1.9.10" | ||
kotlin("jvm") version "1.9.10" apply false | ||
kotlin("plugin.serialization") version "1.9.10" | ||
|
||
id("org.polyfrost.loom") version "1.6.polyfrost.5" apply false | ||
id("dev.architectury.architectury-pack200") version "0.1.3" apply false | ||
id("com.github.johnrengelman.shadow") version "8.1.1" apply false | ||
alias(libs.plugins.pgt.defaults.repo) apply false | ||
idea | ||
} | ||
|
||
allprojects { | ||
plugins.apply("java") | ||
plugins.apply("idea") | ||
val modVer = project.properties["version"] | ||
|
||
plugins.apply("org.jetbrains.kotlin.jvm") | ||
version = "$modVer" | ||
group = "wtf.zani" | ||
|
||
repositories { | ||
mavenCentral() | ||
mavenLocal() | ||
maven("https://repo.spongepowered.org/maven/") | ||
maven("https://jitpack.io") | ||
} | ||
|
||
dependencies { | ||
if (name != "common") implementation(project(":common")) | ||
} | ||
|
||
java { | ||
toolchain.languageVersion.set(JavaLanguageVersion.of(8)) | ||
} | ||
|
||
kotlin { | ||
jvmToolchain(8) | ||
} | ||
} | ||
subprojects { | ||
version = rootProject.version | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
org.gradle.jvmargs=-Xmx2G | ||
org.gradle.parallel=true | ||
version=1.0.0 | ||
|
||
polyfrost.defaults.loom=3 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
9 changes: 2 additions & 7 deletions
9
...n/kotlin/wtf/zani/spice/util/ClassUtil.kt → ...n/kotlin/wtf/zani/spice/util/ClassUtil.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
@file:Suppress("UnstableApiUsage", "DEPRECATION") | ||
|
||
// Shared build logic between all OneConfig modules to reduce boilerplate. | ||
|
||
plugins { | ||
idea | ||
} | ||
|
||
val rootModuleProject = project | ||
|
||
subprojects { | ||
apply(plugin = "java-library") | ||
apply(plugin = "kotlin") | ||
|
||
dependencies { | ||
"implementation"(rootProject.libs.annotations) | ||
if (name != "common") "implementation"(project(":modules:common")) | ||
"implementation"(rootProject.libs.bundles.kotlin) | ||
} | ||
|
||
//base.archiveBaseName = name | ||
|
||
configure<JavaPluginExtension> { | ||
toolchain { | ||
languageVersion.set(JavaLanguageVersion.of(8)) | ||
} | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
platform/fabric-1.8/src/main/java/wtf/zani/spice/mixin/common/DebugHudMixin.java
This file was deleted.
Oops, something went wrong.
38 changes: 0 additions & 38 deletions
38
platform/fabric-1.8/src/main/java/wtf/zani/spice/mixin/common/MinecraftClientMixin.java
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.