Package org.gradle.jvm
Interface JvmBinarySpec
-
- All Superinterfaces:
Binary,BinarySpec,Buildable,BuildableComponentSpec,CheckableComponentSpec,ComponentSpec,ModelElement,Named
- All Known Subinterfaces:
ClassDirectoryBinarySpec,JarBinarySpec,JUnitTestSuiteBinarySpec,JvmTestSuiteBinarySpec
@Incubating public interface JvmBinarySpec extends BinarySpec
Represents a binary artifact that is the result of building a jvm component.
-
-
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 FilegetClassesDir()The classes directory for this binary.FilegetResourcesDir()The resources directory for this binary.JavaPlatformgetTargetPlatform()The target platform for this binary.JavaToolChaingetToolChain()Returns theJavaToolChainthat will be used to build this binary.voidsetClassesDir(File classesDir)Sets the classes directory for this binary.voidsetResourcesDir(File dir)Sets the resources directory for this binary.voidsetTargetPlatform(JavaPlatform platform)Sets the target platform for this binary.voidsetToolChain(JavaToolChain toolChain)Sets theJavaToolChainthat will be used to build this binary.-
Methods inherited from interface org.gradle.platform.base.Binary
getDisplayName
-
Methods inherited from interface org.gradle.platform.base.BinarySpec
getInputs, getSources, getTasks, isBuildable
-
Methods inherited from interface org.gradle.api.Buildable
getBuildDependencies
-
Methods inherited from interface org.gradle.api.BuildableComponentSpec
builtBy, getBuildTask, hasBuildDependencies, setBuildTask
-
Methods inherited from interface org.gradle.api.CheckableComponentSpec
checkedBy, getCheckTask, setCheckTask
-
Methods inherited from interface org.gradle.platform.base.ComponentSpec
getProjectPath
-
Methods inherited from interface org.gradle.model.ModelElement
getDisplayName, getName
-
-
-
-
Method Detail
-
getTargetPlatform
JavaPlatform getTargetPlatform()
The target platform for this binary.
-
setTargetPlatform
void setTargetPlatform(JavaPlatform platform)
Sets the target platform for this binary.
-
getToolChain
JavaToolChain getToolChain()
Returns theJavaToolChainthat will be used to build this binary.
-
setToolChain
void setToolChain(JavaToolChain toolChain)
Sets theJavaToolChainthat will be used to build this binary.
-
getClassesDir
File getClassesDir()
The classes directory for this binary.
-
setClassesDir
void setClassesDir(File classesDir)
Sets the classes directory for this binary.
-
getResourcesDir
File getResourcesDir()
The resources directory for this binary.
-
setResourcesDir
void setResourcesDir(File dir)
Sets the resources directory for this binary.
-
-