Skip to content

Commit 95540ff

Browse files
committed
reactive streams support branch
1 parent 1bb63aa commit 95540ff

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

build.gradle

+7-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ if (JavaVersion.current() != JavaVersion.VERSION_1_8) {
3434

3535
sourceCompatibility = 1.8
3636
targetCompatibility = 1.8
37-
def slf4jVersion = '1.7.30'
37+
3838
def releaseVersion = System.env.RELEASE_VERSION
3939
version = releaseVersion ? releaseVersion : getDevelopmentVersion()
4040
group = 'com.graphql-java'
@@ -68,11 +68,17 @@ jar {
6868
}
6969
}
7070

71+
def slf4jVersion = '1.7.30'
72+
def reactiveStreamsVersion = '1.0.3'
73+
7174
dependencies {
7275
api 'org.slf4j:slf4j-api:' + slf4jVersion
76+
api 'org.reactivestreams:reactive-streams:' + reactiveStreamsVersion
77+
7378
testImplementation 'org.slf4j:slf4j-simple:' + slf4jVersion
7479
testImplementation 'junit:junit:4.12'
7580
testImplementation 'org.awaitility:awaitility:2.0.0'
81+
testImplementation 'io.projectreactor:reactor-core:3.6.6'
7682
testImplementation 'com.github.ben-manes.caffeine:caffeine:2.9.0'
7783
}
7884

0 commit comments

Comments
 (0)