Search Gradle plugins

Version 1.0.0-RELEASE (latest)

Created 18 June 2019.

Gradle plugin that generate projects from template.

Using the plugins DSL:

plugins {
  id("com.lodsve.archetype") version "1.0.0-RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.lodsve:lodsve-gradle-archetype-plugin:1.0.0-RELEASE")
  }
}

apply(plugin = "com.lodsve.archetype")

Using the plugins DSL:

plugins {
  id "com.lodsve.archetype" version "1.0.0-RELEASE"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.lodsve:lodsve-gradle-archetype-plugin:1.0.0-RELEASE"
  }
}

apply plugin: "com.lodsve.archetype"

Learn how to apply plugins to subprojects