Skip to content

Commit

Permalink
patch: fix authors value
Browse files Browse the repository at this point in the history
  • Loading branch information
Im-Fran committed Jul 14, 2024
1 parent a58fa08 commit 5c494df
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build-info/src/main/resource-templates/bungee.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: 'SimpleCoreAPI'
main: 'cl.franciscosolis.simplecoreapi.bungee.BungeeLoader'
version: '{{ version }}'
author: 'FranciscoSolis'
authors: ['GitHub/Im-Fran']
description: '{{ description }}'
2 changes: 1 addition & 1 deletion build-info/src/main/resource-templates/plugin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@ name: 'SimpleCoreAPI'
main: 'cl.franciscosolis.simplecoreapi.spigot.SpigotLoader'
version: '{{ version }}'
api-version: '1.21'
authors: ['FranciscoSolis']
authors: ['GitHub/Im-Fran']
website: https://franciscosolis.cl
description: '{{ description }}'
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"name": "SimpleCoreAPI",
"version": "{{ version }}",
"url": "https://franciscosolis.cl",
"authors": ["FranciscoSolis"],
"authors": ["GitHub/Im-Fran"],
"main": "cl.franciscosolis.simplecoreapi.velocity.VelocityLoader"
}
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ val projectBuildId = env["GIT_COMMIT_SHORT_HASH"] ?: UUID.randomUUID().toString(
* otherwise it will be added '$projectBuildId'
* (no snapshot because maven central does not support it)
*/
val projectVersion = "${env["VERSION"] ?: "1.0.0"}${if (env["ENV"] != "prod") "-$projectBuildId" else ""}"
val projectVersion = "${env["VERSION"] ?: "1.0.1"}${if (env["ENV"] != "prod") "-$projectBuildId" else ""}"
/* Print out the current version */
println("This build version was '$projectVersion'")

Expand Down

0 comments on commit 5c494df

Please sign in to comment.