Skip to content

gradle-plugins/toolbox

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.