-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsettings.gradle
More file actions
26 lines (22 loc) · 919 Bytes
/
settings.gradle
File metadata and controls
26 lines (22 loc) · 919 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
/*
* 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/9.3.1/userguide/multi_project_builds.html in the Gradle documentation.
*/
pluginManagement {
plugins {
id 'com.vanniktech.maven.publish' version '0.36.0'
}
}
plugins {
// Apply the foojay-resolver plugin to allow automatic download of JDKs
id 'org.gradle.toolchains.foojay-resolver-convention' version '1.0.0'
}
rootProject.name = 'rstmdb-java'
include('client')
include('testcontainer')
include('examples-basic', 'examples-streaming', 'examples-batch')
project(':examples-basic').projectDir = file('examples/basic')
project(':examples-streaming').projectDir = file('examples/streaming')
project(':examples-batch').projectDir = file('examples/batch')