user5761830
user5761830

Reputation: 39

How to generate war file in Gradle project

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

Answers (1)

C_B
C_B

Reputation: 2670

You need to include the war plugin to the Gradle build.

apply plugin: 'war'

Upvotes: 17

Related Questions