Gradle Maven Plugin: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
Line 1: Line 1:
=External=
=External=
* https://docs.gradle.org/current/userguide/maven_plugin.html


=Internal=
=Internal=

Revision as of 19:17, 15 May 2018

External

Internal

Overview

apply plugin: 'maven'

Publishing to a Maven Repository

Gradle can be configured to publish artifacts to a Maven repository by configuring Maven plugin's uploadArchive task In build.gradle:

uploadArchives {
    repositories {
        mavenDeployer {
            repository(url: "file://localhost/tmp/myRepo/")
        }
    }
}