forked from Wynntils/Wynntils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gradle.properties
97 lines (71 loc) · 2.83 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
88
89
90
91
92
93
94
95
96
97
### GENERAL PROJECT SETTINGS
mod_id = wynntils
# Source code version
java_version=21
# Minecraft and mappings versions
minecraft_version=1.21.1
# This is an array of versions that the mod supports.
fabric_minecraft_version_range=>=1.21 <=1.21.1
# This is a range of versions that the mod supports.
neoforge_minecraft_version_range=[1.21,1.21.1]
# 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.7-SNAPSHOT
enabled_platforms=fabric,neoforge
# Parchment
# Check for latest at https://ldtteam.jfrog.io/ui/native/parchmentmc-internal/org/parchmentmc/data
parchment_version=1.21:2024.07.28
### MOD FRAMEWORK SETTINGS
# Fabric
# Check for latest at https://fabricmc.net/develop/
fabric_loader_version=0.16.5
fabric_version=0.103.0+1.21.1
# NeoForge
# Check for latest at https://neoforged.net/
neoforge_version=21.1.43
neoforge_version_range=[21.1.43,)
neoforge_loader_version_range=[4,)
# Note: Must use same version of eventbus as is used in the above forge version!
neoforge_eventbus_version=8.0.1
### OTHER DEPENDENCIES
# MixinExtras
# Check for updates at https://github.com/LlamaLad7/MixinExtras/releases
mixinextras_version=0.4.1
# 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
# ModMenu
# Check for latest at https://github.com/TerraformersMC/ModMenu/releases
modmenu_version=11.0.2
### DEVELOPMENT SUPPORT
# DevAuth
# Check for latest at https://github.com/DJtheRedstoner/DevAuth/releases
devauth_version=1.2.1
# 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.47.0
# Check for latest at https://github.com/google/gson/releases
spotless_gson_version=2.11.0
# 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