Search Gradle plugins

Version 1.0.0 (latest)

Created 17 April 2023.

Automatically pipe test failures to ChatGPT for to enable quicker resolution of failures. Supports groovy, java, kotlin and more. Simply include the plugin, add your openAIKey, run gradle test and watch ChatGPT debug your test failures!

Using the plugins DSL:

plugins {
  id("io.enfuse.ChatGPTPlugin") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("io.enfuse.plugin:chatgpt-test-gradle-plugin:1.0.0")
  }
}

apply(plugin = "io.enfuse.ChatGPTPlugin")

Using the plugins DSL:

plugins {
  id "io.enfuse.ChatGPTPlugin" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "io.enfuse.plugin:chatgpt-test-gradle-plugin:1.0.0"
  }
}

apply plugin: "io.enfuse.ChatGPTPlugin"

Learn how to apply plugins to subprojects