Reputation: 39
I have creating a sample gradle project. My project build generates a jar file.I am using the gradle clean build
command. How do I generate a war file for my project instead of a jar file?
Upvotes: 3
Views: 18645
Reputation: 2670
You need to include the war plugin to the Gradle build.
apply plugin: 'war'
Upvotes: 17