toggle menu
hubdle
0.6.2-SNAPSHOT
jvm
switch theme
search in API
hubdle-gradle-plugin
/
com.javiersc.hubdle.project.extensions.apis
/
HubdleSourceSetConfigurableExtension
Hubdle
Source
Set
Configurable
Extension
abstract
class
HubdleSourceSetConfigurableExtension
<
T
>
(
project
:
Project
)
:
HubdleMinimalSourceSetConfigurableExtension
<
T
>
Inheritors
HubdleKotlinSourceSetConfigurableExtension
Members
Constructors
Hubdle
Source
Set
Configurable
Extension
Link copied to clipboard
constructor
(
project
:
Project
)
Properties
is
Enabled
Link copied to clipboard
abstract
val
isEnabled
:
Property
<
Boolean
>
is
Test
Fixtures
Enabled
Link copied to clipboard
val
isTestFixturesEnabled
:
Property
<
Boolean
>
is
Test
Functional
Enabled
Link copied to clipboard
val
isTestFunctionalEnabled
:
Property
<
Boolean
>
is
Test
Integration
Enabled
Link copied to clipboard
val
isTestIntegrationEnabled
:
Property
<
Boolean
>
main
Link copied to clipboard
abstract
val
main
:
NamedDomainObjectProvider
<
T
>
project
Link copied to clipboard
open
override
val
project
:
Project
test
Link copied to clipboard
abstract
val
test
:
NamedDomainObjectProvider
<
T
>
test
Fixtures
Link copied to clipboard
abstract
val
testFixtures
:
NamedDomainObjectProvider
<
T
>
test
Functional
Link copied to clipboard
abstract
val
testFunctional
:
NamedDomainObjectProvider
<
T
>
test
Integration
Link copied to clipboard
abstract
val
testIntegration
:
NamedDomainObjectProvider
<
T
>
Functions
enabled
Link copied to clipboard
open
fun
enabled
(
value
:
Boolean
=
true
)
open
fun
enabled
(
value
:
Provider
<
Boolean
>
=
project.provider { true }
)
main
Link copied to clipboard
fun
main
(
action
:
Action
<
T
>
)
source
Set
Link copied to clipboard
fun
sourceSet
(
name
:
String
,
action
:
Action
<
KotlinSourceSet
>
)
test
Link copied to clipboard
fun
test
(
action
:
Action
<
T
>
)
test
Fixtures
Link copied to clipboard
fun
testFixtures
(
action
:
Action
<
T
>
=
Action {}
)
test
Functional
Link copied to clipboard
fun
testFunctional
(
action
:
Action
<
T
>
=
Action {}
)
test
Integration
Link copied to clipboard
fun
testIntegration
(
action
:
Action
<
T
>
=
Action {}
)
with
Plugin
Link copied to clipboard
open
fun
withPlugin
(
pluginId
:
PluginId
,
action
:
Action
<
AppliedPlugin
>
)
open
fun
withPlugin
(
pluginId
:
String
,
action
:
Action
<
AppliedPlugin
>
)
with
Plugins
Link copied to clipboard
open
fun
withPlugins
(
vararg
pluginIds
:
String
,
action
:
Project
.
(
)
->
Unit
)