de.clashsoft.angular-gradle
Owner: Adrian Kunz
Integrate Angular frontends into your Gradle build.
https://github.com/Clashsoft/Angular-Gradle
Sources: https://github.com/Clashsoft/Angular-Gradle
Version 0.2.0 (latest)
0.2.0
Created 10 February 2024.
Integrate Angular frontends into your Gradle build.
Using the plugins DSL:
plugins {
id("de.clashsoft.angular-gradle") version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.clashsoft:angular-gradle-plugin:0.2.0")
}
}
apply(plugin = "de.clashsoft.angular-gradle")
Using the plugins DSL:
plugins {
id "de.clashsoft.angular-gradle" version "0.2.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.clashsoft:angular-gradle-plugin:0.2.0"
}
}
apply plugin: "de.clashsoft.angular-gradle"