Skip to content

Commit

Permalink
Revert changes and correct typing issues with quotes
Browse files Browse the repository at this point in the history
  • Loading branch information
leviem1 committed Aug 11, 2020
1 parent 583f083 commit a42861d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ group = "com.snowypeaksystems.exampleplugin"
if (hasProperty('ver')) {
version = ver.substring(1)
} else {
version = new SimpleDateFormat("yyyy-MM-dd").format(new Date()).toString()
version = new SimpleDateFormat("yyyy-MM-dd").format(new Date())
}

java {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/plugin.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
main: ${PACKAGE}.${NAME}
name: ${NAME}
version: ${VERSION}
version: "${VERSION}"
api-version: "1.16"
author: AUTHOR
description: DESCRIPTION
Expand Down

0 comments on commit a42861d

Please sign in to comment.