What is the preferred gradle approach to locally install an artifact? (equivalent to maven's "install")

The “publishToMavenLocal” task, provided by the “maven-publish” plugin - http://www.gradle.org/docs/current/userguide/publishing_maven.html

This goes to the exact same place that “mvn install” would put it.

1 Like