Skip to content

Commit

Permalink
Update gradle and fabric dependencies in dev environment
Browse files Browse the repository at this point in the history
  • Loading branch information
mezz committed Sep 4, 2024
1 parent da426b8 commit 18c7c2b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Fabric/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,11 @@ dependencies {
name = "fabric-api",
version = fabricApiVersion,
)
implementation(
group = "com.google.code.findbugs",
name = "jsr305",
version = "3.0.1"
)
dependencyProjects.forEach {
implementation(it)
}
Expand Down
5 changes: 5 additions & 0 deletions FabricApi/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ dependencies {
name = "fabric-api",
version = fabricApiVersion,
)
implementation(
group = "com.google.code.findbugs",
name = "jsr305",
version = "3.0.1"
)
dependencyProjects.forEach {
implementation(it)
}
Expand Down
3 changes: 2 additions & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ plugins {
id("org.parchmentmc.librarian.forgegradle") version ("1.2.0") apply(false)
id("net.darkhax.curseforgegradle") version("1.0.8") apply(false)
id("com.modrinth.minotaur") version("2.8.7") apply(false)
id("fabric-loom") version("0.12-SNAPSHOT") apply(false)
// https://maven.fabricmc.net/fabric-loom/fabric-loom.gradle.plugin/
id("fabric-loom") version("1.7.3") apply(false)
}
apply {
from("buildtools/ColoredOutput.gradle")
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ forgeVersionRange=[47.0,)

# Fabric
# https://fabricmc.net/develop/
fabricLoaderVersion=0.15.11
fabricLoaderVersion=0.16.3
fabricApiVersion=0.92.2+1.20.1

# Mappings
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.7-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.8-bin.zip
networkTimeout=10000
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit 18c7c2b

Please sign in to comment.