com.github.tomek39856.ngspringbootplugin
Owner: Tomasz Tokarczyk
Plugin creates angular project and attaches it to spring boot resources
Sources: https://github.com/tomek39856/ng-springboot-plugin
Version 1.0 (latest)
1.0
Created 02 March 2020.
Plugin creates angular project and attaches it to spring boot resources
Using the plugins DSL:
plugins {
id("com.github.tomek39856.ngspringbootplugin") version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.tomek39856:ng-springboot-plugin:1.0")
}
}
apply(plugin = "com.github.tomek39856.ngspringbootplugin")
Using the plugins DSL:
plugins {
id "com.github.tomek39856.ngspringbootplugin" version "1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.tomek39856:ng-springboot-plugin:1.0"
}
}
apply plugin: "com.github.tomek39856.ngspringbootplugin"