File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Expand file tree Collapse file tree 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) {
3434
3535sourceCompatibility = 1.8
3636targetCompatibility = 1.8
37- def slf4jVersion = ' 1.7.30 '
37+
3838def releaseVersion = System . env. RELEASE_VERSION
3939version = releaseVersion ? releaseVersion : getDevelopmentVersion()
4040group = ' com.graphql-java'
@@ -68,11 +68,17 @@ jar {
6868 }
6969}
7070
71+ def slf4jVersion = ' 1.7.30'
72+ def reactiveStreamsVersion = ' 1.0.3'
73+
7174dependencies {
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
You can’t perform that action at this time.
0 commit comments