Skip to content

Commit

Permalink
use strict gradle plugin version
Browse files Browse the repository at this point in the history
(cherry picked from commit d360026)
  • Loading branch information
deirn committed Mar 24, 2024
1 parent 84652c2 commit c7e0109
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,14 @@ allprojects {
}
}
}

task("listPluginVersions") {
doLast {
project.plugins.forEach {
println("$it -> ${it.javaClass.protectionDomain.codeSource.location.toURI().toString().lowercase()}")
}
}
}
}

subprojects {
Expand Down
2 changes: 1 addition & 1 deletion platform/fabric/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
evaluationDependsOn(":textile")

plugins {
id("fabric-loom") version "1.3.+"
id("fabric-loom") version "1.3.10"
}

setupPlatform()
Expand Down
4 changes: 2 additions & 2 deletions platform/forge/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import java.text.SimpleDateFormat
import java.util.*

plugins {
id("net.minecraftforge.gradle") version "[6.0.13, 6.2)"
id("org.spongepowered.mixin") version "0.7.+"
id("net.minecraftforge.gradle") version "6.0.21"
id("org.spongepowered.mixin") version "0.7.38"
}

setupPlatform()
Expand Down
2 changes: 1 addition & 1 deletion platform/neo/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("net.neoforged.gradle.userdev") version "7.0.+"
id("net.neoforged.gradle.userdev") version "7.0.100"
}

setupPlatform()
Expand Down
2 changes: 1 addition & 1 deletion platform/quilt/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
evaluationDependsOn(":textile")

plugins {
id("org.quiltmc.loom") version "1.3.+"
id("org.quiltmc.loom") version "1.3.4"
}

setupPlatform()
Expand Down
2 changes: 1 addition & 1 deletion platform/textile/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id("fabric-loom") version "1.3.+"
id("fabric-loom") version "1.3.10"
}

setupPlatform()
Expand Down

0 comments on commit c7e0109

Please sign in to comment.