File tree 3 files changed +33
-0
lines changed
spring-boot-project/spring-boot-docs
3 files changed +33
-0
lines changed Original file line number Diff line number Diff line change @@ -321,6 +321,9 @@ syncDocumentationSourceForAsciidoctor {
321
321
from(" src/main/groovy" ) {
322
322
into " main/groovy"
323
323
}
324
+ from(" src/main/resources" ) {
325
+ into " main/resources"
326
+ }
324
327
}
325
328
326
329
syncDocumentationSourceForAsciidoctorMultipage {
Original file line number Diff line number Diff line change 21
21
:docs-java: {docdir}/../main/java/org/springframework/boot/docs
22
22
:docs-kotlin: {docdir}/../main/kotlin/org/springframework/boot/docs
23
23
:docs-groovy: {docdir}/../main/groovy/org/springframework/boot/docs
24
+ :docs-resources: {docdir}/../main/resources
24
25
:spring-boot-code: https://github.com/{github-repo}/tree/{github-tag}
25
26
:spring-boot-api: https://docs.spring.io/spring-boot/docs/{spring-boot-version}/api
26
27
:spring-boot-docs: https://docs.spring.io/spring-boot/docs/{spring-boot-version}/reference
Original file line number Diff line number Diff line change
1
+ type Query {
2
+ greeting (name : String ! = " Spring" ): String !
3
+ project (slug : ID ! ): Project
4
+ }
5
+
6
+ """ A Project in the Spring portfolio """
7
+ type Project {
8
+ """ Unique string id used in URLs """
9
+ slug : ID !
10
+ """ Project name """
11
+ name : String !
12
+ """ URL of the git repository """
13
+ repositoryUrl : String !
14
+ """ Current support status """
15
+ status : ProjectStatus !
16
+ }
17
+
18
+ enum ProjectStatus {
19
+ """ Actively supported by the Spring team """
20
+ ACTIVE
21
+ """ Supported by the community """
22
+ COMMUNITY
23
+ """ Prototype, not officially supported yet """
24
+ INCUBATING
25
+ """ Project being retired, in maintenance mode """
26
+ ATTIC
27
+ """ End-Of-Lifed """
28
+ EOL
29
+ }
You can’t perform that action at this time.
0 commit comments