Skip to content

Commit 106a2a5

Browse files
committed
Fix example-client deps
1 parent e6aa42c commit 106a2a5

File tree

4 files changed

+6
-7
lines changed

4 files changed

+6
-7
lines changed

plugins/gradle/example-client-kotlin/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import io.github.kobylynskyi.graphql.codegen.gradle.GraphQLCodegenGradleTask
33

44
plugins {
55
id "java"
6-
id "org.jetbrains.kotlin.jvm" version "1.8.20"
6+
id "org.jetbrains.kotlin.jvm" version "1.8.10"
77
id "io.github.kobylynskyi.graphql.codegen" version "5.7.2-SNAPSHOT"
88
}
99

plugins/gradle/example-client/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ plugins {
1313
mainClassName = "io.github.kobylynskyi.order.Application"
1414

1515
dependencies {
16-
implementation "org.springframework.boot:spring-boot-starter-web:3.0.5"
16+
implementation "org.springframework.boot:spring-boot-starter-web:2.7.10"
1717
implementation "org.springframework.boot:spring-boot-starter-data-mongodb:2.7.10"
1818

19-
implementation "com.graphql-java-kickstart:graphql-spring-boot-starter:15.0.0"
19+
implementation "com.graphql-java-kickstart:graphql-spring-boot-starter:11.1.0"
2020
implementation "com.graphql-java-kickstart:graphiql-spring-boot-starter:11.1.0"
2121
implementation "com.graphql-java:graphql-java-extended-scalars:20.0"
2222

plugins/maven/example-client/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@
123123
<dependency>
124124
<groupId>org.springframework.boot</groupId>
125125
<artifactId>spring-boot-starter-web</artifactId>
126-
<version>3.0.5</version>
126+
<version>2.7.10</version>
127127
</dependency>
128128
<dependency>
129129
<groupId>org.springframework.boot</groupId>
@@ -134,7 +134,7 @@
134134
<dependency>
135135
<groupId>com.graphql-java-kickstart</groupId>
136136
<artifactId>graphql-spring-boot-starter</artifactId>
137-
<version>15.0.0</version>
137+
<version>11.1.0</version>
138138
</dependency>
139139
<dependency>
140140
<groupId>com.graphql-java-kickstart</groupId>

plugins/maven/example-server/pom.xml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787
<dependency>
8888
<groupId>com.graphql-java-kickstart</groupId>
8989
<artifactId>graphql-spring-boot-starter</artifactId>
90-
<version>15.0.0</version>
90+
<version>11.1.0</version>
9191
</dependency>
9292
<dependency>
9393
<groupId>com.graphql-java-kickstart</groupId>
@@ -126,5 +126,4 @@
126126
</repository>
127127
</repositories>
128128

129-
130129
</project>

0 commit comments

Comments
 (0)