Skip to content

gradle-plugins/toolbox

Folders and files

NameName
Last commit message
Last commit date
Jun 30, 2020
Oct 19, 2023
Oct 19, 2023
Feb 7, 2024
Jul 30, 2020
Aug 23, 2023
Jun 21, 2020
Jun 21, 2020
Jun 21, 2020
Feb 17, 2023
Feb 17, 2023
Feb 15, 2021
Feb 14, 2021
Feb 14, 2021
Oct 19, 2023

Repository files navigation

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.