-
Notifications
You must be signed in to change notification settings - Fork 2
/
gradle.properties
56 lines (49 loc) · 2.01 KB
/
gradle.properties
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
# Gradle stuff
org.gradle.jvmargs=-Xmx8192M
org.gradle.parallel=true
org.gradle.caching=true
# Mod Info
## Remember to set the MOD_ID in AbstractModInitializer.java
mod_id=example_mod
## Remember to set the VERSION in AbstractModInitializer.java
mod_version=1.0.0
## use topLevelDomain.yourName.modID
maven_group=de.the_build_craft.example_mod
## Remember to set the MOD_NAME in AbstractModInitializer.java
mod_name=Example Mod
mod_description=Example description
mod_license=GPL-3
# Note: In forge's mods.toml this is hard coded because Architectury throws an error with setting it as a variable
mod_authors=["me", "someone else", "a third person"]
mod_homepage=https://modrinth.com/mod/example_mod
mod_source=https://github.com/thebuildcraft/Universal-Mod-Template
mod_issues=https://github.com/thebuildcraft/Universal-Mod-Template/issues
mod_discord=https://discord.gg/abcdefg
forgeUpdateJSONURL=https://api.modrinth.com/updates/{slug|ID}/forge_updates.json
neoforgeUpdateJSONURL=https://api.modrinth.com/updates/{slug|ID}/forge_updates.json?neoforge=only
# Global Plugin Versions
manifold_version=2023.1.33
# 2023.1.17 / 2023.1.33 can be used if there are mystery Java compiler issues //else: 2024.1.13
## left here as examples
#log4j_version=2.23.1
#lwjgl_version=3.3.1
##
# Internal Properties (These are set at runtime for Forgix to merge jar's)
versionStr=
# This defines what MC version Intellij will use for the preprocessor
# and what version is used automatically by build and run commands
mcVer=1.21.0
# Publishing information
# can be changed per version with "fabric_is_quilt_compatible" in version properties
default_quilt_compatibility=true
publish_debug_mode=false
modrinth_id=spC8u7gu
curseforge_id=123456789
# Type of release: "beta", "alpha" or "release"
release_type=release
# Curseforge Environment tag: "server", "client" or "both"
curse_environment=both
github_draft=true
github_target=main
# Defines the maximum amount of memory Minecraft is allowed when run in a development environment
#minecraftMemoryJavaArg="-Xmx4G"