Skip to content

Commit

Permalink
move cu version to props
Browse files Browse the repository at this point in the history
  • Loading branch information
jpenilla committed Aug 7, 2024
1 parent ab38cdf commit 778aefc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def getGitCommit = { ->
dependencies {
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

api('ca.spottedleaf:concurrentutil:0.0.2-SNAPSHOT')
api("ca.spottedleaf:concurrentutil:${rootProject.concurrentutil_version}")
api("org.yaml:snakeyaml:${rootProject.snakeyaml_version}")
}

Expand Down
2 changes: 1 addition & 1 deletion fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies {
runtimeOnly(project(":").sourceSets.main.output)
modImplementation "net.fabricmc:fabric-loader:${project.loader_version}"

libs('ca.spottedleaf:concurrentutil:0.0.1-SNAPSHOT')
libs("ca.spottedleaf:concurrentutil:${rootProject.concurrentutil_version}")
libs("org.yaml:snakeyaml:${rootProject.snakeyaml_version}")
}

Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ yarn_mappings=1.21+build.9
loader_version=0.15.11
neoforge_version=21.0.153
snakeyaml_version=2.2
concurrentutil_version=0.0.2-SNAPSHOT
# Mod Properties
mod_version=1.0.0
maven_group=ca.spottedleaf.moonrise
Expand Down
2 changes: 1 addition & 1 deletion neoforge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ dependencies {
add('shadow', project([path: ":", configuration: "namedElements"]))
neoForge "net.neoforged:neoforge:${rootProject.neoforge_version}"

libs('ca.spottedleaf:concurrentutil:0.0.1-SNAPSHOT')
libs("ca.spottedleaf:concurrentutil:${rootProject.concurrentutil_version}")
libs("org.yaml:snakeyaml:${rootProject.snakeyaml_version}")
}

Expand Down

0 comments on commit 778aefc

Please sign in to comment.