File tree Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Expand file tree Collapse file tree 1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 1
1
plugins {
2
- id ' java'
2
+ id ' java-library '
3
3
id ' org.asciidoctor.jvm.convert' version ' 3.3.2'
4
4
}
5
5
6
6
description = " Spring for GraphQL reference documentation"
7
7
8
8
configurations {
9
+ dependencyManagement {
10
+ canBeConsumed = false
11
+ canBeResolved = false
12
+ visible = false
13
+ }
14
+ matching { it. name. endsWith(" Classpath" ) }. all { it. extendsFrom(dependencyManagement) }
9
15
asciidoctorExtensions
10
16
}
11
17
12
18
dependencies {
13
- asciidoctorExtensions ' io.spring.asciidoctor.backends:spring-asciidoctor-backends:0.0.2'
19
+ dependencyManagement(enforcedPlatform(dependencies. project(path : " :platform" )))
20
+ api project(' :spring-graphql' )
21
+ api project(' :spring-graphql-test' )
22
+ api ' org.springframework:spring-webflux'
23
+ api ' org.springframework:spring-webmvc'
24
+ api ' org.springframework:spring-websocket'
25
+ api ' org.springframework:spring-messaging'
26
+ asciidoctorExtensions ' io.spring.asciidoctor.backends:spring-asciidoctor-backends:0.0.3'
14
27
}
15
28
16
29
jar {
You can’t perform that action at this time.
0 commit comments