When the {maven-plugin}[`maven` plugin] is applied, an `Upload` task for the `bootArchives` configuration named `uploadBootArchives` is automatically created.
To publish your Spring Boot jar or war, add it to the publication using the `artifact` method on `MavenPublication`.
By default, the `bootArchives` configuration contains the archive produced by the `bootJar` or `bootWar` task.
Pass the task that produces that artifact that you wish to publish to the `artifact` method.
The `uploadBootArchives` task can be configured to publish the archive to a Maven repository:
For example, to publish the artifact produced by the default `bootJar` task:
To publish your Spring Boot jar or war, add it to the publication using the `artifact` method on `MavenPublication`.
WARNING: The `maven` plugin has been deprecated in Gradle 6 and has been removed in Gradle 7.
Pass the task that produces that artifact that you wish to publish to the `artifact` method.
Please use the `maven-publish` plugin instead.
For example, to publish the artifact produced by the default `bootJar` task:
When the {maven-plugin}[`maven` plugin] is applied, an `Upload` task for the `bootArchives` configuration named `uploadBootArchives` is automatically created.
By default, the `bootArchives` configuration contains the archive produced by the `bootJar` or `bootWar` task.
The `uploadBootArchives` task can be configured to publish the archive to a Maven repository: