-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsettings.gradle
More file actions
33 lines (29 loc) · 848 Bytes
/
settings.gradle
File metadata and controls
33 lines (29 loc) · 848 Bytes
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
buildscript {
repositories {
mavenCentral()
gradlePluginPortal()
}
dependencies {
classpath 'com.palantir.gradle.jdks:gradle-jdks-settings:0.79.0'
classpath 'com.gradle:develocity-gradle-plugin:4.0'
}
}
apply plugin: 'com.palantir.jdks.settings'
apply plugin: 'com.gradle.develocity'
rootProject.name = 'gradle-plugin-testing-root'
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
publishing {
onlyIf {System.getenv("CI") != null}
}
}
}
include 'plugin-testing-core'
include 'gradle-plugin-testing'
include 'gradle-test-versions-config'
include 'configuration-cache-spec'
include 'gradle-plugin-testing-error-prone'
include 'gradle-plugin-testing-junit'
include 'discover-tests-cli'