forked from geogebra/geogebra
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
49 lines (39 loc) · 1 KB
/
settings.gradle.kts
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
pluginManagement {
includeBuild("build-logic")
repositories {
maven { url = uri("https://repo.geogebra.net/releases") }
gradlePluginPortal()
}
}
include("common")
include("ggbjdk")
include("common-jre")
include("xr-base")
include("desktop")
include("jogl2")
include("giac-jni")
include("web-common")
include("web")
include("web-dev")
include("renderer-base")
include("renderer-desktop")
include("renderer-web")
include("editor-base")
include("editor-desktop")
include("editor-web")
include("test")
include("keyboard-base")
include("keyboard-scientific")
include("keyboard-web")
include("carota-web")
include("gwtutil")
include("gwt-generator")
rootProject.name = "geogebra"
rootProject.children.forEach { project ->
val projectName = project.name
if (projectName.startsWith("renderer") || projectName.startsWith("editor")) {
val projectDirName = "retex/$projectName"
project.projectDir = file(projectDirName)
assert(project.projectDir.isDirectory)
}
}