com.lodsve.archetype
Owner: Crazy_Coder
Gradle plugin that generate projects from template.
https://github.com/lodsve/lodsve-gradle-archetype-plugin
Sources: https://github.com/sunhao-java/gradle-archetype-plugin
Version 1.0.0-RELEASE (latest)
1.0.0-RELEASE
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"