You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build: Bump to a minimum requirement of Java 17 (#113)
* build: Bump to a minimum requirement of Java 17
* Perform a patch tidy-up and basic warning pass
This removes unused imports, resolves patch ordering issues, and deals
with easily resolvable IDE warnings -- reducing noise during further
development.
We also ensure that patches are a linear progression that compiles
at each commit.
Copy file name to clipboardExpand all lines: .teamcity/settings.kts
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -36,8 +36,8 @@ project {
36
36
text("github_repository_name", "ForgeFlower", label ="The github repository name. Used to connect to it in VCS Roots.", description ="This is the repository slug on github. So for example `ForgeFlower` or `MinecraftForge`. It is interpolated into the global VCS Roots.", display =ParameterDisplay.HIDDEN, allowEmpty =false)
37
37
text("env.PUBLISHED_JAVA_ARTIFACT_ID", "forgeflower", label ="Published artifact id", description ="The maven coordinate artifact id that has been published by this build. Can not be empty.", allowEmpty =false)
38
38
text("env.PUBLISHED_JAVA_GROUP", "net.minecraftforge", label ="Published group", description ="The maven coordinate group that has been published by this build. Can not be empty.", allowEmpty =false)
39
-
text("docker_jdk_version", "8", label ="JDK version", description ="The version of the JDK to use during execution of tasks in a JDK.", display =ParameterDisplay.HIDDEN, allowEmpty =false)
40
-
text("docker_gradle_version", "7.4", label ="Gradle version", description ="The version of Gradle to use during execution of Gradle tasks.", display =ParameterDisplay.HIDDEN, allowEmpty =false)
39
+
text("docker_jdk_version", "17", label ="JDK version", description ="The version of the JDK to use during execution of tasks in a JDK.", display =ParameterDisplay.HIDDEN, allowEmpty =false)
40
+
text("docker_gradle_version", "7.5.1", label ="Gradle version", description ="The version of Gradle to use during execution of Gradle tasks.", display =ParameterDisplay.HIDDEN, allowEmpty =false)
41
41
text("env.EMAIL", "ForgeTC@MinecraftForge.net", label ="Git Email", description ="Git email for use in the fake repo", display =ParameterDisplay.HIDDEN, allowEmpty =false)
42
42
checkbox("env.GITPATCHER_ADD_GIT_SAFEDIR", "true", label ="Add submodules as safedirs (Gitpatcher)", description ="Whether to add the submodule and patched repository as safe directories for git", checked ="true", unchecked ="false")
0 commit comments