This repository was archived by the owner on Dec 19, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 9 files changed +23
-12
lines changed
example-graphql-subscription
example-request-scoped-dataloader Expand file tree Collapse file tree 9 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -81,19 +81,19 @@ repositories {
8181}
8282
8383dependencies {
84- compile 'com.graphql-java-kickstart:graphql-spring-boot-starter:7.0.1'
84+ implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:7.0.1'
8585
8686 // to embed Altair tool
87- runtime 'com.graphql-java-kickstart:altair-spring-boot-starter:7.0.1'
87+ runtimeOnly 'com.graphql-java-kickstart:altair-spring-boot-starter:7.0.1'
8888
8989 // to embed GraphiQL tool
90- runtime 'com.graphql-java-kickstart:graphiql-spring-boot-starter:7.0.1'
90+ runtimeOnly 'com.graphql-java-kickstart:graphiql-spring-boot-starter:7.0.1'
9191
9292 // to embed Voyager tool
93- runtime 'com.graphql-java-kickstart:voyager-spring-boot-starter:7.0.1'
93+ runtimeOnly 'com.graphql-java-kickstart:voyager-spring-boot-starter:7.0.1'
9494
9595 // testing facilities
96- testCompile 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:7.0.1'
96+ testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:7.0.1'
9797}
9898```
9999
Original file line number Diff line number Diff line change @@ -158,7 +158,7 @@ subprojects {
158158 }
159159
160160 artifactory {
161- contextUrl = ' http ://oss.jfrog.org'
161+ contextUrl = ' https ://oss.jfrog.org'
162162 publish {
163163 repository {
164164 if (project. version. endsWith(" -SNAPSHOT" )) {
Original file line number Diff line number Diff line change 1+ apply plugin : " org.springframework.boot"
2+
13dependencies {
24 implementation(project(" :graphql-spring-boot-starter" ))
35 implementation(project(" :graphiql-spring-boot-starter" ))
Original file line number Diff line number Diff line change 1717 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818 */
1919
20+ apply plugin : " org.springframework.boot"
21+
2022dependencies {
2123 implementation(project(" :graphql-spring-boot-starter" ))
2224 implementation(project(" :graphiql-spring-boot-starter" ))
Original file line number Diff line number Diff line change 1+ apply plugin : " org.springframework.boot"
2+
13dependencies {
24 implementation(" org.springframework.boot:spring-boot-starter-web" )
35 implementation(project(" :graphql-spring-boot-starter" ))
Original file line number Diff line number Diff line change @@ -35,3 +35,4 @@ dependencies{
3535jar. enabled = false
3636uploadArchives. enabled = false
3737bintrayUpload. enabled = false
38+ publishToMavenLocal. enabled = false
Original file line number Diff line number Diff line change 1717 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818 */
1919
20+ apply plugin : " org.springframework.boot"
21+
2022dependencies {
21- compile (project(" :graphql-kickstart-spring-boot-starter-webflux" ))
22- compile (project(" :graphql-kickstart-spring-boot-starter-tools" ))
23- compile (project(" :voyager-spring-boot-starter" ))
23+ implementation (project(" :graphql-kickstart-spring-boot-starter-webflux" ))
24+ implementation (project(" :graphql-kickstart-spring-boot-starter-tools" ))
25+ implementation (project(" :voyager-spring-boot-starter" ))
2426
25- compile (" org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER " )
26- compile (" org.springframework.boot:spring-boot-starter-actuator:$LIB_SPRING_BOOT_VER " )
27+ implementation (" org.springframework.boot:spring-boot-starter-webflux:$LIB_SPRING_BOOT_VER " )
28+ implementation (" org.springframework.boot:spring-boot-starter-actuator:$LIB_SPRING_BOOT_VER " )
2729}
2830
2931jar. enabled = false
Original file line number Diff line number Diff line change 1717 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
1818 */
1919
20+ apply plugin : " org.springframework.boot"
21+
2022dependencies {
2123 implementation(project(" :altair-spring-boot-starter" ))
2224 implementation(project(" :graphql-spring-boot-starter" ))
Original file line number Diff line number Diff line change 11distributionBase =GRADLE_USER_HOME
22distributionPath =wrapper/dists
3- distributionUrl =https\://services.gradle.org/distributions/gradle-6.2.2 -all.zip
3+ distributionUrl =https\://services.gradle.org/distributions/gradle-6.3 -all.zip
44zipStoreBase =GRADLE_USER_HOME
55zipStorePath =wrapper/dists
You can’t perform that action at this time.
0 commit comments