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.3

Created 12 February 2022.


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.3"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects