-
-
Notifications
You must be signed in to change notification settings - Fork 717
/
settings.gradle.kts
64 lines (59 loc) · 1.73 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
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
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
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
mavenLocal()
mavenCentral()
ivy {
name = "Node.js"
setUrl("https://nodejs.org/dist")
patternLayout {
artifact("v[revision]/[artifact](-v[revision]-[classifier]).[ext]")
}
metadataSources {
artifact()
}
content {
includeModule("org.nodejs", "node")
}
isAllowInsecureProtocol = false
}
}
}
pluginManagement {
repositories {
mavenCentral()
gradlePluginPortal()
}
plugins {
id("com.bmuschko.docker-remote-api") version "9.4.0"
id("com.diffplug.spotless") version "6.25.0"
id("com.github.node-gradle.node") version "7.1.0"
id("com.gorylenko.gradle-git-properties") version "2.4.2"
id("com.netflix.nebula.ospackage") version "11.10.0"
id("io.github.gradle-nexus.publish-plugin") version "2.0.0"
id("io.spring.dependency-management") version "1.1.6"
id("org.owasp.dependencycheck") version "11.0.0"
id("com.github.spotbugs") version "6.0.26"
}
}