org.gradle.playframework-javascript
Owner: Gradle
Plugin for adding JavaScript processing to a Play application.
https://gradle.github.io/playframework/
Sources: https://github.com/gradle/playframework
Version 0.14 (latest)
0.14
Created 28 June 2023.
Plugin for adding JavaScript processing to a Play application.
Using the plugins DSL:
plugins {
id("org.gradle.playframework-javascript") version "0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle.playframework:gradle-playframework:0.14")
}
}
apply(plugin = "org.gradle.playframework-javascript")
Using the plugins DSL:
plugins {
id "org.gradle.playframework-javascript" version "0.14"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle.playframework:gradle-playframework:0.14"
}
}
apply plugin: "org.gradle.playframework-javascript"