-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgradle.properties
More file actions
99 lines (86 loc) · 4.25 KB
/
Copy pathgradle.properties
File metadata and controls
99 lines (86 loc) · 4.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# Project
mod_id=scev
mod_name=Scalar Evolution
mod_version=0.2.0
mod_group_id=lekkit.scev
mod_authors=SolAstrius, pufit (1.21.1 port + co-development), LekKit (original mod)
mod_description=Brings super-scalar RISC-V machines into Minecraft
# Platform
minecraft_version=1.21.1
minecraft_version_range=[1.21.1,1.21.2)
neo_version=21.1.226
neo_version_range=[21.1.226,)
loader_version_range=[1,)
# Java
java_version=21
# Parchment — community-sourced parameter names + Javadoc for the Minecraft
# decompiled sources, applied by ModDevGradle during neoform compilation.
# Turns `p_123456_` into readable names when navigating MC internals.
# Version list: https://maven.parchmentmc.org/org/parchmentmc/data/parchment-1.21.1/
neoForge.parchment.minecraftVersion=1.21.1
neoForge.parchment.mappingsVersion=2024.11.17
# Optional mod compat. Jade (Snownee) — HUD tooltip integration. Resolved from
# Modrinth's maven; update the version to match your target Jade release.
jade_version=15.10.5
# JEI (Just Enough Items) — dev-time recipe browser, runtimeOnly. Resolved
# from maven.blamejared.com; update to track the latest 1.21.1 NeoForge
# release on Modrinth (the collision-free maven is BlameJared's).
jei_version=19.27.0.340
# CC: Tweaked — soft-dep target for the RPC <-> IPeripheral bridge in
# lekkit.scev.compat.cc. Resolved from maven.squiddev.cc; update the
# version to match your target CC: Tweaked release for this mc version.
cc_tweaked_version=1.117.1
# Advanced Peripherals — dev-runtime CC peripheral pack. No published
# API artifact, so we pull the full mod jar from Modrinth's maven
# (slug `advancedperipherals`, no hyphen). version_number on Modrinth
# is the mc-prefixed form. Loaded into runClient for manual testing of
# scev's CC bridge against a real third-party peripheral mod.
advanced_peripherals_version=1.21.1-0.7.61b
# Applied Energistics 2 + Mekanism — dev-runtime soft-deps that
# Advanced Peripherals integrates with (ME bridge, energy detector,
# chemical tank peripheral, etc). Pulled from Modrinth's maven so AP's
# integration code paths exercise during runClient. Not referenced by
# any scev compat classes — purely there to make AP's surface fuller
# for manual testing.
ae2_version=19.2.17
# AE2 19.x split its in-game guide into a separate hard-dep mod
# (`guideme`). Tracks the AE2 release that needs it.
guideme_version=21.1.15
mekanism_version=10.7.19.85
# owo-lib — declarative GUI framework powering ScevScreens (replaces the
# bespoke AbstractContainerScreen subclasses we used to hand-roll). Pulled
# from the wispforest maven; version is the Mojmap NeoForge publish from
# the 1.21-Neo branch.
owo_version=0.12.15.1-beta.6+1.21
# Create — soft-dep target for cross-mod integration under
# lekkit.scev.compat.create. Resolved via Create's official maven at
# https://maven.createmod.net/, which (unlike Modrinth's maven) ships
# real Gradle Module Metadata + a POM with full transitive deps —
# Registrate, Ponder, Flywheel, etc. resolve automatically, so a
# runtimeOnly here gives a real working dev run.
#
# Coordinate format here is `<modver>-<buildnum>` (per-CI-build
# publishing on the createmod maven), distinct from Modrinth's
# user-facing `<modver>+mc<mcver>` slug. Browse versions at
# https://maven.createmod.net/com/simibubi/create/create-1.21.1/.
#
# For source attachment: createmod's maven has no -sources jar, so
# run `./gradlew publishToMavenLocal` in your Create checkout — the
# local publish includes a sources jar (Create's build configures
# `tasks.named("sourcesJar")`), and mavenLocal() resolves first.
create_version=6.0.10-281
# Create: Power Grid (patryk3211) — physics-based electricity sim layered
# on top of Create. Resolved via Modrinth's maven (slug `power-grid`); the
# POM there is empty so Architectury is pulled directly below.
power_grid_version=0.5.5.1
# Architectury API — cross-loader abstraction layer required by Power Grid
# (and many Architectury-built mods). Resolved from maven.architectury.dev.
# 13.x is the 1.21.1 NeoForge line.
architectury_version=13.0.8
# Gradle
org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=true
org.gradle.parallel=true
# Reuse task outputs across invocations (within the local cache, and across
# CI builds via setup-gradle@v4's remote-cache integration) when inputs match.
org.gradle.caching=true