Search code examples
grailsversioning

Create grails war without version number


How do I create a grails war file so that it doesn't have the version number

(e.g. foo-0.1.war)

attached to the end when I execute the 'grails war' command?


Solution

  • I think you can specify the war name in the war command.

    grails war foo.war
    

    Also check the latest Grails documentation for where to set this as a configuration option. See the other answers for details.