-
Notifications
You must be signed in to change notification settings - Fork 33
/
build.gradle
55 lines (50 loc) · 1.97 KB
/
build.gradle
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
plugins {
id 'com.github.johnrengelman.shadow' version '7.1.0'
}
apply plugin: 'java'
apply plugin: 'eclipse'
apply from: 'gradle/property_helper.gradle'
apply from: 'gradle/property_loader.gradle'
apply from: 'https://raw.githubusercontent.com/SizableShrimp/Forge-Class-Remapper/main/classremapper.gradle'
// Load mod related properties
ext.modName = getRequiredString('mod_name')
ext.modAuthor = getRequiredString('mod_author')
ext.modId = getRequiredString('mod_id')
ext.modCredits = getDefaultString('mod_credits', ext.modAuthor)
ext.modDescription = getOptionalString('mod_description')
ext.modChangelog = getOptionalString('mod_changelog')
ext.modHomepage = getOptionalString('mod_homepage')
ext.modSource = getOptionalString('mod_source')
ext.modIssues = getOptionalString('mod_issues')
ext.modLicense = getOptionalString('mod_license')
// Load Minecraft specific properties
ext.mcVersion = getRequiredString('minecraft_version')
// Load build-time modules
apply from: 'gradle/build_number.gradle'
apply from: 'gradle/git_changelog.gradle'
apply from: 'gradle/patreon.gradle'
apply from: 'gradle/java.gradle'
apply from: 'gradle/forge.gradle'
apply from: 'gradle/dependencies.gradle'
apply from: 'gradle/aequivaleo.gradle'
apply from: 'gradle/api.gradle'
apply from: 'gradle/blame.gradle'
apply from: 'gradle/carrier_bees.gradle'
apply from: 'gradle/curios.gradle'
apply from: 'gradle/dynamic_trees.gradle'
apply from: 'gradle/geckolib.gradle'
apply from: 'gradle/jade.gradle'
apply from: 'gradle/jei.gradle'
apply from: 'gradle/mana_and_artifice.gradle'
apply from: 'gradle/mysticalworld.gradle'
apply from: 'gradle/patchouli.gradle'
apply from: 'gradle/particleslib.gradle'
apply from: 'gradle/shadow.gradle'
apply from: 'gradle/stables.gradle'
apply from: 'gradle/top.gradle'
apply from: 'gradle/minify_jsons.gradle'
// Load publishing modules
apply from: 'gradle/maven.gradle'
apply from: 'gradle/signing.gradle'
apply from: 'gradle/curseforge.gradle'
apply from: 'gradle/version_checker.gradle'