-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsettings.gradle
24 lines (20 loc) · 938 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
/*
* 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.3/userguide/building_swift_projects.html in the Gradle documentation.
*/
pluginManagement {
plugins {
id "de.undercouch.download" version "${downloadPluginVersion}"
id "com.github.spotbugs-base" version "${spotbugsPluginVersion}"
id 'com.github.johnrengelman.shadow' version "${shadowJarPluginVersion}"
}
}
rootProject.name = 'graphql-schema-registry'
include ':checkstyle'
include ':schema-registry-ballerina'
include ':schema-registry-native'
project(':checkstyle').projectDir = file("build-config${File.separator}checkstyle")
project(':schema-registry-ballerina').projectDir = file("ballerina")
project(':schema-registry-native').projectDir = file("native")