Movatterモバイル変換


[0]ホーム

URL:


ScalaCompile

Table of Contents

Properties
Methods
Script blocks
Property details
Method details
API Documentation:ScalaCompile

Compiles Scala source files, and optionally, Java source files.

Properties

PropertyDescription
classpath

The classpath to use to compile the source files.

destinationDir

The directory to generate the.class files into.

excludes

The set of exclude patterns.

includes

The set of include patterns.

options
Incubating

The Java compilation options.

scalaClasspath

The classpath to use to load the Scala compiler.

scalaCompileOptions
Incubating

The Scala compilation options.

source
Incubating

The source for this task, after the include and exclude patterns have been applied. Ignores source files which do not exist.

sourceCompatibility

The Java language level to use to compile the source files.

targetCompatibility

The target JVM to generate the.class files for.

Methods

MethodDescription
exclude(excludeSpec)

Adds an exclude spec. This method may be called multiple times to append new specs.The given closure is passed aFileTreeElement as its parameter. The closure should return true or false. Example:

exclude(excludes)

Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

exclude(excludes)

Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

exclude(excludeSpec)

Adds an exclude spec. This method may be called multiple times to append new specs.If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

include(includeSpec)

Adds an include spec. This method may be called multiple times to append new specs. The given closure is passed aFileTreeElement as its parameter.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns or specs to be included.

include(includes)

Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns to be processed.

include(includes)

Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns to be processed.

include(includeSpec)

Adds an include spec. This method may be called multiple times to append new specs.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns or specs to be included.

source(sources)

Adds some source to this task. The given source objects will be evaluated as perProject.files(java.lang.Object[]).

Script blocks

No script blocks

Property details

The classpath to use to compile the source files.

Default withscala plugin:
sourceSet.compileClasspath

FiledestinationDir

The directory to generate the.class files into.

Default withscala plugin:
sourceSet.sourceDirectorySet.outputDir

Set<String>excludes

The set of exclude patterns.

Set<String>includes

The set of include patterns.

CompileOptionsoptions (read-only)

Note: This property isincubating and may change in a future version of Gradle.

The Java compilation options.

FileCollectionscalaClasspath

The classpath to use to load the Scala compiler.

Default withscala plugin:
scala-compiler dependency matching thescala-library version found onclasspath

BaseScalaCompileOptionsscalaCompileOptions (read-only)

Note: This property isincubating and may change in a future version of Gradle.

The Scala compilation options.

FileTreesource (read-only)

Note: This property isincubating and may change in a future version of Gradle.

The source for this task, after the include and exclude patterns have been applied. Ignores source files which do not exist.

Default withscala plugin:
sourceSet.scala

StringsourceCompatibility

The Java language level to use to compile the source files.

Default withscala plugin:
project.sourceCompatibility

StringtargetCompatibility

The target JVM to generate the.class files for.

Default withscala plugin:
project.targetCompatibility

Method details

SourceTaskexclude(Closure excludeSpec)

Adds an exclude spec. This method may be called multiple times to append new specs.The given closure is passed aFileTreeElement as its parameter. The closure should return true or false. Example:

copySpec {  from'source'  into'destination'//an example of excluding files from certain configuration:  exclude { it.file in configurations.someConf.files }}

If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

SourceTaskexclude(Iterable<String> excludes)

Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

SourceTaskexclude(String... excludes)

Adds an ANT style exclude pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

SourceTaskexclude(Spec<FileTreeElement> excludeSpec)

Adds an exclude spec. This method may be called multiple times to append new specs.If excludes are not provided, then no files will be excluded. If excludes are provided, then files must not matchany exclude pattern to be processed.

SourceTaskinclude(Closure includeSpec)

Adds an include spec. This method may be called multiple times to append new specs. The given closure is passed aFileTreeElement as its parameter.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns or specs to be included.

SourceTaskinclude(Iterable<String> includes)

Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns to be processed.

SourceTaskinclude(String... includes)

Adds an ANT style include pattern. This method may be called multiple times to append new patterns and multiplepatterns may be specified in a single call.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns to be processed.

SourceTaskinclude(Spec<FileTreeElement> includeSpec)

Adds an include spec. This method may be called multiple times to append new specs.If includes are not provided, then all files in this container will be included. If includes are provided, then afile must match at least one of the include patterns or specs to be included.

SourceTasksource(Object... sources)

Adds some source to this task. The given source objects will be evaluated as perProject.files(java.lang.Object[]).


[8]ページ先頭

©2009-2025 Movatter.jp