forked from Wynntils/Wynntils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
87 lines (63 loc) · 2.53 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
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
### GENERAL PROJECT SETTINGS
# Source code version
java_version=17
# Minecraft and mappings versions
minecraft_version=1.20.2
# Architectury
# Check for latest at https://maven.architectury.dev/architectury-plugin/architectury-plugin.gradle.plugin
architectury_plugin_version=3.4-SNAPSHOT
# Check for latest at https://maven.architectury.dev/dev/architectury/loom/dev.architectury.loom.gradle.plugin
architectury_loom_version=1.5-SNAPSHOT
enabled_platforms=fabric,forge
# Parchment
# Check for latest at https://ldtteam.jfrog.io/ui/native/parchmentmc-internal/org/parchmentmc/data
parchment_version=1.20.2:2023.10.22
### MOD FRAMEWORK SETTINGS
# Fabric
# Check for latest at https://fabricmc.net/develop/
fabric_loader_version=0.15.10
fabric_version=0.91.6+1.20.2
# Forge
# Check for latest at https://files.minecraftforge.net/net/minecraftforge/forge
forge_version=1.20.2-48.0.4
# Note: Must use same version of eventbus as is used in the above forge version!
forge_eventbus_version=6.0.5
### OTHER DEPENDENCIES
# MixinExtras
# Check for updates at https://github.com/LlamaLad7/MixinExtras/releases
mixinextras_version=0.3.5
# Event Bus Transformer
event_bus_transformer_version=2.0.2
# Shadow
# Check for latest at https://github.com/johnrengelman/shadow/releases
shadow_version=8.1.1
# Hades
hades_version=0.5.1
# Antiope
antiope_version=0.2.2
# JUnit
# Check for latest at https://central.sonatype.com/search?namespace=org.junit.jupiter
junit_version=5.10.2
### DEVELOPMENT SUPPORT
# DevAuth
# Check for latest at https://github.com/DJtheRedstoner/DevAuth/releases
devauth_version=1.2.0
# Spotless
# Check for latest at https://plugins.gradle.org/plugin/com.diffplug.spotless
spotless_version=6.25.0
# Check for latest at https://plugins.gradle.org/plugin/com.palantir.java-format-spotless
spotless_palantir_version=2.43.0
# Check for latest at https://github.com/google/gson/releases
spotless_gson_version=2.10.1
# Check for latest at https://groovy.jfrog.io/ui/native/plugins-release/org/codehaus/groovy/groovy-eclipse-integration/4.9.0
spotless_greclipse_version=4.27
### TWEAKS AND SETTINGS
archives_base_name=wynntils
# Make Gradle efficient by default
org.gradle.caching=true
# Gradle settings
org.gradle.jvmargs=-Xmx4096M --add-exports jdk.compiler/com.sun.tools.javac.api=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.file=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.parser=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.tree=ALL-UNNAMED \
--add-exports jdk.compiler/com.sun.tools.javac.util=ALL-UNNAMED