blob: 62cd5860f7ee98ac9b2aac7baed3e7acf78102ee (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
@file:Suppress("FunctionName")
package org.jetbrains.dokka.dokkatoo.utils
import org.jetbrains.dokka.dokkatoo.dokka.parameters.DokkaPackageOptionsSpec
import org.jetbrains.dokka.dokkatoo.dokka.parameters.DokkaSourceLinkSpec
import org.jetbrains.dokka.dokkatoo.dokka.parameters.DokkaSourceSetSpec
import org.gradle.api.DomainObjectCollection
import org.gradle.api.NamedDomainObjectContainer
import org.gradle.api.NamedDomainObjectProvider
import org.gradle.api.Project
import org.gradle.api.artifacts.Configuration
import org.gradle.api.artifacts.DependencySet
/**
* Workarounds because `SamWithReceiver` not working in test sources
* https://youtrack.jetbrains.com/issue/KTIJ-14684
*
* The `SamWithReceiver` plugin is automatically applied by the `kotlin-dsl` plugin.
* It converts all [org.gradle.api.Action] so the parameter is the receiver:
*
* ```
* // with SamWithReceiver ✅
* tasks.configureEach {
* val task: Task = this
* }
*
* // without SamWithReceiver
* tasks.configureEach { it ->
* val task: Task = it
* }
* ```
*
* This is nice because it means that the Dokka Gradle Plugin more closely matches `build.gradle.kts` files.
*
* However, [IntelliJ is bugged](https://youtrack.jetbrains.com/issue/KTIJ-14684) and doesn't
* acknowledge that `SamWithReceiver` has been applied in test sources. The code works and compiles,
* but IntelliJ shows red errors.
*
* These functions are workarounds, and should be removed ASAP.
*/
@Suppress("unused")
private object Explain
fun Project.subprojects_(configure: Project.() -> Unit) =
subprojects(configure)
@Suppress("SpellCheckingInspection")
fun Project.allprojects_(configure: Project.() -> Unit) =
allprojects(configure)
fun <T> DomainObjectCollection<T>.configureEach_(configure: T.() -> Unit) =
configureEach(configure)
fun <T> DomainObjectCollection<T>.all_(configure: T.() -> Unit) =
all(configure)
fun Configuration.withDependencies_(action: DependencySet.() -> Unit): Configuration =
withDependencies(action)
fun <T> NamedDomainObjectContainer<T>.create_(name: String, configure: T.() -> Unit = {}): T =
create(name, configure)
fun <T> NamedDomainObjectContainer<T>.register_(
name: String,
configure: T.() -> Unit
): NamedDomainObjectProvider<T> =
register(name, configure)
fun DokkaSourceSetSpec.sourceLink_(
action: DokkaSourceLinkSpec.() -> Unit
): Unit = sourceLink(action)
fun DokkaSourceSetSpec.perPackageOption_(
action: DokkaPackageOptionsSpec.() -> Unit
): Unit = perPackageOption(action)
|