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

Created 29 April 2019.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "org.gradle.playframework"

Learn how to apply plugins to subprojects