Skip to content

Commit

Permalink
Return Hardcoded getVersion() with ${project.version}
Browse files Browse the repository at this point in the history
It seems to be that you now must hard code the version string...
  • Loading branch information
xknat authored Sep 6, 2021
1 parent 3867194 commit c75434b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ public String getAuthor() {
}

/**
* Returns the version of the expansion as String.
* Returns the HARDCODED version of the expansion as String.
*
* @return The VERSION String
* @return The HARDCODED VERSION String
*/
@Override
public String getVersion() {
return VERSION;
return "${project.version}";
}

/**
Expand Down

0 comments on commit c75434b

Please sign in to comment.