Search Gradle plugins

com.github.nkb03.hextant-plugin

Gradle plugin for creating plugins for the Hextant platform

https://github.com/nkb03/hextant

Sources: https://github.com/nkb03/hextant

Version 0.2.5 (latest)

0.2.5

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