forked from Void-Skeleton/Carpet-Vastech-Addition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
21 lines (15 loc) · 872 Bytes
/
settings.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// The project name, starts with lower case letter, should obey Java variable naming rules
rootProject.name = 'carpetmod'
// The version of the mod
gradle.ext.modVersion = 'dev' //new java.text.SimpleDateFormat('yy_MM_dd').format(new Date())
// Set to 'client' to make a client-only jar mod, 'server' to make it server-only and 'both' to make it both
// Only 'server' is fully supported currently
gradle.ext.side = 'server'
// The Minecraft version to use
gradle.ext.mcVersion = '1.12.2'
// The MCP mappings to use
gradle.ext.mappings = 'stable_39' // Same as MCP 9.40 snapshot_20161116
// Whether the source should contain javadocs. false is recommended, set to true for compatibility with MCP.
gradle.ext.useJavadocs = true
// Whether to use the origial astyle formatting. false is recommended, set to true for compatibility with MCP.
gradle.ext.useAstyle = false