forked from GregTechCEu/Buildscripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
41 lines (37 loc) · 1.21 KB
/
Copy pathsettings.gradle
File metadata and controls
41 lines (37 loc) · 1.21 KB
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
pluginManagement {
repositories {
maven {
// RetroFuturaGradle
name = 'GTNH Maven'
url = 'https://nexus.gtnewhorizons.com/repository/public/'
//noinspection GroovyAssignabilityCheck
mavenContent {
includeGroup 'com.gtnewhorizons'
includeGroup 'com.gtnewhorizons.retrofuturagradle'
}
}
gradlePluginPortal()
mavenCentral()
mavenLocal()
}
}
plugins {
id 'com.diffplug.blowdryerSetup' version '1.7.1'
// Automatic toolchain provisioning
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
id 'com.gradle.develocity' version '3.19'
}
develocity {
buildScan {
termsOfUseUrl = "https://gradle.com/help/legal-terms-of-use"
termsOfUseAgree = "yes"
// Only publish a build scan in CI; locally the terms are still accepted
// so the daemon never blocks on the interactive "Do you accept?" prompt.
publishing.onlyIf { System.getenv("CI") != null }
}
}
blowdryerSetup {
repoSubfolder 'spotless'
github 'GTModpackTeam/Buildscripts', 'tag', 'v1.0.4'
}
rootProject.name = rootProject.projectDir.getName()