Search Gradle plugins

Version 1.0 (latest)

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"

Learn how to apply plugins to subprojects