This repository was archived by the owner on Dec 19, 2023. It is now read-only.
This repository was archived by the owner on Dec 19, 2023. It is now read-only.
Cannot resolve symbol 'GraphQLQueryResolver' #549
Closed
Description
Describe the bug
GraphqlQueryResolver suddenly disappeared in kickstart.tools.
Expected behavior
I've been using it well until recently, but it shows that I can't find it when I started working today.
build.gradle
plugins {
id 'org.springframework.boot' version '2.4.2'
id 'io.spring.dependency-management' version '1.0.11.RELEASE'
id 'java'
}
group = 'dd'
version = '1.0.0-SNAPSHOT'
sourceCompatibility = '11'
targetCompatibility = 11
configurations {
compileOnly {
extendsFrom annotationProcessor
}
}
repositories {
mavenCentral()
}
dependencies {
implementation 'org.springframework.boot:spring-boot-starter-data-jpa'
implementation 'org.springframework.boot:spring-boot-starter-validation'
implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:11.0.0'
implementation 'com.graphql-java-kickstart:playground-spring-boot-starter:11.0.0'
compile group: 'org.hibernate', name: 'hibernate-spatial', version: '5.4.25.Final'
compile group: 'org.n52.jackson', name: 'jackson-datatype-jts', version: '1.2.8'
runtimeOnly 'mysql:mysql-connector-java'
compile group: 'javax.persistence', name: 'javax.persistence-api', version: '2.2'
compileOnly 'org.projectlombok:lombok'
annotationProcessor 'org.projectlombok:lombok'
compile group: 'org.modelmapper', name: 'modelmapper', version: '2.3.0'
testImplementation 'org.springframework.boot:spring-boot-starter-test'
testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:11.0.0'
}
test {
useJUnitPlatform()
}