Gradle Maven Plugin: Difference between revisions
Jump to navigation
Jump to search
Line 5: | Line 5: | ||
=Internal= | =Internal= | ||
* [[Gradle_Artifact_Publishing_Concepts#Publishing_to_a_Maven_Repository|Gradle Artifact Publishing Concepts]] | * [[Gradle_Artifact_Publishing_Concepts#Publishing_to_a_Maven_Repository|Gradle Artifact Publishing Concepts]] | ||
Latest revision as of 01:37, 4 October 2020
External
Internal
Overview
apply plugin: 'maven'
The Maven plugin define an "install" task of type "Upload". It installs the associated artifacts to the local Maven cache, including the Maven metadata. By default, the task is associated with the "archives" configuration. Additionally to installing artifacts into the local Maven cache (repository), the plugin can upload to remote Maven repositories.
Publishing with Maven plugin has been obsoleted by maven-publish Plugin, use that instead whenever possible.
Declaring an Artifact
Publishing an Artifact
POM Generation
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/")
}
}
}