-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathgradle.properties
40 lines (32 loc) · 1.61 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
# Sets default memory used for gradle commands. Can be overridden by user or command line properties.
# This is required to provide enough memory for the Minecraft decompilation process.
org.gradle.jvmargs=-Xmx3G
# No deamon
org.gradle.daemon=false
# Taken from https://semver.org
# Given a version number MAJOR.MINOR.PATCH, increment the:
# MAJOR version when you make incompatible API changes,
# MINOR version when you add functionality in a backwards-compatible manner, and
# PATCH version when you make backwards-compatible bug fixes.
# Additional labels for pre-release and build metadata are available as extensions to the MAJOR.MINOR.PATCH format.
# We use the format MCVERSION-MAJOR.MINOR.PATCH
modVersion = 0.7.0-pre2
modId=renderchunk-rebuildchunk-hooks
# The maven group of your mod
# See "http://maven.apache.org/guides/mini/guide-naming-conventions.html"
modGroup = io.github.cadiboo.renderchunkrebuildchunkhooks
# The name of the mod file (excluding the version)
# Maven and Gradle don't like spaces in filenames, so use a different separator character like '-'
modFileName = RenderChunk-rebuildChunk-Hooks
# The version of Minecraft we are modding for
modMinecraftVersion = 1.13.2
# The MCP Mappings the source code of the mod will be built against
# MCP Mappings are in the format
# snapshot_YYYYMMDD
# stable_#
# Snapshot are built nightly and stables are built at the discretion of the MCP team
# To change your mappings change the following properties and rerun your setup
modMcpMappingsChannel = snapshot
modMcpMappingsVersion = 20190409-1.13.2
# The Forge version the mod is being made for
modForgeVersion = 25.0.110