org.gradle.playframework
Owner: Gradle
Plugin that supports building, testing and running Play applications with Gradle.
https://gradle.github.io/playframework/
Sources: https://github.com/gradle/playframework
Version 0.14 (latest)
0.14
Created 28 June 2023.
Plugin that supports building, testing and running Play applications with Gradle.
Using the plugins DSL:
plugins {
id("org.gradle.playframework") 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")
Using the plugins DSL:
plugins {
id "org.gradle.playframework" 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"