Skip to content
This repository was archived by the owner on Dec 19, 2023. It is now read-only.

Commit ca66b31

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents cbd083d + 8b7b21e commit ca66b31

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

gradle.properties

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,8 @@ LIB_GRAPHQL_SERVLET_VER=11.1.1
3737
LIB_GRAPHQL_JAVA_TOOLS_VER=11.0.1
3838
LIB_GRAPHQL_ANNOTATIONS_VER=8.3
3939
LIB_REFLECTIONS_VER=0.9.11
40-
LIB_APACHE_COMMONS_TEXT=1.9
40+
LIB_APACHE_COMMONS_TEXT_VER=1.9
41+
LIB_AWAITILITY_VER=4.1.0
4142
LIB_JSOUP_VER=1.13.1
4243
### Plugins
4344
PLUGIN_JACOCO_VER=0.8.7

graphql-spring-boot-autoconfigure/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ dependencies {
3434
implementation "org.springframework.boot:spring-boot-starter-validation"
3535

3636
// graphiql
37-
implementation "org.apache.commons:commons-text:$LIB_APACHE_COMMONS_TEXT"
37+
implementation "org.apache.commons:commons-text:$LIB_APACHE_COMMONS_TEXT_VER"
3838
compileOnly "org.springframework.boot:spring-boot-starter-security"
3939

4040
compileOnly "org.springframework.boot:spring-boot-starter-websocket"

graphql-spring-boot-autoconfigure/src/test/java/graphql/kickstart/autoconfigure/annotations/test/interfaces/Car.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
@AllArgsConstructor
1414
@NoArgsConstructor
1515
@EqualsAndHashCode(callSuper = true)
16-
// implements Vehicle has to be repeated here although already inherited from AbstractVehicle
16+
// "implements Vehicle" has to be repeated here although already inherited from AbstractVehicle
1717
// because otherwise GraphQL-Java Annotations would not find this class.
1818
public class Car extends AbstractVehicle implements Vehicle {
1919

graphql-spring-boot-test/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dependencies {
2121
implementation("org.springframework.boot:spring-boot-starter-test")
2222
implementation("com.fasterxml.jackson.core:jackson-databind")
2323
implementation("com.jayway.jsonpath:json-path")
24-
implementation 'org.awaitility:awaitility:4.1.0'
24+
implementation "org.awaitility:awaitility:$LIB_AWAITILITY_VER"
2525
compileOnly("com.graphql-java:graphql-java:$LIB_GRAPHQL_JAVA_VER")
2626
compileOnly("com.graphql-java-kickstart:graphql-java-servlet:$LIB_GRAPHQL_SERVLET_VER")
2727
testImplementation("org.springframework.boot:spring-boot-starter-web")

0 commit comments

Comments
 (0)