org.gradle.playframework-distribution
所有者: Gradle
为Play应用程序生成分发的插件。
https://gradle.github.io/playframework/
源代码: https://github.com/gradle/playframework
使用 插件 DSL
plugins {
id("org.gradle.playframework-distribution") version "0.14"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("org.gradle.playframework:gradle-playframework:0.14")
}
}
apply(plugin = "org.gradle.playframework-distribution")
使用 插件 DSL
plugins {
id "org.gradle.playframework-distribution" version "0.14"
}
使用 旧版插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "org.gradle.playframework:gradle-playframework:0.14"
}
}
apply plugin: "org.gradle.playframework-distribution"