Skip to content

Commit f96133a

Browse files
committed
docs: update versions
1 parent 08ef6d8 commit f96133a

File tree

4 files changed

+20
-18
lines changed

4 files changed

+20
-18
lines changed

content/servlet/_index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ into the aspects of GraphQL Java as well, make sure to look at the
2121
[GraphQL Java documentation](https://www.graphql-java.com/documentation/latest/) for more in depth details
2222
regarding GraphQL Java itself.
2323

24-
We try to stay up to date with GraphQL Java as much as possible. The current version supports **GraphQL Java 17.3**.
24+
We try to stay up to date with GraphQL Java as much as possible. The current version supports **GraphQL Java 19.3**.
2525

2626
This project requires at least Java 8.
2727

@@ -45,7 +45,7 @@ Add the `graphql-java-servlet` dependency:
4545

4646
```gradle
4747
dependencies {
48-
compile 'com.graphql-java-kickstart:graphql-java-servlet:14.0.0'
48+
compile 'com.graphql-java-kickstart:graphql-java-servlet:15.0.0'
4949
}
5050
```
5151

@@ -57,7 +57,7 @@ Add the `graphql-java-servlet` dependency:
5757
<dependency>
5858
<groupId>com.graphql-java-kickstart</groupId>
5959
<artifactId>graphql-java-servlet</artifactId>
60-
<version>14.0.0</version>
60+
<version>15.0.0</version>
6161
</dependency>
6262
```
6363

content/servlet/getting-started/index.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,7 @@ Gradle and Maven is included here.
1818
### Create a Gradle build file
1919

2020
Make sure `mavenCentral` is among your repositories. The example build script below uses `org.gretty` to provide
21-
a webserver to show a working example. You need to add the `jcenter` repository as well to be able to pull in all
22-
dependencies required by `gretty`.
21+
a webserver to show a working example.
2322

2423
```gradle
2524
plugins {
@@ -33,7 +32,7 @@ repositories {
3332
}
3433
3534
dependencies {
36-
compile 'com.graphql-java-kickstart:graphql-java-servlet:14.0.0'
35+
compile 'com.graphql-java-kickstart:graphql-java-servlet:15.0.0'
3736
}
3837
```
3938

@@ -52,7 +51,7 @@ Add the `graphql-java-servlet` dependency to your `dependencies` section:
5251
<dependency>
5352
<groupId>com.graphql-java-kickstart</groupId>
5453
<artifactId>graphql-java-servlet</artifactId>
55-
<version>14.0.0</version>
54+
<version>15.0.0</version>
5655
</dependency>
5756
```
5857

@@ -108,16 +107,19 @@ You can now send a GraphQL query to your local servlet, for example using [Insom
108107
In this case the URL to post the GraphQL query to is [http://localhost:8080/graphql-java-servlet-hello-world/graphql](http://localhost:8080/graphql-java-servlet-hello-world/graphql).
109108

110109
The following GraphQL query is what the example implementation supports:
110+
111111
```gradle
112112
query {
113113
hello
114114
}
115115
```
116+
116117
Our Hello Servlet will respond with:
118+
117119
```json
118120
{
119-
"data": {
120-
"hello": "world"
121-
}
121+
"data": {
122+
"hello": "world"
123+
}
122124
}
123125
```

content/spring-boot/getting-started/index.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ menu:
1111

1212
This project requires at least the following version:
1313

14-
- Java 8
15-
- Spring Boot > 2.x.x (`spring-boot-starter-web`)
14+
- Java 17
15+
- Spring Boot 3.x.x (`spring-boot-starter-web`)
1616

1717
## Quick start
1818

@@ -32,10 +32,10 @@ Add the respective starter dependencies you want to use:
3232

3333
```gradle
3434
dependencies {
35-
implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:14.0.0'
35+
implementation 'com.graphql-java-kickstart:graphql-spring-boot-starter:15.0.0'
3636
3737
// testing facilities
38-
testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:14.0.0'
38+
testImplementation 'com.graphql-java-kickstart:graphql-spring-boot-starter-test:15.0.0'
3939
}
4040
```
4141

@@ -47,14 +47,14 @@ Add the respective starter dependencies you want to use:
4747
<dependency>
4848
<groupId>com.graphql-java-kickstart</groupId>
4949
<artifactId>graphql-spring-boot-starter</artifactId>
50-
<version>14.0.0</version>
50+
<version>15.0.0</version>
5151
</dependency>
5252

5353
<!-- testing facilities -->
5454
<dependency>
5555
<groupId>com.graphql-java-kickstart</groupId>
5656
<artifactId>graphql-spring-boot-starter-test</artifactId>
57-
<version>14.0.0</version>
57+
<version>15.0.0</version>
5858
<scope>test</scope>
5959
</dependency>
6060
```

content/tools/getting-started/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Add the `graphql-java-tools` dependency:
3434

3535
```gradle
3636
dependencies {
37-
compile 'com.graphql-java-kickstart:graphql-java-tools:14.0.0'
37+
compile 'com.graphql-java-kickstart:graphql-java-tools:13.0.3'
3838
}
3939
```
4040

@@ -46,7 +46,7 @@ Add the `graphql-java-tools` dependency:
4646
<dependency>
4747
<groupId>com.graphql-java-kickstart</groupId>
4848
<artifactId>graphql-java-tools</artifactId>
49-
<version>14.0.0</version>
49+
<version>13.0.3</version>
5050
</dependency>
5151
```
5252

0 commit comments

Comments
 (0)