Remove spring-graphql-core module

Move its contents into the spring-graphql module.
This commit is contained in:
Rossen Stoyanchev
2021-04-26 21:55:30 +01:00
parent 403019521c
commit b6cc9e4dd5
10 changed files with 27 additions and 59 deletions

View File

@@ -24,7 +24,6 @@ dependencyManagement {
}
dependencies {
api project(':spring-graphql-core')
api project(':spring-graphql')
api 'com.graphql-java:graphql-java:16.2'
api 'io.projectreactor:reactor-core'

View File

@@ -37,7 +37,7 @@ import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.Resource;
import org.springframework.core.io.ResourceLoader;
import org.springframework.graphql.core.ReactorDataFetcherAdapter;
import org.springframework.graphql.data.ReactorDataFetcherAdapter;
@Configuration
@ConditionalOnClass(GraphQL.class)