Skip to content

Commit

Permalink
library/build.gradle: avoid using (deprecated) space-assignment syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengold committed Dec 22, 2024
1 parent 58d04e6 commit 4fd7f36
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions JmeTtfLibrary/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ javadoc {

tasks.register('install') {
dependsOn 'publishMavenPublicationToMavenLocal'
description 'Installs Maven artifacts to the local repository.'
description = 'Installs Maven artifacts to the local repository.'
}
tasks.register('release') {
dependsOn 'publishMavenPublicationToOSSRHRepository'
description 'Stages Maven artifacts to Sonatype OSSRH.'
description = 'Stages Maven artifacts to Sonatype OSSRH.'
}

jar {
Expand Down

0 comments on commit 4fd7f36

Please sign in to comment.