This commit adds the relevant dependencies to the web module so as to move all auto-configurations to a single place. Starter modules will only ship dependencies as a result.
20 lines
777 B
Groovy
20 lines
777 B
Groovy
description = "GraphQL Java support with Spring Web frameworks"
|
|
|
|
dependencies {
|
|
api 'com.graphql-java:graphql-java'
|
|
api 'org.springframework.boot:spring-boot-autoconfigure'
|
|
|
|
compileOnly 'org.springframework:spring-context'
|
|
compileOnly 'org.springframework:spring-webflux'
|
|
|
|
compileOnly 'org.springframework:spring-webmvc'
|
|
compileOnly 'javax.servlet:javax.servlet-api'
|
|
|
|
annotationProcessor 'org.springframework.boot:spring-boot-configuration-processor'
|
|
annotationProcessor 'org.springframework.boot:spring-boot-autoconfigure-processor'
|
|
|
|
testImplementation 'com.fasterxml.jackson.core:jackson-databind'
|
|
testImplementation 'org.springframework:spring-webflux'
|
|
testImplementation 'org.springframework:spring-webmvc'
|
|
testImplementation 'javax.servlet:javax.servlet-api'
|
|
} |