-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsettings.gradle
30 lines (26 loc) · 1.38 KB
/
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
30
/*
* This file was generated by the Gradle 'init' task.
*
* The settings file is used to specify which projects to include in your build.
*
* Detailed information about configuring a multi-project build in Gradle can be found
* in the user manual at https://docs.gradle.org/5.4/userguide/multi_project_builds.html
*/
pluginManagement {
includeBuild 'graphql-gradle-plugin'
includeBuild 'graphql-gradle-plugin3'
}
rootProject.name = 'graphql-gradle-plugin-project'
// graphql-gradle-plugin-samples-CustomTemplates-resttemplate must be built first
// And, as we consume the resulting jar in the buildsrc section, it seems mandatory to build it as a separate build
// (see the graphql-gradle-plugin-samples-allGraphQLCases-client subproject for its use)
includeBuild 'graphql-gradle-plugin-samples-CustomTemplates-resttemplate'
include 'graphql-gradle-plugin-samples-allGraphQLCases-client'
include 'graphql-gradle-plugin-samples-allGraphQLCases-pojo-client'
include 'graphql-gradle-plugin-samples-allGraphQLCases-pojo-client-jackson'
include 'graphql-gradle-plugin-samples-allGraphQLCases-pojo-server'
include 'graphql-gradle-plugin-samples-allGraphQLCases-client'
include 'graphql-gradle-plugin-samples-allGraphQLCases-server'
include 'graphql-gradle-plugin-samples-OAuth-authorization-server'
include 'graphql-gradle-plugin-samples-Forum-client'
include 'graphql-gradle-plugin-samples-Forum-server'