File tree Expand file tree Collapse file tree 3 files changed +8
-9
lines changed
src/main/java/graphql/servlet Expand file tree Collapse file tree 3 files changed +8
-9
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ plugins {
4242subprojects {
4343 apply plugin : ' idea'
4444 apply plugin : ' java'
45- apply plugin : ' maven'
4645 apply plugin : ' maven-publish'
4746 apply plugin : " com.jfrog.bintray"
4847 apply plugin : ' io.franzbecker.gradle-lombok'
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ dependencies {
2727 compileOnly ' org.osgi:org.osgi.core:6.0.0'
2828 compileOnly ' org.osgi:org.osgi.service.cm:1.5.0'
2929 compileOnly ' org.osgi:org.osgi.service.component:1.3.0'
30- compileOnly ' biz.aQute.bnd:biz.aQute.bndlib:3.1.0 '
30+ compileOnly ' biz.aQute.bnd:biz.aQute.bndlib:4. 3.1'
3131
3232 testCompile ' io.github.graphql-java:graphql-java-annotations:5.2'
3333
Original file line number Diff line number Diff line change 33import static graphql .schema .GraphQLObjectType .newObject ;
44import static graphql .schema .GraphQLSchema .newSchema ;
55
6+ import aQute .bnd .component .annotations .Activate ;
7+ import aQute .bnd .component .annotations .Component ;
8+ import aQute .bnd .component .annotations .Deactivate ;
9+ import aQute .bnd .component .annotations .Reference ;
10+ import aQute .bnd .component .annotations .ReferenceCardinality ;
11+ import aQute .bnd .component .annotations .ReferencePolicy ;
12+ import aQute .bnd .component .annotations .ReferencePolicyOption ;
613import graphql .execution .preparsed .NoOpPreparsedDocumentProvider ;
714import graphql .execution .preparsed .PreparsedDocumentProvider ;
815import graphql .schema .GraphQLCodeRegistry ;
3946import java .util .concurrent .ScheduledExecutorService ;
4047import java .util .concurrent .ScheduledFuture ;
4148import java .util .concurrent .TimeUnit ;
42- import org .osgi .service .component .annotations .Activate ;
43- import org .osgi .service .component .annotations .Component ;
44- import org .osgi .service .component .annotations .Deactivate ;
45- import org .osgi .service .component .annotations .Reference ;
46- import org .osgi .service .component .annotations .ReferenceCardinality ;
47- import org .osgi .service .component .annotations .ReferencePolicy ;
48- import org .osgi .service .component .annotations .ReferencePolicyOption ;
4949
5050@ Component (
5151 service = {javax .servlet .http .HttpServlet .class , javax .servlet .Servlet .class },
You can’t perform that action at this time.
0 commit comments