|
9 | 9 | /// Looking for attributes? They are in [MinecraftExtension.Attributes]. |
10 | 10 | final class Constants { |
11 | 11 | // Caches -- BE CAREFUL when changing this |
12 | | - public static final String CACHES_LOCATION = /* gradleUserHomeDir + */ "caches/forge_gradle_7"; |
| 12 | + static final String CACHES_LOCATION = /* gradleUserHomeDir + */ "caches/forge_gradle_7"; |
13 | 13 |
|
14 | | - public static final String FORGE_MAVEN = "https://maven.minecraftforge.net/"; |
| 14 | + static final String FORGE_MAVEN = "https://maven.minecraftforge.net/"; |
15 | 15 |
|
16 | | - public static final String MCMAVEN_VERSION = "0.3.0"; |
17 | | - public static final String MCMAVEN_DL_URL = "https://maven.minecraftforge.net/net/minecraftforge/minecraft-mavenizer/" + MCMAVEN_VERSION + "/minecraft-mavenizer-" + MCMAVEN_VERSION + ".jar"; |
18 | | - public static final String MCMAVEN_MAIN = "net.minecraftforge.mcmaven.cli.Main"; |
19 | | - public static final int MCMAVEN_JAVA_VERSION = 21; |
| 16 | + static final String MCMAVEN_VERSION = "0.3.0"; |
| 17 | + static final String MCMAVEN_DL_URL = "https://maven.minecraftforge.net/net/minecraftforge/minecraft-mavenizer/" + MCMAVEN_VERSION + "/minecraft-mavenizer-" + MCMAVEN_VERSION + ".jar"; |
| 18 | + static final String MCMAVEN_MAIN = "net.minecraftforge.mcmaven.cli.Main"; |
| 19 | + static final int MCMAVEN_JAVA_VERSION = 21; |
20 | 20 |
|
21 | | - public static final String SL_VERSION = "0.1.0"; |
22 | | - public static final String SL_DL_URL = "https://maven.minecraftforge.net/net/minecraftforge/slime-launcher/" + SL_VERSION + "/slime-launcher-" + SL_VERSION + ".jar"; |
23 | | - public static final String SLIMELAUNCHER_MAIN = "net.minecraftforge.launcher.Main"; |
24 | | - public static final int SLIMELAUNCHER_JAVA_VERSION = 8; |
| 21 | + static final String SL_VERSION = "0.1.0"; |
| 22 | + static final String SL_DL_URL = "https://maven.minecraftforge.net/net/minecraftforge/slime-launcher/" + SL_VERSION + "/slime-launcher-" + SL_VERSION + ".jar"; |
| 23 | + static final String SLIMELAUNCHER_MAIN = "net.minecraftforge.launcher.Main"; |
| 24 | + static final int SLIMELAUNCHER_JAVA_VERSION = 8; |
25 | 25 |
|
26 | 26 | /// Use these with [java.text.MessageFormat#format(String, Object...)]. |
27 | | - public static final class Messages { |
28 | | - public static final String WELCOME = """ |
| 27 | + static final class Messages { |
| 28 | + static final String WELCOME = """ |
29 | 29 | Welcome to ForgeGradle 7.0! |
30 | 30 | |
31 | 31 | Here are some release highlights: |
|
0 commit comments