Search Gradle plugins

Version 0.2.5 (latest)

Created 20 April 2024.

Gradle plugin for creating plugins for the Hextant platform

Using the plugins DSL:

plugins {
  id("com.github.nkb03.hextant-plugin") version "0.2.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.nkb03:hextant-plugin-plugin:0.2.5")
  }
}

apply(plugin = "com.github.nkb03.hextant-plugin")

Using the plugins DSL:

plugins {
  id "com.github.nkb03.hextant-plugin" version "0.2.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.nkb03:hextant-plugin-plugin:0.2.5"
  }
}

apply plugin: "com.github.nkb03.hextant-plugin"

Learn how to apply plugins to subprojects