I am new in gradle hence I have some questions about gradle. Before gradle I worked with maven and in maven there are some commands such as
mvn update
mvn clean install
With mvn update
we download the dependency packages from internet and the other packages from the different projects.
With mvn install
we create the jar, war, ear or ejb
so what are the equivalents for maven command in gradle?
mvn update
~=gradle ...
and
mvn clean install
~=gradle clean ...