File tree 1 file changed +7
-1
lines changed
1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ if (JavaVersion.current() != JavaVersion.VERSION_1_8) {
34
34
35
35
sourceCompatibility = 1.8
36
36
targetCompatibility = 1.8
37
- def slf4jVersion = ' 1.7.30 '
37
+
38
38
def releaseVersion = System . env. RELEASE_VERSION
39
39
version = releaseVersion ? releaseVersion : getDevelopmentVersion()
40
40
group = ' com.graphql-java'
@@ -68,11 +68,17 @@ jar {
68
68
}
69
69
}
70
70
71
+ def slf4jVersion = ' 1.7.30'
72
+ def reactiveStreamsVersion = ' 1.0.3'
73
+
71
74
dependencies {
72
75
api ' org.slf4j:slf4j-api:' + slf4jVersion
76
+ api ' org.reactivestreams:reactive-streams:' + reactiveStreamsVersion
77
+
73
78
testImplementation ' org.slf4j:slf4j-simple:' + slf4jVersion
74
79
testImplementation ' junit:junit:4.12'
75
80
testImplementation ' org.awaitility:awaitility:2.0.0'
81
+ testImplementation ' io.projectreactor:reactor-core:3.6.6'
76
82
testImplementation ' com.github.ben-manes.caffeine:caffeine:2.9.0'
77
83
}
78
84
You can’t perform that action at this time.
0 commit comments