Search Gradle plugins

Version 0.1-SNAPSHOT (latest)

Created 01 November 2020.

Gradle plugin for creating libraries for the Hextant platform

Using the plugins DSL:

plugins {
  id("com.github.nkb03.hextant-library") version "0.1-SNAPSHOT"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.github.nkb03.hextant-library" version "0.1-SNAPSHOT"
}

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects