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.11
0.11
Created 22 January 2021.
Plugin that supports building, testing and running Play applications with Gradle.
Using the plugins DSL:
plugins {
id("org.gradle.playframework") version "0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle.playframework:gradle-playframework:0.11")
}
}
apply(plugin = "org.gradle.playframework")
Using the plugins DSL:
plugins {
id "org.gradle.playframework" version "0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle.playframework:gradle-playframework:0.11"
}
}
apply plugin: "org.gradle.playframework"