@Incubating public interface PlayApplicationSpec extends PlatformAwareComponentSpec
Named.Namer
Modifier and Type | Method and Description |
---|---|
void |
platform(Object platformRequirements)
Specifies a
PlayPlatform with a given set of requirements that this
component should be built be for. |
targetPlatform
binaries, getBinaries, getDisplayName, getProjectPath, getSource, getSources, sources
void platform(Object platformRequirements)
PlayPlatform
with a given set of requirements that this
component should be built be for. Can accept a map of play, scala and/or java requirements or a string
representation of the desired play platform.
model { components { play { platform 'play-2.3.9' platform play: '2.3.2' platform play: '2.3.6', scala: '2.10' platform play: '2.3.7', scala: '2.11', java: '1.8' } } }
platformRequirements
- Map of Play requirements or the name of an Play platform.