-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathgradle.properties
More file actions
135 lines (116 loc) · 4.8 KB
/
gradle.properties
File metadata and controls
135 lines (116 loc) · 4.8 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
org.gradle.daemon = false
group = com.mcmoddev
archivesBaseName = ExampleMod
modid = examplemod
vendor = mcmoddev
name = Example Mod
description = Example Mod
#mod_version = 1.0.0
#mod_version_file = ''
#mod_version_const = 'VERSION'
#Minumum Minecraft Version Mod will be built with
mc_version=1.12.2
#ForgeGradle version to use (Required)
fg_version = 2.3-SNAPSHOT
#version of Minecraft Forge is built against (Required)
forge_mc_version = 1.12.2
#Forge version to use (Required)
forge_version = 14.23.5.2847
#Mappings channel to use (Required on FG3 or later): snapshot, stable or official
#mappings_channel = stable
#Mappings version to use (Required)
mappings_version = stable_39
# The following will currently only be set when using Gradle 4.8 or later
pom_information = false
pom_url = 'https://github.com/jriwanek/ForgeModdingSkeleton'
pom_license_information = true
pom_license_name = 'GNU Lesser General Public License v2.1'
pom_license_url = 'https://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt'
pom_comments = ''
pom_scm_information = true
pom_scm_connection = 'scm:git:git://github.com/jriwanek/ForgeModdingSkeleton.git'
pom_scm_developer_connection = 'scm:git:git@github.com:jriwanek/ForgeModdingSkeleton.git'
pom_scm_url = 'https://github.com/jriwanek/ForgeModdingSkeleton'
pom_issue_information = true
pom_issue_system = 'github'
pom_issue_url = 'https://github.com/jriwanek/ForgeModdingSkeleton/issues'
pom_ci_information = true
pom_ci_system = 'jenkins'
pom_ci_url = 'https://ci.mcmoddev.com/'
pom_organisation_information = true
pom_organization_name = 'Minecraft Mod Development'
pom_organization_url = 'https://mcmoddev.com/'
curseforge_do_upload=false
#curseforge_debug=false
#Cursforge Project ID (Required)
#curseforge_project_id = 0
#Type of Release, can be one of 'alpha', 'beta' or 'release' (Defaults to 'alpha' if not set)
#curseforge_release_type = alpha
#When using a ChangeLog file specifies filename
#curseforge_changelog_filename = CHANGELOG.txt
#Changelog type, can be one of 'text', 'html' or 'markdown' (Defaults to 'text' if not set)
#curseforge_changelog_type = text
#Version(s) of Minecraft this mod will work on (comma separated list)
#curseforge_versions = 1.12.2
#Whether to use a custom display name on artifacts
#curseforge_use_custom_display_name = true
#List of required dependencies (comma separated list)
#curseforge_requirements =
#List of optional dependencies (comma separated list)
#curseforge_optionals =
#List of embedded dependencies (comma separated list)
#curseforge_embeddeds =
#List of compatible tools (comma separated list)
#curseforge_tools =
#List of incompatible dependencies (comma separated list)
#curseforge_incompatibles =
#String reference to Core Plugin this mod contains, if any
#core_plugin =
#Whether or not to use Access Transformers from depended on mods
dep_has_ats = false
#File name of this mod's Access Transformers (If any)
#mod_at_file = _at.cfg
#Whether the artifacts should be signed
do_sign_jar = true
#Create a source jar?
create_source_jar = true
#Create an API jar?
create_api_jar = false
#Create a deobf jar?
create_deobf_jar = false
#Create a dev jar? (this was mostly used on 1.7.10 and earlier)
create_dev_jar = false
#Create a javadoc jar?
create_javadoc_jar = true
#The following four options are optional and do not affect your build in any way
#They are only for convenience when using the 'runClient' and 'runServer' tasks
#Whether to Disable server gui
#mc_server_nogui = true
#Whether to Skip the screen to confirm that you want to load a world with missing registry entries
#forge_do_not_backup = true
#Whether to skip having to confirm on server
#forge_query_result_confirm = true
#Whether to Skip jansi warnings in the log
#log4j_skip_jansi = true
# Optional convenience setter for game resolution one of '480p', '576p', '720p', '1080p' or 'custom'
#mc_resolution = 1080p
#the following two will only be used when mc_resolution = custom
#mc_custom_resolution_width = 1920
#mc_custom_resolution_height = 1080
#mc_fullscreen = true
#Additional arguments to pass to minecraft.clientJvmArgs
#client_jvm_args =
#Additional arguments to pass to minecraft.serverJvmArgs
#client_game_args =
#Additional arguments to pass to minecraft.clientRunArgs
#server_jvm_args =
#Additional arguments to pass to minecraft.serverRunArgs
#server_game_args =
##The following three options should *NEVER* be set in this file, it's a security risk, Be safe, keep your account information private.
##These properties here are for reference only and explanation of what they do
##Your Minecraft account username (Consistent player name for singleplayer worlds)
##mc_username =
##Your Minecraft account password (Allows online play while present with associated username)
##mc_password =
##Your Minecraft account uuid (Allows using your skin while testing, This can be with or without hyphens)
##mc_uuid =