-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
settings.gradle
58 lines (55 loc) · 2.22 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
46
47
48
49
50
51
52
53
54
55
56
57
58
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
* For more detailed information on multi-project builds, please refer to https://docs.gradle.org/8.10/userguide/multi_project_builds.html in the Gradle documentation.
* This project uses @Incubating APIs which are subject to change.
*/
dependencyResolutionManagement {
repositoriesMode = RepositoriesMode.FAIL_ON_PROJECT_REPOS
repositories {
maven {
url("https://ldtteam.jfrog.io/artifactory/tableau/")
name("Tableau")
}
mavenLocal()
}
}
rootProject.name = 'Tableau'
//All of the modules.
include('utilities')
project(':utilities').projectDir = file('modules/utilities')
include('local-file-configuration')
project(':local-file-configuration').projectDir = file('modules/local-file-configuration')
include('crowdin')
project(':crowdin').projectDir = file('modules/crowdin')
include('common')
project(':common').projectDir = file('modules/common')
include('shadowing')
project(':shadowing').projectDir = file('modules/shadowing')
include('jarjar')
project(':jarjar').projectDir = file('modules/jarjar')
include('curseforge')
project(':curseforge').projectDir = file('modules/curseforge')
include('neogradle')
project(':neogradle').projectDir = file('modules/neogradle')
include('parchment')
project(':parchment').projectDir = file('modules/parchment')
include('git')
project(':git').projectDir = file('modules/git')
include('sourceset-management')
project(':sourceset-management').projectDir = file('modules/sourceset-management')
include('java')
project(':java').projectDir = file('modules/java')
include('scripting')
project(':scripting').projectDir = file('modules/scripting')
include('jetbrains-annotations')
project(':jetbrains-annotations').projectDir = file('modules/jetbrains-annotations')
include('resource-processing')
project(':resource-processing').projectDir = file('modules/resource-processing')
include('maven-publishing')
project(':maven-publishing').projectDir = file('modules/maven-publishing')
include('changelog')
project(':changelog').projectDir = file('modules/changelog')
include('bootstrap')
project(':bootstrap').projectDir = file('bootstrap')