Source set for Solidity classes in a Gradle project.
| Type | Name and description |
|---|---|
java.lang.String |
NAME |
| Type Params | Return Type | Name and description |
|---|---|---|
|
org.gradle.api.file.SourceDirectorySet |
getAllSolidity()All Solidity source for this source set. |
|
org.gradle.api.file.SourceDirectorySet |
getSolidity()Returns the source to be compiled by the Solidity compiler for this source set. |
|
SoliditySourceSet |
solidity(groovy.lang.Closure configureClosure)Configures the Solidity source for this set. |
|
SoliditySourceSet |
solidity(org.gradle.api.Action<? super org.gradle.api.file.SourceDirectorySet> configureAction)Configures the Solidity source for this set. |
All Solidity source for this source set.
Returns the source to be compiled by the Solidity compiler for this source set. This may contain both Java and Solidity source files.
Configures the Solidity source for this set.
The given closure is used to configure the org.gradle.api.file.SourceDirectorySet which contains the Solidity source.
configureClosure - The closure to use to configure the Solidity source.Configures the Solidity source for this set.
The given action is used to configure the org.gradle.api.file.SourceDirectorySet which contains the Solidity source.
configureAction - The action to use to configure the Solidity source.