-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsettings.gradle
29 lines (24 loc) · 877 Bytes
/
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
/*
* 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.2/userguide/multi_project_builds.html in the Gradle documentation.
* This project uses @Incubating APIs which are subject to change.
*/
pluginManagement {
// Include 'plugins build' to define convention plugins.
includeBuild('build-logic')
}
plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
// - https://github.com/gradle/foojay-toolchains
id 'org.gradle.toolchains.foojay-resolver-convention' version '0.8.0'
}
rootProject.name = 'Enrollium'
// Core libraries
include('lib')
include('rpc')
include('design-system')
// Main applications
include('client')
include('server')