Search Gradle plugins

com.palawanframe.angular-base

Creates new angular project from only gradle initialized project. Simply apply plugin into your gradle project and execute :angularInit task and new angular project will be created.

https://github.com/langrp/gradle-angular-plugin

Sources: https://github.com/langrp/gradle-angular-plugin

Version 0.2

Created 17 December 2019.


Creates new angular project from only gradle initialized project. Simply apply plugin into your gradle
project and execute :angularInit task and new angular project will be created.

Using the plugins DSL:

plugins {
  id("com.palawanframe.angular-base") version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.palawanframe.build:gradle-angular-plugin:0.2")
  }
}

apply(plugin = "com.palawanframe.angular-base")

Using the plugins DSL:

plugins {
  id "com.palawanframe.angular-base" version "0.2"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.palawanframe.build:gradle-angular-plugin:0.2"
  }
}

apply plugin: "com.palawanframe.angular-base"

Learn how to apply plugins to subprojects