# gradle-learn **Repository Path**: kevinlights/gradle-learn ## Basic Information - **Project Name**: gradle-learn - **Description**: Learn gradle, such as gradle plugins - **Primary Language**: Groovy - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2021-01-25 - **Last Updated**: 2021-01-25 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # gradle plugins learn Learn how to develop gradle plugin. two different ways to create gradle plugins. 1. embed way: new plugin in `build.gradle` file 2. singleton way: new groovy file to implement logic. note: 1. you can publish the plugin jar by `maven-publish` plugin 2. then publish plugin to local or other repository. 3. use the plugin in `buildScript` closure 4. apply the plugin