Skip to content

Commit ad60796

Browse files
committed
Fix foojay resolver fix.
1 parent 9e79991 commit ad60796

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

dev/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,6 @@ dependencies {
4040
downgrade(project['vineflower.dependency'] as String) {
4141
transitive = false
4242
}
43-
api 'org.gradle.toolchains:foojay-resolver:0.10.0'
4443
// Need LWJGL 2 for game decompilation.
4544
api('org.lwjgl.lwjgl:lwjgl:2.9.3') {
4645
transitive = false

dev/src/main/groovy/com/fox2code/foxloader/dev/GradlePlugin.groovy

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,8 +80,6 @@ class GradlePlugin implements Plugin<Project> {
8080
project.apply([plugin: 'maven-publish'])
8181
project.apply([plugin: 'eclipse'])
8282
project.apply([plugin: 'idea'])
83-
// We need it to properly auto-download java21+ JVMs
84-
project.apply([plugin: 'org.gradle.toolchains.foojay-resolver-convention'])
8583
project.eclipse.classpath.downloadSources = true
8684
project.idea.module.downloadSources = true
8785
project.repositories {

settings.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
plugins {
2+
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
3+
}
4+
15
rootProject.name = 'FoxLoader'
26
include 'patching'
37
include 'loader'

0 commit comments

Comments
 (0)