Package org.gradle.play.platform
Interface PlayPlatform
-
@Incubating public interface PlayPlatform extends Platform
Defines and configures a Play Framework environment including versions of Play, Scala and Java.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.gradle.api.Named
Named.Namer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description JavaPlatformgetJavaPlatform()Version of Java Runtime to use.StringgetPlayVersion()Version of Play Framework to useScalaPlatformgetScalaPlatform()Version of Scala Runtime to use.-
Methods inherited from interface org.gradle.platform.base.Platform
getDisplayName, getName
-
-
-
-
Method Detail
-
getPlayVersion
String getPlayVersion()
Version of Play Framework to use- Returns:
- version of the Play Framework
-
getScalaPlatform
ScalaPlatform getScalaPlatform()
Version of Scala Runtime to use.- Returns:
- version of the Scala runtime
-
getJavaPlatform
JavaPlatform getJavaPlatform()
Version of Java Runtime to use.- Returns:
- version of the Java runtime
-
-