In my build.gradle, I added the plugin:
apply plugin: \'maven\'
Then using “gradle install” I can copy the resulted jar into the maven reposito
mavenLocal() is resolved like this:
In order to make use of a non-standard local maven repository, you can use the following configuration in your build.gradle:
repositories { maven { url '/Users/manuelj/apache/maven/repository' } }