Search Gradle plugins

Version 0.0.3 (latest)

Created 21 September 2020.

Jamplate is a C-Style pre-processor for java

Using the plugins DSL:

plugins {
  id("org.cufy.jamplate") version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.cufy:jamplate:0.0.3")
  }
}

apply(plugin = "org.cufy.jamplate")

Using the plugins DSL:

plugins {
  id "org.cufy.jamplate" version "0.0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.cufy:jamplate:0.0.3"
  }
}

apply plugin: "org.cufy.jamplate"

Learn how to apply plugins to subprojects