Package org.gradle.play
Interface PlayApplicationBinarySpec
- All Superinterfaces:
ApplicationBinarySpec,Binary,BinarySpec,Buildable,BuildableComponentSpec,CheckableComponentSpec,ComponentSpec,ModelElement,Named
Represents a binary artifact that is the result of building a Play application software component.
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.gradle.api.Named
Named.Namer -
Method Summary
Modifier and TypeMethodDescriptionThe application that this binary belongs to.A buildable object representing the public assets that will be included in the assets jar file.The assets jar file produced for this binary.A buildable object representing the class files and resources that will be included in the application jar file.The application jar file produced for this binary.The PlayPlatform this binary is built for.Methods inherited from interface org.gradle.platform.base.Binary
getDisplayNameMethods inherited from interface org.gradle.platform.base.BinarySpec
getInputs, getSources, getTasks, isBuildableMethods inherited from interface org.gradle.api.Buildable
getBuildDependenciesMethods inherited from interface org.gradle.api.BuildableComponentSpec
builtBy, getBuildTask, hasBuildDependencies, setBuildTaskMethods inherited from interface org.gradle.api.CheckableComponentSpec
checkedBy, getCheckTask, setCheckTaskMethods inherited from interface org.gradle.platform.base.ComponentSpec
getProjectPathMethods inherited from interface org.gradle.model.ModelElement
getDisplayName, getName
-
Method Details
-
getApplication
PlayApplicationSpec getApplication()The application that this binary belongs to.- Specified by:
getApplicationin interfaceApplicationBinarySpec
-
getTargetPlatform
PlayPlatform getTargetPlatform()The PlayPlatform this binary is built for.- Returns:
- platform for this binary
-
getToolChain
PlayToolChain getToolChain() -
getJarFile
File getJarFile()The application jar file produced for this binary.- Returns:
- the application jar file
-
getAssetsJarFile
File getAssetsJarFile()The assets jar file produced for this binary.- Returns:
- the assets jar file
-
getClasses
JvmClasses getClasses()A buildable object representing the class files and resources that will be included in the application jar file.- Returns:
- the JvmClasses for this binary
-
getAssets
PublicAssets getAssets()A buildable object representing the public assets that will be included in the assets jar file.- Returns:
- the PublicAssets for this binary
-
getGeneratedScala
Map<LanguageSourceSet,ScalaLanguageSourceSet> getGeneratedScala() -
getGeneratedJavaScript
Map<LanguageSourceSet,JavaScriptSourceSet> getGeneratedJavaScript()
-