Gradle Plugins TODEPLETE: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
(Created page with "=Internal= * Gradle Concepts =Overview= Most of Gradle's power comes from external plugins. A Project implements [https://docs.gradle.org/curr...")
 
Line 12: Line 12:


* Maven publishing plugin.
* Maven publishing plugin.
=Plugin Initialization=
<syntaxhighlight lang='groovy'>
apply
</syntaxhighlight>

Revision as of 22:33, 17 May 2018

Internal

Overview

Most of Gradle's power comes from external plugins.

A Project implements PluginAware.

  • Java plugin.
  • Maven publishing plugin.

Plugin Initialization

apply