-
Notifications
You must be signed in to change notification settings - Fork 27
/
settings.gradle
38 lines (32 loc) · 858 Bytes
/
settings.gradle
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
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
// For Spoon snapshot, until 2.0.0 is released
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}
plugins {
id 'com.gradle.develocity' version '3.18.2'
}
develocity {
buildScan {
termsOfUseUrl = 'https://gradle.com/terms-of-service'
termsOfUseAgree = 'yes'
def isCI = System.getenv('CI') != null
publishing.onlyIf { isCI }
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
gradlePluginPortal()
google()
mavenCentral()
// For Spoon snapshot, until 2.0.0 is released
maven { url 'https://oss.sonatype.org/content/repositories/snapshots' }
}
}
rootProject.name = 'gradle-spoon-plugin'
include ':gradle-spoon-plugin'