first commit-ish, forked and updated for 1.21.11
Some checks failed
Compile / gradle (ubuntu-latest) (push) Has been cancelled
Some checks failed
Compile / gradle (ubuntu-latest) (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [compileOnly][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`compileOnly`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("compileOnly")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [java][org.gradle.api.plugins.JavaPluginExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`java`: org.gradle.api.plugins.JavaPluginExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("java") as org.gradle.api.plugins.JavaPluginExtension
|
||||
|
||||
/**
|
||||
* Configures the [java][org.gradle.api.plugins.JavaPluginExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`java`(configure: Action<org.gradle.api.plugins.JavaPluginExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("java", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testClasses][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`testClasses`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("testClasses")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.artifacts.VersionCatalogsExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.artifacts.VersionCatalogsExtension.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.testing.base.TestingExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.testing.base.TestingExtension.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [implementation][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`implementation`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("implementation")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [check][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`check`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("check")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [default][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`default`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("default")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [runtimeClasspath][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`runtimeClasspath`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("runtimeClasspath")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [testing][org.gradle.testing.base.TestingExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`testing`: org.gradle.testing.base.TestingExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("testing") as org.gradle.testing.base.TestingExtension
|
||||
|
||||
/**
|
||||
* Configures the [testing][org.gradle.testing.base.TestingExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`testing`(configure: Action<org.gradle.testing.base.TestingExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("testing", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [mainSourceElements][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`mainSourceElements`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("mainSourceElements")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [api][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`api`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("api")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [test][org.gradle.api.tasks.SourceSet] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.tasks.SourceSetContainer.`test`: NamedDomainObjectProvider<org.gradle.api.tasks.SourceSet>
|
||||
get() = named<org.gradle.api.tasks.SourceSet>("test")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [runtimeOnly][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`runtimeOnly`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("runtimeOnly")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testImplementation][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testImplementation`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testImplementation")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [build][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`build`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("build")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [test][org.gradle.api.tasks.testing.Test] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`test`: TaskProvider<org.gradle.api.tasks.testing.Test>
|
||||
get() = named<org.gradle.api.tasks.testing.Test>("test")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [buildNeeded][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`buildNeeded`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("buildNeeded")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testRuntimeClasspath][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testRuntimeClasspath`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testRuntimeClasspath")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [versionCatalogs][org.gradle.api.artifacts.VersionCatalogsExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`versionCatalogs`: org.gradle.api.artifacts.VersionCatalogsExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("versionCatalogs") as org.gradle.api.artifacts.VersionCatalogsExtension
|
||||
|
||||
/**
|
||||
* Configures the [versionCatalogs][org.gradle.api.artifacts.VersionCatalogsExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`versionCatalogs`(configure: Action<org.gradle.api.artifacts.VersionCatalogsExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("versionCatalogs", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testAnnotationProcessor][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testAnnotationProcessor`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testAnnotationProcessor")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [processResources][org.gradle.language.jvm.tasks.ProcessResources] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`processResources`: TaskProvider<org.gradle.language.jvm.tasks.ProcessResources>
|
||||
get() = named<org.gradle.language.jvm.tasks.ProcessResources>("processResources")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [javaToolchains][org.gradle.jvm.toolchain.JavaToolchainService] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`javaToolchains`: org.gradle.jvm.toolchain.JavaToolchainService get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("javaToolchains") as org.gradle.jvm.toolchain.JavaToolchainService
|
||||
|
||||
/**
|
||||
* Configures the [javaToolchains][org.gradle.jvm.toolchain.JavaToolchainService] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`javaToolchains`(configure: Action<org.gradle.jvm.toolchain.JavaToolchainService>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("javaToolchains", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.plugins.BasePluginExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.plugins.BasePluginExtension.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [compileOnlyApi][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`compileOnlyApi`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("compileOnlyApi")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [javadoc][org.gradle.api.tasks.javadoc.Javadoc] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`javadoc`: TaskProvider<org.gradle.api.tasks.javadoc.Javadoc>
|
||||
get() = named<org.gradle.api.tasks.javadoc.Javadoc>("javadoc")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.tasks.SourceSetContainer.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.tasks.SourceSetContainer.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [compileClasspath][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`compileClasspath`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("compileClasspath")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.plugins.JavaPluginExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.plugins.JavaPluginExtension.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [jar][org.gradle.api.tasks.bundling.Jar] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`jar`: TaskProvider<org.gradle.api.tasks.bundling.Jar>
|
||||
get() = named<org.gradle.api.tasks.bundling.Jar>("jar")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [processTestResources][org.gradle.language.jvm.tasks.ProcessResources] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`processTestResources`: TaskProvider<org.gradle.language.jvm.tasks.ProcessResources>
|
||||
get() = named<org.gradle.language.jvm.tasks.ProcessResources>("processTestResources")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [sourceSets][org.gradle.api.tasks.SourceSetContainer] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`sourceSets`: org.gradle.api.tasks.SourceSetContainer get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("sourceSets") as org.gradle.api.tasks.SourceSetContainer
|
||||
|
||||
/**
|
||||
* Configures the [sourceSets][org.gradle.api.tasks.SourceSetContainer] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`sourceSets`(configure: Action<org.gradle.api.tasks.SourceSetContainer>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("sourceSets", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.jvm.toolchain.JavaToolchainService.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.jvm.toolchain.JavaToolchainService.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [apiElements][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`apiElements`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("apiElements")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [assemble][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`assemble`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("assemble")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [annotationProcessor][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`annotationProcessor`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("annotationProcessor")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [buildDependents][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`buildDependents`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("buildDependents")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testResultsElementsForTest][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testResultsElementsForTest`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testResultsElementsForTest")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testCompileClasspath][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testCompileClasspath`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testCompileClasspath")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [main][org.gradle.api.tasks.SourceSet] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.tasks.SourceSetContainer.`main`: NamedDomainObjectProvider<org.gradle.api.tasks.SourceSet>
|
||||
get() = named<org.gradle.api.tasks.SourceSet>("main")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.artifacts.dsl.DependencyHandler.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.artifacts.dsl.DependencyHandler.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [runtimeElements][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`runtimeElements`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("runtimeElements")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testCompileOnly][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testCompileOnly`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testCompileOnly")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [archives][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`archives`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("archives")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [reporting][org.gradle.api.reporting.ReportingExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`reporting`: org.gradle.api.reporting.ReportingExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("reporting") as org.gradle.api.reporting.ReportingExtension
|
||||
|
||||
/**
|
||||
* Configures the [reporting][org.gradle.api.reporting.ReportingExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`reporting`(configure: Action<org.gradle.api.reporting.ReportingExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("reporting", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [compileJava][org.gradle.api.tasks.compile.JavaCompile] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`compileJava`: TaskProvider<org.gradle.api.tasks.compile.JavaCompile>
|
||||
get() = named<org.gradle.api.tasks.compile.JavaCompile>("compileJava")
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [testRuntimeOnly][org.gradle.api.artifacts.Configuration] element.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.NamedDomainObjectContainer<org.gradle.api.artifacts.Configuration>.`testRuntimeOnly`: NamedDomainObjectProvider<org.gradle.api.artifacts.Configuration>
|
||||
get() = named<org.gradle.api.artifacts.Configuration>("testRuntimeOnly")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.artifacts.dsl.RepositoryHandler.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.artifacts.dsl.RepositoryHandler.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [base][org.gradle.api.plugins.BasePluginExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.Project.`base`: org.gradle.api.plugins.BasePluginExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("base") as org.gradle.api.plugins.BasePluginExtension
|
||||
|
||||
/**
|
||||
* Configures the [base][org.gradle.api.plugins.BasePluginExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.Project.`base`(configure: Action<org.gradle.api.plugins.BasePluginExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("base", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [clean][org.gradle.api.tasks.Delete] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`clean`: TaskProvider<org.gradle.api.tasks.Delete>
|
||||
get() = named<org.gradle.api.tasks.Delete>("clean")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.reporting.ReportingExtension.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.reporting.ReportingExtension.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [classes][org.gradle.api.DefaultTask] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`classes`: TaskProvider<org.gradle.api.DefaultTask>
|
||||
get() = named<org.gradle.api.DefaultTask>("classes")
|
||||
|
||||
|
||||
@@ -0,0 +1,76 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Retrieves the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
val org.gradle.api.tasks.SourceSet.`ext`: org.gradle.api.plugins.ExtraPropertiesExtension get() =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.getByName("ext") as org.gradle.api.plugins.ExtraPropertiesExtension
|
||||
|
||||
/**
|
||||
* Configures the [ext][org.gradle.api.plugins.ExtraPropertiesExtension] extension.
|
||||
*/
|
||||
internal
|
||||
fun org.gradle.api.tasks.SourceSet.`ext`(configure: Action<org.gradle.api.plugins.ExtraPropertiesExtension>): Unit =
|
||||
(this as org.gradle.api.plugins.ExtensionAware).extensions.configure("ext", configure)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,68 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Provides the existing [compileTestJava][org.gradle.api.tasks.compile.JavaCompile] task.
|
||||
*/
|
||||
internal
|
||||
val TaskContainer.`compileTestJava`: TaskProvider<org.gradle.api.tasks.compile.JavaCompile>
|
||||
get() = named<org.gradle.api.tasks.compile.JavaCompile>("compileTestJava")
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`annotationProcessor`(dependencyNotation: Any): Dependency? =
|
||||
add("annotationProcessor", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`annotationProcessor`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "annotationProcessor", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`annotationProcessor`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "annotationProcessor", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`annotationProcessor`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "annotationProcessor", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`annotationProcessor`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "annotationProcessor", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`annotationProcessor`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("annotationProcessor", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`annotationProcessor`(constraintNotation: Any): DependencyConstraint =
|
||||
add("annotationProcessor", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`annotationProcessor`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("annotationProcessor", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`annotationProcessor`(artifactNotation: Any): PublishArtifact =
|
||||
add("annotationProcessor", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'annotationProcessor' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`annotationProcessor`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("annotationProcessor", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'api' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`api`(dependencyNotation: Any): Dependency? =
|
||||
add("api", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'api' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`api`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "api", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'api' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`api`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "api", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'api' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`api`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "api", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'api' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`api`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "api", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'api' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`api`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("api", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'api' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`api`(constraintNotation: Any): DependencyConstraint =
|
||||
add("api", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'api' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`api`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("api", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'api' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`api`(artifactNotation: Any): PublishArtifact =
|
||||
add("api", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'api' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`api`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("api", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'apiElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`apiElements`(dependencyNotation: Any): Dependency? =
|
||||
add("apiElements", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'apiElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`apiElements`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "apiElements", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'apiElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`apiElements`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "apiElements", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'apiElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`apiElements`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "apiElements", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'apiElements' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`apiElements`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "apiElements", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'apiElements' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`apiElements`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("apiElements", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'apiElements' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`apiElements`(constraintNotation: Any): DependencyConstraint =
|
||||
add("apiElements", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'apiElements' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`apiElements`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("apiElements", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'apiElements' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`apiElements`(artifactNotation: Any): PublishArtifact =
|
||||
add("apiElements", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'apiElements' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`apiElements`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("apiElements", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'archives' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`archives`(dependencyNotation: Any): Dependency? =
|
||||
add("archives", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'archives' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`archives`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "archives", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'archives' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`archives`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "archives", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'archives' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`archives`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "archives", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'archives' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`archives`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "archives", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'archives' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`archives`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("archives", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'archives' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`archives`(constraintNotation: Any): DependencyConstraint =
|
||||
add("archives", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'archives' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`archives`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("archives", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'archives' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`archives`(artifactNotation: Any): PublishArtifact =
|
||||
add("archives", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'archives' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`archives`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("archives", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileClasspath`(dependencyNotation: Any): Dependency? =
|
||||
add("compileClasspath", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileClasspath`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "compileClasspath", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileClasspath`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "compileClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileClasspath`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "compileClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileClasspath`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "compileClasspath", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`compileClasspath`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("compileClasspath", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`compileClasspath`(constraintNotation: Any): DependencyConstraint =
|
||||
add("compileClasspath", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`compileClasspath`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("compileClasspath", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`compileClasspath`(artifactNotation: Any): PublishArtifact =
|
||||
add("compileClasspath", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'compileClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`compileClasspath`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("compileClasspath", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnlyApi`(dependencyNotation: Any): Dependency? =
|
||||
add("compileOnlyApi", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnlyApi`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "compileOnlyApi", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnlyApi`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "compileOnlyApi", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnlyApi`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "compileOnlyApi", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnlyApi`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "compileOnlyApi", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`compileOnlyApi`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("compileOnlyApi", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`compileOnlyApi`(constraintNotation: Any): DependencyConstraint =
|
||||
add("compileOnlyApi", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`compileOnlyApi`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("compileOnlyApi", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`compileOnlyApi`(artifactNotation: Any): PublishArtifact =
|
||||
add("compileOnlyApi", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'compileOnlyApi' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`compileOnlyApi`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("compileOnlyApi", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnly`(dependencyNotation: Any): Dependency? =
|
||||
add("compileOnly", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnly`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "compileOnly", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnly`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "compileOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnly`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "compileOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`compileOnly`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "compileOnly", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`compileOnly`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("compileOnly", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`compileOnly`(constraintNotation: Any): DependencyConstraint =
|
||||
add("compileOnly", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`compileOnly`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("compileOnly", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`compileOnly`(artifactNotation: Any): PublishArtifact =
|
||||
add("compileOnly", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'compileOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`compileOnly`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("compileOnly", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'default' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`default`(dependencyNotation: Any): Dependency? =
|
||||
add("default", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'default' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`default`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "default", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'default' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`default`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "default", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'default' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`default`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "default", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'default' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`default`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "default", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'default' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`default`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("default", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'default' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`default`(constraintNotation: Any): DependencyConstraint =
|
||||
add("default", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'default' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`default`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("default", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'default' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`default`(artifactNotation: Any): PublishArtifact =
|
||||
add("default", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'default' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`default`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("default", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'implementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`implementation`(dependencyNotation: Any): Dependency? =
|
||||
add("implementation", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'implementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`implementation`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "implementation", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'implementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`implementation`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "implementation", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'implementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`implementation`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "implementation", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'implementation' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`implementation`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "implementation", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'implementation' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`implementation`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("implementation", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'implementation' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`implementation`(constraintNotation: Any): DependencyConstraint =
|
||||
add("implementation", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'implementation' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`implementation`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("implementation", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'implementation' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`implementation`(artifactNotation: Any): PublishArtifact =
|
||||
add("implementation", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'implementation' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`implementation`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("implementation", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`mainSourceElements`(dependencyNotation: Any): Dependency? =
|
||||
add("mainSourceElements", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`mainSourceElements`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "mainSourceElements", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`mainSourceElements`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "mainSourceElements", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`mainSourceElements`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "mainSourceElements", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`mainSourceElements`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "mainSourceElements", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`mainSourceElements`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("mainSourceElements", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`mainSourceElements`(constraintNotation: Any): DependencyConstraint =
|
||||
add("mainSourceElements", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`mainSourceElements`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("mainSourceElements", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`mainSourceElements`(artifactNotation: Any): PublishArtifact =
|
||||
add("mainSourceElements", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'mainSourceElements' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`mainSourceElements`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("mainSourceElements", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeClasspath`(dependencyNotation: Any): Dependency? =
|
||||
add("runtimeClasspath", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeClasspath`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "runtimeClasspath", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeClasspath`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "runtimeClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeClasspath`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "runtimeClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeClasspath`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "runtimeClasspath", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`runtimeClasspath`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("runtimeClasspath", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`runtimeClasspath`(constraintNotation: Any): DependencyConstraint =
|
||||
add("runtimeClasspath", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`runtimeClasspath`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("runtimeClasspath", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`runtimeClasspath`(artifactNotation: Any): PublishArtifact =
|
||||
add("runtimeClasspath", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'runtimeClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`runtimeClasspath`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("runtimeClasspath", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeElements`(dependencyNotation: Any): Dependency? =
|
||||
add("runtimeElements", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeElements`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "runtimeElements", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeElements`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "runtimeElements", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeElements`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "runtimeElements", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeElements`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "runtimeElements", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`runtimeElements`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("runtimeElements", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`runtimeElements`(constraintNotation: Any): DependencyConstraint =
|
||||
add("runtimeElements", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`runtimeElements`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("runtimeElements", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`runtimeElements`(artifactNotation: Any): PublishArtifact =
|
||||
add("runtimeElements", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'runtimeElements' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`runtimeElements`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("runtimeElements", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeOnly`(dependencyNotation: Any): Dependency? =
|
||||
add("runtimeOnly", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeOnly`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "runtimeOnly", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeOnly`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "runtimeOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeOnly`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "runtimeOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`runtimeOnly`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "runtimeOnly", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`runtimeOnly`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("runtimeOnly", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`runtimeOnly`(constraintNotation: Any): DependencyConstraint =
|
||||
add("runtimeOnly", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`runtimeOnly`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("runtimeOnly", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`runtimeOnly`(artifactNotation: Any): PublishArtifact =
|
||||
add("runtimeOnly", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'runtimeOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`runtimeOnly`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("runtimeOnly", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testAnnotationProcessor`(dependencyNotation: Any): Dependency? =
|
||||
add("testAnnotationProcessor", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testAnnotationProcessor`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testAnnotationProcessor", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testAnnotationProcessor`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testAnnotationProcessor", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testAnnotationProcessor`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testAnnotationProcessor", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testAnnotationProcessor`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testAnnotationProcessor", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testAnnotationProcessor`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testAnnotationProcessor", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testAnnotationProcessor`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testAnnotationProcessor", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testAnnotationProcessor`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testAnnotationProcessor", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testAnnotationProcessor`(artifactNotation: Any): PublishArtifact =
|
||||
add("testAnnotationProcessor", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testAnnotationProcessor' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testAnnotationProcessor`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testAnnotationProcessor", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileClasspath`(dependencyNotation: Any): Dependency? =
|
||||
add("testCompileClasspath", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileClasspath`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testCompileClasspath", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileClasspath`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testCompileClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileClasspath`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testCompileClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileClasspath`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testCompileClasspath", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testCompileClasspath`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testCompileClasspath", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testCompileClasspath`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testCompileClasspath", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testCompileClasspath`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testCompileClasspath", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testCompileClasspath`(artifactNotation: Any): PublishArtifact =
|
||||
add("testCompileClasspath", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testCompileClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testCompileClasspath`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testCompileClasspath", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileOnly`(dependencyNotation: Any): Dependency? =
|
||||
add("testCompileOnly", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileOnly`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testCompileOnly", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileOnly`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testCompileOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileOnly`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testCompileOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testCompileOnly`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testCompileOnly", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testCompileOnly`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testCompileOnly", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testCompileOnly`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testCompileOnly", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testCompileOnly`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testCompileOnly", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testCompileOnly`(artifactNotation: Any): PublishArtifact =
|
||||
add("testCompileOnly", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testCompileOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testCompileOnly`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testCompileOnly", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testImplementation`(dependencyNotation: Any): Dependency? =
|
||||
add("testImplementation", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testImplementation`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testImplementation", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testImplementation`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testImplementation", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testImplementation`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testImplementation", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testImplementation`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testImplementation", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testImplementation`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testImplementation", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testImplementation`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testImplementation", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testImplementation`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testImplementation", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testImplementation`(artifactNotation: Any): PublishArtifact =
|
||||
add("testImplementation", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testImplementation' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testImplementation`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testImplementation", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testResultsElementsForTest`(dependencyNotation: Any): Dependency? =
|
||||
add("testResultsElementsForTest", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testResultsElementsForTest`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testResultsElementsForTest", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testResultsElementsForTest`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testResultsElementsForTest", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testResultsElementsForTest`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testResultsElementsForTest", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testResultsElementsForTest`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testResultsElementsForTest", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testResultsElementsForTest`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testResultsElementsForTest", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testResultsElementsForTest`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testResultsElementsForTest", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testResultsElementsForTest`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testResultsElementsForTest", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testResultsElementsForTest`(artifactNotation: Any): PublishArtifact =
|
||||
add("testResultsElementsForTest", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testResultsElementsForTest' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testResultsElementsForTest`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testResultsElementsForTest", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeClasspath`(dependencyNotation: Any): Dependency? =
|
||||
add("testRuntimeClasspath", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeClasspath`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testRuntimeClasspath", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeClasspath`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testRuntimeClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeClasspath`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testRuntimeClasspath", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeClasspath`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testRuntimeClasspath", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testRuntimeClasspath`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testRuntimeClasspath", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testRuntimeClasspath`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testRuntimeClasspath", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testRuntimeClasspath`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testRuntimeClasspath", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testRuntimeClasspath`(artifactNotation: Any): PublishArtifact =
|
||||
add("testRuntimeClasspath", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testRuntimeClasspath' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testRuntimeClasspath`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testRuntimeClasspath", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,223 @@
|
||||
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.accessors._0cb39c16b209519d61ee18b0fceac003
|
||||
|
||||
|
||||
import org.gradle.api.Action
|
||||
import org.gradle.api.Incubating
|
||||
import org.gradle.api.NamedDomainObjectProvider
|
||||
import org.gradle.api.Project
|
||||
import org.gradle.api.Task
|
||||
import org.gradle.api.artifacts.Configuration
|
||||
import org.gradle.api.artifacts.ConfigurablePublishArtifact
|
||||
import org.gradle.api.artifacts.ConfigurationContainer
|
||||
import org.gradle.api.artifacts.Dependency
|
||||
import org.gradle.api.artifacts.DependencyConstraint
|
||||
import org.gradle.api.artifacts.ExternalModuleDependency
|
||||
import org.gradle.api.artifacts.ModuleDependency
|
||||
import org.gradle.api.artifacts.PublishArtifact
|
||||
import org.gradle.api.artifacts.dsl.ArtifactHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyConstraintHandler
|
||||
import org.gradle.api.artifacts.dsl.DependencyHandler
|
||||
import org.gradle.api.initialization.SharedModelDefaults
|
||||
import org.gradle.api.provider.Provider
|
||||
import org.gradle.api.provider.ProviderConvertible
|
||||
import org.gradle.api.tasks.TaskContainer
|
||||
import org.gradle.api.tasks.TaskProvider
|
||||
|
||||
import org.gradle.kotlin.dsl.*
|
||||
import org.gradle.kotlin.dsl.accessors.runtime.*
|
||||
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeOnly`(dependencyNotation: Any): Dependency? =
|
||||
add("testRuntimeOnly", dependencyNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeOnly`(
|
||||
dependencyNotation: String,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): ExternalModuleDependency = addDependencyTo(
|
||||
this, "testRuntimeOnly", dependencyNotation, dependencyConfiguration
|
||||
) as ExternalModuleDependency
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeOnly`(
|
||||
dependencyNotation: Provider<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testRuntimeOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param dependencyNotation notation for the dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeOnly`(
|
||||
dependencyNotation: ProviderConvertible<*>,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>
|
||||
): Unit = addConfiguredDependencyTo(
|
||||
this, "testRuntimeOnly", dependencyNotation, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param group the group of the module to be added as a dependency.
|
||||
* @param name the name of the module to be added as a dependency.
|
||||
* @param version the optional version of the module to be added as a dependency.
|
||||
* @param configuration the optional configuration of the module to be added as a dependency.
|
||||
* @param classifier the optional classifier of the module artifact to be added as a dependency.
|
||||
* @param ext the optional extension of the module artifact to be added as a dependency.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.create]
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyHandler.`testRuntimeOnly`(
|
||||
group: String,
|
||||
name: String,
|
||||
version: String? = null,
|
||||
configuration: String? = null,
|
||||
classifier: String? = null,
|
||||
ext: String? = null,
|
||||
dependencyConfiguration: Action<ExternalModuleDependency>? = null
|
||||
): ExternalModuleDependency = addExternalModuleDependencyTo(
|
||||
this, "testRuntimeOnly", group, name, version, configuration, classifier, ext, dependencyConfiguration
|
||||
)
|
||||
|
||||
/**
|
||||
* Adds a dependency to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param dependency dependency to be added.
|
||||
* @param dependencyConfiguration expression to use to configure the dependency.
|
||||
* @return The dependency.
|
||||
*
|
||||
* @see [DependencyHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun <T : ModuleDependency> DependencyHandler.`testRuntimeOnly`(
|
||||
dependency: T,
|
||||
dependencyConfiguration: T.() -> Unit
|
||||
): T = add("testRuntimeOnly", dependency, dependencyConfiguration)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testRuntimeOnly`(constraintNotation: Any): DependencyConstraint =
|
||||
add("testRuntimeOnly", constraintNotation)
|
||||
|
||||
/**
|
||||
* Adds a dependency constraint to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param constraintNotation the dependency constraint notation
|
||||
* @param block the block to use to configure the dependency constraint
|
||||
*
|
||||
* @return the added dependency constraint
|
||||
*
|
||||
* @see [DependencyConstraintHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun DependencyConstraintHandler.`testRuntimeOnly`(constraintNotation: Any, block: DependencyConstraint.() -> Unit): DependencyConstraint =
|
||||
add("testRuntimeOnly", constraintNotation, block)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testRuntimeOnly`(artifactNotation: Any): PublishArtifact =
|
||||
add("testRuntimeOnly", artifactNotation)
|
||||
|
||||
/**
|
||||
* Adds an artifact to the 'testRuntimeOnly' configuration.
|
||||
*
|
||||
* @param artifactNotation the group of the module to be added as a dependency.
|
||||
* @param configureAction The action to execute to configure the artifact.
|
||||
* @return The artifact.
|
||||
*
|
||||
* @see [ArtifactHandler.add]
|
||||
*/
|
||||
internal
|
||||
fun ArtifactHandler.`testRuntimeOnly`(
|
||||
artifactNotation: Any,
|
||||
configureAction: ConfigurablePublishArtifact.() -> Unit
|
||||
): PublishArtifact =
|
||||
add("testRuntimeOnly", artifactNotation, configureAction)
|
||||
|
||||
|
||||
|
||||
@@ -0,0 +1,738 @@
|
||||
/*
|
||||
* Copyright 2018 the original author or authors.
|
||||
*
|
||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||
* you may not use this file except in compliance with the License.
|
||||
* You may obtain a copy of the License at
|
||||
*
|
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
*
|
||||
* Unless required by applicable law or agreed to in writing, software
|
||||
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||
* See the License for the specific language governing permissions and
|
||||
* limitations under the License.
|
||||
*/
|
||||
|
||||
@file:Suppress(
|
||||
"unused",
|
||||
"nothing_to_inline",
|
||||
"useless_cast",
|
||||
"unchecked_cast",
|
||||
"extension_shadowed_by_member",
|
||||
"redundant_projection",
|
||||
"RemoveRedundantBackticks",
|
||||
"ObjectPropertyName",
|
||||
"deprecation",
|
||||
"detekt:all"
|
||||
)
|
||||
@file:org.gradle.api.Generated
|
||||
|
||||
package gradle.kotlin.dsl.plugins._4144c30c61a5c3537966624afd03284f
|
||||
|
||||
import org.gradle.plugin.use.PluginDependenciesSpec
|
||||
import org.gradle.plugin.use.PluginDependencySpec
|
||||
|
||||
|
||||
/**
|
||||
* The `org` plugin group.
|
||||
*/
|
||||
@org.gradle.api.Generated
|
||||
internal
|
||||
class `OrgPluginGroup`(internal val plugins: PluginDependenciesSpec)
|
||||
|
||||
|
||||
/**
|
||||
* Plugin ids starting with `org`.
|
||||
*/
|
||||
internal
|
||||
val `PluginDependenciesSpec`.`org`: `OrgPluginGroup`
|
||||
get() = `OrgPluginGroup`(this)
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle` plugin group.
|
||||
*/
|
||||
@org.gradle.api.Generated
|
||||
internal
|
||||
class `OrgGradlePluginGroup`(internal val plugins: PluginDependenciesSpec)
|
||||
|
||||
|
||||
/**
|
||||
* Plugin ids starting with `org.gradle`.
|
||||
*/
|
||||
internal
|
||||
val `OrgPluginGroup`.`gradle`: `OrgGradlePluginGroup`
|
||||
get() = `OrgGradlePluginGroup`(plugins)
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.antlr` plugin implemented by [org.gradle.api.plugins.antlr.AntlrPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`antlr`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.antlr")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.application` plugin implemented by [org.gradle.api.plugins.ApplicationPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`application`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.application")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.assembler` plugin implemented by [org.gradle.language.assembler.plugins.AssemblerPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`assembler`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.assembler")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.assembler-lang` plugin implemented by [org.gradle.language.assembler.plugins.AssemblerLangPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`assembler-lang`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.assembler-lang")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.base` plugin implemented by [org.gradle.api.plugins.BasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.binary-base` plugin implemented by [org.gradle.platform.base.plugins.BinaryBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`binary-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.binary-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.build-dashboard` plugin implemented by [org.gradle.api.reporting.plugins.BuildDashboardPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`build-dashboard`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.build-dashboard")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.build-init` plugin implemented by [org.gradle.buildinit.plugins.BuildInitPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`build-init`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.build-init")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.c` plugin implemented by [org.gradle.language.c.plugins.CPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`c`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.c")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.c-lang` plugin implemented by [org.gradle.language.c.plugins.CLangPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`c-lang`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.c-lang")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.checkstyle` plugin implemented by [org.gradle.api.plugins.quality.CheckstylePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`checkstyle`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.checkstyle")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.clang-compiler` plugin implemented by [org.gradle.nativeplatform.toolchain.plugins.ClangCompilerPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`clang-compiler`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.clang-compiler")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.codenarc` plugin implemented by [org.gradle.api.plugins.quality.CodeNarcPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`codenarc`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.codenarc")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.component-base` plugin implemented by [org.gradle.platform.base.plugins.ComponentBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`component-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.component-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.component-model-base` plugin implemented by [org.gradle.language.base.plugins.ComponentModelBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`component-model-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.component-model-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.component-reporting-tasks` plugin implemented by [org.gradle.api.plugins.internal.ComponentReportingTasksPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`component-reporting-tasks`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.component-reporting-tasks")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cpp` plugin implemented by [org.gradle.language.cpp.plugins.CppPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cpp`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cpp")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cpp-application` plugin implemented by [org.gradle.language.cpp.plugins.CppApplicationPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cpp-application`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cpp-application")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cpp-lang` plugin implemented by [org.gradle.language.cpp.plugins.CppLangPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cpp-lang`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cpp-lang")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cpp-library` plugin implemented by [org.gradle.language.cpp.plugins.CppLibraryPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cpp-library`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cpp-library")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cpp-unit-test` plugin implemented by [org.gradle.nativeplatform.test.cpp.plugins.CppUnitTestPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cpp-unit-test`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cpp-unit-test")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cunit` plugin implemented by [org.gradle.nativeplatform.test.cunit.plugins.CUnitConventionPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cunit`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cunit")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.cunit-test-suite` plugin implemented by [org.gradle.nativeplatform.test.cunit.plugins.CUnitPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`cunit-test-suite`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.cunit-test-suite")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.distribution` plugin implemented by [org.gradle.api.distribution.plugins.DistributionPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`distribution`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.distribution")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.distribution-base` plugin implemented by [org.gradle.api.distribution.plugins.DistributionBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`distribution-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.distribution-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.ear` plugin implemented by [org.gradle.plugins.ear.EarPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`ear`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.ear")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.eclipse` plugin implemented by [org.gradle.plugins.ide.eclipse.EclipsePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`eclipse`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.eclipse")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.eclipse-wtp` plugin implemented by [org.gradle.plugins.ide.eclipse.EclipseWtpPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`eclipse-wtp`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.eclipse-wtp")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.gcc-compiler` plugin implemented by [org.gradle.nativeplatform.toolchain.plugins.GccCompilerPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`gcc-compiler`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.gcc-compiler")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.google-test` plugin implemented by [org.gradle.nativeplatform.test.googletest.plugins.GoogleTestConventionPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`google-test`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.google-test")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.google-test-test-suite` plugin implemented by [org.gradle.nativeplatform.test.googletest.plugins.GoogleTestPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`google-test-test-suite`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.google-test-test-suite")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.groovy` plugin implemented by [org.gradle.api.plugins.GroovyPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`groovy`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.groovy")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.groovy-base` plugin implemented by [org.gradle.api.plugins.GroovyBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`groovy-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.groovy-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.groovy-gradle-plugin` plugin implemented by [org.gradle.plugin.devel.internal.precompiled.PrecompiledGroovyPluginsPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`groovy-gradle-plugin`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.groovy-gradle-plugin")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.help-tasks` plugin implemented by [org.gradle.api.plugins.HelpTasksPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`help-tasks`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.help-tasks")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.idea` plugin implemented by [org.gradle.plugins.ide.idea.IdeaPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`idea`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.idea")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.ivy-publish` plugin implemented by [org.gradle.api.publish.ivy.plugins.IvyPublishPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`ivy-publish`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.ivy-publish")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.jacoco` plugin implemented by [org.gradle.testing.jacoco.plugins.JacocoPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`jacoco`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.jacoco")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.jacoco-report-aggregation` plugin implemented by [org.gradle.testing.jacoco.plugins.JacocoReportAggregationPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`jacoco-report-aggregation`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.jacoco-report-aggregation")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java` plugin implemented by [org.gradle.api.plugins.JavaPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java-base` plugin implemented by [org.gradle.api.plugins.JavaBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java-gradle-plugin` plugin implemented by [org.gradle.plugin.devel.plugins.JavaGradlePluginPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java-gradle-plugin`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java-gradle-plugin")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java-library` plugin implemented by [org.gradle.api.plugins.JavaLibraryPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java-library`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java-library")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java-library-distribution` plugin implemented by [org.gradle.api.plugins.JavaLibraryDistributionPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java-library-distribution`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java-library-distribution")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java-platform` plugin implemented by [org.gradle.api.plugins.JavaPlatformPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java-platform`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java-platform")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.java-test-fixtures` plugin implemented by [org.gradle.api.plugins.JavaTestFixturesPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`java-test-fixtures`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.java-test-fixtures")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.jvm-ecosystem` plugin implemented by [org.gradle.api.plugins.JvmEcosystemPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`jvm-ecosystem`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.jvm-ecosystem")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.jvm-test-suite` plugin implemented by [org.gradle.api.plugins.JvmTestSuitePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`jvm-test-suite`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.jvm-test-suite")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.jvm-toolchain-management` plugin implemented by [org.gradle.api.plugins.JvmToolchainManagementPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`jvm-toolchain-management`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.jvm-toolchain-management")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.jvm-toolchains` plugin implemented by [org.gradle.api.plugins.JvmToolchainsPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`jvm-toolchains`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.jvm-toolchains")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.language-base` plugin implemented by [org.gradle.language.base.plugins.LanguageBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`language-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.language-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.lifecycle-base` plugin implemented by [org.gradle.language.base.plugins.LifecycleBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`lifecycle-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.lifecycle-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.maven-publish` plugin implemented by [org.gradle.api.publish.maven.plugins.MavenPublishPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`maven-publish`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.maven-publish")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.microsoft-visual-cpp-compiler` plugin implemented by [org.gradle.nativeplatform.toolchain.plugins.MicrosoftVisualCppCompilerPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`microsoft-visual-cpp-compiler`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.microsoft-visual-cpp-compiler")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.model-reporting-tasks` plugin implemented by [org.gradle.api.plugins.internal.ModelReportingTasksPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`model-reporting-tasks`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.model-reporting-tasks")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.native-component` plugin implemented by [org.gradle.nativeplatform.plugins.NativeComponentPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`native-component`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.native-component")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.native-component-model` plugin implemented by [org.gradle.nativeplatform.plugins.NativeComponentModelPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`native-component-model`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.native-component-model")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.objective-c` plugin implemented by [org.gradle.language.objectivec.plugins.ObjectiveCPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`objective-c`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.objective-c")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.objective-c-lang` plugin implemented by [org.gradle.language.objectivec.plugins.ObjectiveCLangPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`objective-c-lang`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.objective-c-lang")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.objective-cpp` plugin implemented by [org.gradle.language.objectivecpp.plugins.ObjectiveCppPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`objective-cpp`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.objective-cpp")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.objective-cpp-lang` plugin implemented by [org.gradle.language.objectivecpp.plugins.ObjectiveCppLangPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`objective-cpp-lang`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.objective-cpp-lang")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.pmd` plugin implemented by [org.gradle.api.plugins.quality.PmdPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`pmd`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.pmd")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.project-report` plugin implemented by [org.gradle.api.plugins.ProjectReportsPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`project-report`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.project-report")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.project-reports` plugin implemented by [org.gradle.api.plugins.ProjectReportsPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`project-reports`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.project-reports")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.publishing` plugin implemented by [org.gradle.api.publish.plugins.PublishingPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`publishing`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.publishing")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.reporting-base` plugin implemented by [org.gradle.api.plugins.ReportingBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`reporting-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.reporting-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.scala` plugin implemented by [org.gradle.api.plugins.scala.ScalaPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`scala`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.scala")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.scala-base` plugin implemented by [org.gradle.api.plugins.scala.ScalaBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`scala-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.scala-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.signing` plugin implemented by [org.gradle.plugins.signing.SigningPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`signing`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.signing")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.software-reporting-tasks` plugin implemented by [org.gradle.api.plugins.SoftwareReportingTasksPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`software-reporting-tasks`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.software-reporting-tasks")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.standard-tool-chains` plugin implemented by [org.gradle.nativeplatform.toolchain.internal.plugins.StandardToolChainsPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`standard-tool-chains`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.standard-tool-chains")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.swift-application` plugin implemented by [org.gradle.language.swift.plugins.SwiftApplicationPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`swift-application`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.swift-application")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.swift-library` plugin implemented by [org.gradle.language.swift.plugins.SwiftLibraryPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`swift-library`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.swift-library")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.swiftpm-export` plugin implemented by [org.gradle.swiftpm.plugins.SwiftPackageManagerExportPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`swiftpm-export`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.swiftpm-export")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.test-report-aggregation` plugin implemented by [org.gradle.api.plugins.TestReportAggregationPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`test-report-aggregation`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.test-report-aggregation")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.test-suite-base` plugin implemented by [org.gradle.testing.base.plugins.TestSuiteBasePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`test-suite-base`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.test-suite-base")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.version-catalog` plugin implemented by [org.gradle.api.plugins.catalog.VersionCatalogPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`version-catalog`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.version-catalog")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.visual-studio` plugin implemented by [org.gradle.ide.visualstudio.plugins.VisualStudioPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`visual-studio`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.visual-studio")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.war` plugin implemented by [org.gradle.api.plugins.WarPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`war`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.war")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.windows-resource-script` plugin implemented by [org.gradle.language.rc.plugins.WindowsResourceScriptPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`windows-resource-script`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.windows-resource-script")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.windows-resources` plugin implemented by [org.gradle.language.rc.plugins.WindowsResourcesPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`windows-resources`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.windows-resources")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.wrapper` plugin implemented by [org.gradle.buildinit.plugins.WrapperPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`wrapper`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.wrapper")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.xcode` plugin implemented by [org.gradle.ide.xcode.plugins.XcodePlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`xcode`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.xcode")
|
||||
|
||||
|
||||
/**
|
||||
* The `org.gradle.xctest` plugin implemented by [org.gradle.nativeplatform.test.xctest.plugins.XCTestConventionPlugin].
|
||||
*/
|
||||
internal
|
||||
val `OrgGradlePluginGroup`.`xctest`: PluginDependencySpec
|
||||
get() = plugins.id("org.gradle.xctest")
|
||||
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Precompiled [net.nuggetmc.java-conventions.gradle.kts][Net_nuggetmc_java_conventions_gradle] script plugin.
|
||||
*
|
||||
* @see Net_nuggetmc_java_conventions_gradle
|
||||
*/
|
||||
public
|
||||
class Net_nuggetmc_javaConventionsPlugin : org.gradle.api.Plugin<org.gradle.api.Project> {
|
||||
override fun apply(target: org.gradle.api.Project) {
|
||||
try {
|
||||
Class
|
||||
.forName("Net_nuggetmc_java_conventions_gradle")
|
||||
.getDeclaredConstructor(org.gradle.api.Project::class.java, org.gradle.api.Project::class.java)
|
||||
.newInstance(target, target)
|
||||
} catch (e: java.lang.reflect.InvocationTargetException) {
|
||||
throw e.targetException
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user