Skip to content

Commit

Permalink
fix mod_version mentions
Browse files Browse the repository at this point in the history
  • Loading branch information
PssbleTrngle committed Aug 1, 2022
1 parent 4bfc874 commit 4e2e0e4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,10 @@ loom {

processResources {
from project(":Common").sourceSets.main.resources
inputs.property "version", project.mod_version
inputs.property "version", rootProject.mod_version

filesMatching("fabric.mod.json") {
expand "version": project.mod_version
expand "version": rootProject.mod_version
}
}

Expand Down
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ subprojects {
attributes([
'Specification-Title' : mod_name,
'Specification-Vendor' : mod_author,
'Specification-Version' : project.jar.archiveVersion,
'Specification-Version' : rootProject.mod_version,
'Implementation-Title' : project.name,
'Implementation-Version' : project.jar.archiveVersion,
'Implementation-Version' : rootProject.mod_version,
'Implementation-Vendor' : mod_author,
'Implementation-Timestamp': new Date().format("yyyy-MM-dd'T'HH:mm:ssZ"),
'Timestampe' : System.currentTimeMillis(),
Expand Down Expand Up @@ -106,7 +106,7 @@ subprojects {

sonarqube {
properties {
property 'sonar.projectVersion', version
property 'sonar.projectVersion', rootProject.mod_version
property 'sonar.projectKey', mod_id
}
}
Expand Down

0 comments on commit 4e2e0e4

Please sign in to comment.