Search Gradle plugins

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.4

Created 18 February 2019.

Plugin that supports building, testing and running Play applications with Gradle.

Using the plugins DSL:

plugins {
  id("org.gradle.playframework") version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("org.gradle.playframework:gradle-playframework:0.4")
  }
}

apply(plugin = "org.gradle.playframework")

Using the plugins DSL:

plugins {
  id "org.gradle.playframework" version "0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "org.gradle.playframework:gradle-playframework:0.4"
  }
}

apply plugin: "org.gradle.playframework"

Learn how to apply plugins to subprojects