Skip to content

gradle-plugins/toolbox

main
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Gradle Plugin Development Toolbox

Painless Gradle plugins development. The Gradle toolbox is a suite of high-quality Gradle plugins improving the developer experience of writing Gradle plugins. It bridges the gaps in the development process offered by the Gradle team. The Nokee team developed the toolbox plugins and offer them for free to everyone.

For more information, visit the official project documentation

Usage

Apply any of the toolbox plugins to your build just like any other Gradle plugin:

settings.gradle
pluginManagement {
    repositories {
        gradlePluginPortal()
        maven { url = 'https://repo.nokee.dev/release' }
    }
}
build.gradle
plugins {
    id("dev.gradleplugins.java-gradle-plugin") version("1.6.10")
}

Need Help?

Contributing

If you’re looking to contribute to Gradle toolbox or provide a patch/pull request, you can find more info here.

This project adheres to this Code of Conduct. By participating, you are expected to uphold this code.