forked from allure-framework/allure2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle.kts
38 lines (34 loc) · 1.07 KB
/
settings.gradle.kts
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
rootProject.name = "allure2"
include("allure-jira-commons")
include("allure-plugin-api")
include("allure-generator")
include("allure-commandline")
val plugins = listOf(
"behaviors-plugin",
"custom-logo-plugin",
"jira-plugin",
"junit-xml-plugin",
"packages-plugin",
"screen-diff-plugin",
"trx-plugin",
"xctest-plugin",
"xray-plugin",
"xunit-xml-plugin"
)
plugins.forEach {
include("plugins/$it")
project(":plugins/$it").name = it
}
pluginManagement {
plugins {
id("com.bmuschko.docker-remote-api") version "9.4.0"
id("com.diffplug.spotless") version "6.23.3"
id("com.github.node-gradle.node") version "7.0.1"
id("com.gorylenko.gradle-git-properties") version "2.4.1"
id("com.netflix.nebula.ospackage") version "11.6.0"
id("io.github.gradle-nexus.publish-plugin") version "1.3.0"
id("io.spring.dependency-management") version "1.1.4"
id("org.owasp.dependencycheck") version "9.0.8"
id("ru.vyarus.quality") version "4.9.0"
}
}