Gradle Artifacts: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
No edit summary
No edit summary
Line 11: Line 11:


A Gradle artifact is a file the project builds and shares with the outside world.
A Gradle artifact is a file the project builds and shares with the outside world.
=The Application Plugin=
{{Internal|Gradle_Application_Plugin#Overview|Application Plugin}}
=The Distribution Plugin=
{{Internal|Gradle_Distribution_Plugin#Overview|Distribution Plugin}}

Revision as of 00:53, 24 February 2019

Internal

Overview

A Gradle project may produce zero, one or more artifacts. An artifact may be built locally by a plugin such as the Application plugin, which in turn delegates the artifact building part to Distribution plugin, or by other plugins. The artifact building plugins create the artifact locally, in the project build area. This article describes the process of configuring and executing the artifact generation. For details on how the artifacts can be published, see:

Gradle Artifact Publishing Concepts

Artifact

A Gradle artifact is a file the project builds and shares with the outside world.

The Application Plugin

Application Plugin

The Distribution Plugin

Distribution Plugin