forked from metaborg/pie
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsettings.gradle.kts
35 lines (31 loc) · 1.03 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
rootProject.name = "pie"
pluginManagement {
repositories {
maven("https://artifacts.metaborg.org/content/groups/public/")
}
}
if(org.gradle.util.VersionNumber.parse(gradle.gradleVersion).major < 6) {
enableFeaturePreview("GRADLE_METADATA")
}
fun includeProject(path: String, id: String = "pie.${path.replace('/', '.')}") {
include(id)
project(":$id").projectDir = file(path)
}
includeProject("depconstraints")
includeProject("api")
includeProject("api.test")
includeProject("runtime")
includeProject("runtime.test")
includeProject("share.coroutine")
includeProject("store.lmdb")
includeProject("taskdefs.guice")
includeProject("dagger")
includeProject("lang")
includeProject("lang.test")
includeProject("lang.runtime.kotlin")
includeProject("lang.runtime.java")
//includeProject("lang.javainstratego") // Disabled: we're not building a concrete syntax parse table right now.
includeProject("example/copyfile")
includeProject("example/helloworld.java")
includeProject("example/helloworld.kotlin")
includeProject("example/playground")