-
-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathsettings.gradle
45 lines (41 loc) · 1.45 KB
/
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
39
40
41
42
43
44
45
pluginManagement {
repositories {
// jhipster-needle-gradle-plugin-management-repositories - JHipster will add additional entries here
}
buildscript {
repositories {
mavenCentral()
}
dependencies {
classpath group: 'org.liquibase', name: 'liquibase-core', version: "${liquibaseVersion}"
}
}
plugins {
id 'com.gorylenko.gradle-git-properties' version "${gitPropertiesPluginVersion}"
id "com.gradle.enterprise" version "${gradleEnterprisePluginVersion}"
id "com.gradle.common-custom-user-data-gradle-plugin" version "${gradleCommonCustomUserDataPluginVersion}"
id "org.liquibase.gradle" version "${liquibasePluginVersion}"
// jhipster-needle-gradle-plugin-management-plugins - JHipster will add additional entries here
}
}
plugins {
id 'com.gradle.enterprise'
id 'com.gradle.common-custom-user-data-gradle-plugin'
}
gradleEnterprise {
server = "https://ge.jhipster.tech"
buildScan {
captureTaskInputFiles = true
uploadInBackground = System.getenv("CI") == null // adjust to your CI provider
publishAlways()
}
}
buildCache {
local { enabled = true }
remote(HttpBuildCache) {
push = true
enabled = false // Disabled as this might not always desired
url = 'https://ge.jhipster.tech/cache/' // note the trailing slash!
}
}
rootProject.name = "jhipster-gradle-sample-application"