Search Gradle plugins

Version 1.1 (latest)

1.1

Created 03 November 2023.

Deploy builds on pterodactyl easily with this gradle plugin

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.AntoD3v.pterodactyl-ci-plugin") version "1.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.antod3v:pterodactyl-ci-plugin:1.1")
      }
    }
    
    apply(plugin = "io.github.AntoD3v.pterodactyl-ci-plugin")
  • Applying plugins to all subprojects .