Skip to content

Commit

Permalink
hardcode the shimmer version
Browse files Browse the repository at this point in the history
  • Loading branch information
Rushmead committed Aug 16, 2024
1 parent e628e7c commit aa27614
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ dependencies {
shadowCommon "org.yaml:snakeyaml:${rootProject.snakeyaml_version}"

// Shimmer
modImplementation "com.lowdragmc.shimmer:Shimmer-common:${minecraft_version}-${shimmer_version}"
modImplementation "com.lowdragmc.shimmer:Shimmer-common:${shimmer_version}"
}

publishing {
Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ dependencies {

if(include_shimmer == "true") {
//Shimmer
modImplementation("com.lowdragmc.shimmer:Shimmer-fabric:${minecraft_version}-${shimmer_version}") {
modImplementation("com.lowdragmc.shimmer:Shimmer-fabric:${shimmer_version}") {
exclude group: "maven.modrinth"
exclude group: "com.jozufozu.flywheel"
}
Expand Down
12 changes: 7 additions & 5 deletions forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -60,11 +60,13 @@ dependencies {
forgeRuntimeLibrary "org.yaml:snakeyaml:${rootProject.snakeyaml_version}"
include "org.yaml:snakeyaml:${rootProject.snakeyaml_version}"

// Shimmer
modImplementation("com.lowdragmc.shimmer:Shimmer-forge:${minecraft_version}-${shimmer_version}") {
exclude group: "maven.modrinth"
exclude group: "icyllis.modernui"
exclude group: "com.jozufozu.flywheel"
if(include_shimmer == "true") {
// Shimmer
modImplementation("com.lowdragmc.shimmer:Shimmer-forge:${shimmer_version}") {
exclude group: "maven.modrinth"
exclude group: "icyllis.modernui"
exclude group: "com.jozufozu.flywheel"
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ parchment_version=2023.09.03

artnet4j_version=0.6.3
snakeyaml_version=2.2
shimmer_version=0.2.4
shimmer_version=1.20.1-0.2.4

release_type=ALPHA
curseforge_type=alpha
Expand Down

0 comments on commit aa27614

Please sign in to comment.