aboutsummaryrefslogtreecommitdiff
path: root/integration-tests/gradle/projects/it-basic-groovy/build.gradle
diff options
context:
space:
mode:
authorsebastian.sellmair <sebastian.sellmair@jetbrains.com>2020-07-22 11:12:16 +0200
committerSebastian Sellmair <34319766+sellmair@users.noreply.github.com>2020-08-14 17:51:11 +0200
commit37d12bed40edc226d96d0e1a4b28a24583ece94f (patch)
tree424ec0e7f60fc9a9c0eb9a9747a99faea714fdf9 /integration-tests/gradle/projects/it-basic-groovy/build.gradle
parenteae1ce49d18c2978b49166ea502bf2c109a85504 (diff)
downloaddokka-37d12bed40edc226d96d0e1a4b28a24583ece94f.tar.gz
dokka-37d12bed40edc226d96d0e1a4b28a24583ece94f.tar.bz2
dokka-37d12bed40edc226d96d0e1a4b28a24583ece94f.zip
DokkaConfiguration: Use `Set` instead of `List` when collections are expected to be distinct
Diffstat (limited to 'integration-tests/gradle/projects/it-basic-groovy/build.gradle')
-rw-r--r--integration-tests/gradle/projects/it-basic-groovy/build.gradle4
1 files changed, 2 insertions, 2 deletions
diff --git a/integration-tests/gradle/projects/it-basic-groovy/build.gradle b/integration-tests/gradle/projects/it-basic-groovy/build.gradle
index 405b55ed..fadf4287 100644
--- a/integration-tests/gradle/projects/it-basic-groovy/build.gradle
+++ b/integration-tests/gradle/projects/it-basic-groovy/build.gradle
@@ -15,8 +15,8 @@ dokkaHtml {
failOnWarning = false
dokkaSourceSets {
customSourceSet {
- sourceRoot { directory = file("src/main/java") }
- sourceRoot { directory = file("src/main/kotlin") }
+ sourceRoot(file("src/main/java"))
+ sourceRoot(file("src/main/kotlin"))
displayName = "custom"
reportUndocumented = true
}