-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsettings.gradle
More file actions
41 lines (38 loc) · 957 Bytes
/
settings.gradle
File metadata and controls
41 lines (38 loc) · 957 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
34
35
36
37
38
39
40
41
/* (c) https://github.com/MontiCore/monticore */
pluginManagement {
repositories {
if(("true").equals(getProperty('useLocalRepo'))){
mavenLocal()
}
maven {
credentials.username mavenUser
credentials.password mavenPassword
url repo
}
mavenCentral()
gradlePluginPortal()
}
}
plugins {
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.9.0'
}
rootProject.name = 'cd4analysis'
include(':cdlang')
if(!hasProperty('bootstrap')) {
include(':cd2plantuml')
include(':cddiff')
include(':cd2smt')
include(':cdmerge')
include(':cdtool')
include(':language-server')
if("true".equals(getProperty('genTR'))){
include(":trafo-library")
}
include(':cdtool:cdgradle')
}
include(':cd-runtime')
include(':symtabdefinitiontool')
include(':symtabdefinitiontool:stdefgradle')
if(("true").equals(getProperty('buildIntelliJPlugin'))){
include(':language-server:cd4a-intellij-plugin')
}