-
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.
unimined go brr* (*vintage forge and primitive to not go brr in dev)
- Loading branch information
Showing
32 changed files
with
544 additions
and
511 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
This file was deleted.
Oops, something went wrong.
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,49 @@ | ||
import xyz.wagyourtail.unimined.api.minecraft.task.RemapJarTask | ||
|
||
operator fun String.invoke(): String { | ||
return (rootProject.properties[this] as String?)!! | ||
} | ||
|
||
unimined.minecraft { | ||
version("archaic_minecraft_version"()) | ||
|
||
runs { | ||
config("server") { | ||
disabled = true | ||
} | ||
} | ||
|
||
minecraftForge { | ||
loader("archaic_forge_version"()) | ||
mixinConfig("zume-${project.name}.mixins.json") | ||
} | ||
|
||
mappings { | ||
searge() | ||
mcp("stable", "archaic_mappings_version"()) | ||
} | ||
|
||
defaultRemapJar = true | ||
} | ||
|
||
tasks.withType<RemapJarTask> { | ||
mixinRemap { | ||
enableMixinExtra() | ||
} | ||
} | ||
|
||
dependencies { | ||
"modImplementation"("com.github.LegacyModdingMC.UniMixins:unimixins-all-1.7.10:${"unimixins_version"()}:dev") | ||
|
||
implementation(project(":common")) | ||
} | ||
|
||
tasks.processResources { | ||
from("common/src/main/resources") | ||
|
||
filteringCharset = "UTF-8" | ||
|
||
// filesMatching("mcmod.info") { | ||
// expand(rootProject.properties) | ||
// } | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.