How do I change the name of the war file being built?

You can set the name of the war archive in your build.gradle like so:

war {
    archiveName = 'myname.war'
}
2 Likes