Search Gradle plugins

Version 1.4.6

Created 19 September 2017.

Gradle plugin that generate projects from template.

Using the plugins DSL:

plugins {
  id("com.orctom.archetype") version "1.4.6"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

plugins {
  id "com.orctom.archetype" version "1.4.6"
}

Using legacy plugin application:

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

apply plugin: "com.orctom.archetype"

Learn how to apply plugins to subprojects