Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Gradle equivalent for mvn clean verify

Tags:

maven

gradle

I have a project which is based on gradle .I have to run the command which is equivalent for mvn clean verify .As I am new to both gradle and maven ,and have been exposed to only 3 command of both .I want to run a gradle equivalent for mvn clean verify .I searched on websites but still have not got the answer .Can some please help me to know what will be the gradle equivalent for "mvn clean verify"

like image 696
arpit joshi Avatar asked Oct 18 '22 12:10

arpit joshi


1 Answers

gradle clean verify

or if you are using gradle wrapper:

./gradlew clean verify

like image 171
RaGe Avatar answered Oct 31 '22 12:10

RaGe