org.gradle.playframework-ide
Owner: Gradle
Plugin for generating IDE project files for Play applications.
https://gradle.github.io/playframework/
Sources: https://github.com/gradle/playframework
Version 0.8
0.8
Created 07 August 2019.
Plugin for generating IDE project files for Play applications.
Using the plugins DSL:
plugins {
id("org.gradle.playframework-ide") version "0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("org.gradle.playframework:gradle-playframework:0.8")
}
}
apply(plugin = "org.gradle.playframework-ide")
Using the plugins DSL:
plugins {
id "org.gradle.playframework-ide" version "0.8"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "org.gradle.playframework:gradle-playframework:0.8"
}
}
apply plugin: "org.gradle.playframework-ide"