Skip to content

Commit

Permalink
Update maven_dependencies (#1499)
Browse files Browse the repository at this point in the history
Co-authored-by: Renovate Bot <bot@renovateapp.com>
  • Loading branch information
renovate[bot] and renovate-bot committed Jun 4, 2022
1 parent 48be1b0 commit 2d6a773
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Common/build.gradle.kts
Expand Up @@ -37,7 +37,7 @@ base {
}

dependencies {
compileOnly("org.spongepowered:mixin:0.8.4")
compileOnly("org.spongepowered:mixin:0.8.5")
(project.ext["zenCodeDeps"] as Set<*>).forEach {
implementation(project(it.toString()))
}
Expand Down
4 changes: 2 additions & 2 deletions Fabric/build.gradle.kts
Expand Up @@ -35,7 +35,7 @@ dependencies {
minecraft("com.mojang:minecraft:${minecraftVersion}")
mappings(loom.layered {
officialMojangMappings()
parchment("org.parchmentmc.data:parchment-1.18.2:2022.03.13@zip")
parchment("org.parchmentmc.data:parchment-1.18.2:2022.05.22@zip")
})
modImplementation("net.fabricmc:fabric-loader:${fabricLoaderVersion}")
modImplementation("net.fabricmc.fabric-api:fabric-api:${fabricVersion}")
Expand All @@ -52,7 +52,7 @@ dependencies {
modImplementation("com.faux.fauxcustomentitydata:FauxCustomEntityData-fabric-1.18.2:2.0.1")

implementation("org.reflections:reflections:0.10.2")?.let { include(it) }
implementation("org.javassist:javassist:3.28.0-GA")?.let { include(it) } // required for reflections
implementation("org.javassist:javassist:3.29.0-GA")?.let { include(it) } // required for reflections


modImplementation("com.faux.ingredientextension:IngredientExtensionAPI-fabric-1.18.2:2.0.5")
Expand Down
2 changes: 1 addition & 1 deletion Forge/build.gradle.kts
Expand Up @@ -49,7 +49,7 @@ dependencies {
(project.ext["zenCodeDeps"] as Set<*>).forEach {
implementation(project(it.toString()))
}
implementation(fg.deobf("mezz.jei:jei-1.18.2:9.5.2.133"))
implementation(fg.deobf("mezz.jei:jei-1.18.2:9.7.0.195"))
annotationProcessor("org.spongepowered:mixin:0.8.5-SNAPSHOT:processor")

gametestCompileOnly(files(project(":Common").dependencyProject.sourceSets.gametest.get().java.srcDirs))
Expand Down
8 changes: 4 additions & 4 deletions build.gradle.kts
Expand Up @@ -12,7 +12,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath("com.diluv.schoomp:Schoomp:1.2.5")
classpath("com.diluv.schoomp:Schoomp:1.2.6")
}
}

Expand Down Expand Up @@ -148,13 +148,13 @@ subprojects {
}

dependencies {
annotationProcessor("com.blamejared.crafttweaker:Crafttweaker_Annotation_Processors:3.0.0.5")
annotationProcessor("com.blamejared.crafttweaker:Crafttweaker_Annotation_Processors:3.0.0.6")

implementation("com.google.code.findbugs:jsr305:3.0.1")
implementation("com.google.code.findbugs:jsr305:3.0.2")

gametestLibrary("com.google.truth:truth:1.1.3")
// This is required for Truth since MC uses an old Guava version, however in 1.18 the game uses an updated version.
gametestLibrary("com.google.guava:guava:31.0.1-jre")
gametestLibrary("com.google.guava:guava:31.1-jre")
}

extensions.configure<JavaPluginExtension> {
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -14,7 +14,7 @@ forgeAtsEnabled=true
# Fabric
fabricVersion=0.48.0+1.18.2
fabricLoaderVersion=0.13.3
reiVersion=8.0.442
reiVersion=8.2.471
# Mod options
modName=CraftTweaker
modAuthor=Jared
Expand Down

0 comments on commit 2d6a773

Please sign in to comment.