Skip to content

Commit

Permalink
Merge pull request #7 from stokito/main
Browse files Browse the repository at this point in the history
build.openfire-plugin.gradle: fix release date format to ISO
  • Loading branch information
akrherz authored Nov 2, 2024
2 parents 8a8c858 + 2d03bf9 commit 424c0df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions build.openfire-plugin.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ task openfirePluginAssembly(type: Jar, dependsOn: [jar]) {
filesMatching('plugin.xml') {
filter(ReplaceTokens, tokens: [
version : project.version,
releaseDate : new Date().format("MM/dd/yyyy"),
releaseDate : new Date().format("yyyy-MM-dd"),
minOpenfireVersion: minOpenfireVersion,
javaVersion : java.targetCompatibility as String
])
Expand Down Expand Up @@ -227,4 +227,4 @@ task deploy(dependsOn: [copyNewPlugin]) {
println(' installed')
}
}
}
}

0 comments on commit 424c0df

Please sign in to comment.