Skip to content

Commit af325eb

Browse files
authored
Update dependencies to Spring Boot 3.1.0 (#375)
* Update spring-boot version to 3.1.0 * Update graphql-java version to 20.2 * update StarwarsQueryExecutor failing tests * Disable result stream option due to broken query in Hibernate 6.2.x * update project version to 1.1.0-SNAPSHOT
1 parent a89d73f commit af325eb

File tree

23 files changed

+43
-34
lines changed

23 files changed

+43
-34
lines changed

annotations/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>com.introproventures</groupId>
88
<artifactId>graphql-jpa-query-dependencies</artifactId>
9-
<version>1.0.1-SNAPSHOT</version>
9+
<version>1.1.0-SNAPSHOT</version>
1010
<relativePath>../dependencies</relativePath>
1111
</parent>
1212

autoconfigure/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.introproventures</groupId>
55
<artifactId>graphql-jpa-query-build</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
6+
<version>1.1.0-SNAPSHOT</version>
77
<relativePath>../build</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-autoconfigure</artifactId>

boot-starter/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<parent>
1313
<groupId>com.introproventures</groupId>
1414
<artifactId>graphql-jpa-query-dependencies</artifactId>
15-
<version>1.0.1-SNAPSHOT</version>
15+
<version>1.1.0-SNAPSHOT</version>
1616
<relativePath>../dependencies</relativePath>
1717
</parent>
1818

build/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.introproventures</groupId>
55
<artifactId>graphql-jpa-query-dependencies</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
6+
<version>1.1.0-SNAPSHOT</version>
77
<relativePath>../dependencies</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-build</artifactId>

dependencies/pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.introproventures</groupId>
55
<artifactId>graphql-jpa-query</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
6+
<version>1.1.0-SNAPSHOT</version>
77
<relativePath>../pom.xml</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-dependencies</artifactId>
@@ -14,11 +14,11 @@
1414
</description>
1515

1616
<properties>
17-
<spring-boot.version>3.0.6</spring-boot.version>
18-
<graphql-java.version>19.5</graphql-java.version>
17+
<spring-boot.version>3.1.0</spring-boot.version>
18+
<graphql-java.version>20.2</graphql-java.version>
1919
<evo-inflector.version>1.3</evo-inflector.version>
2020
<joda-time.version>2.10.5</joda-time.version>
21-
<graphql-java-extended-scalars.version>19.1</graphql-java-extended-scalars.version>
21+
<graphql-java-extended-scalars.version>20.2</graphql-java-extended-scalars.version>
2222
<jakarta.persistence-api.version>3.1.0</jakarta.persistence-api.version>
2323
</properties>
2424

examples/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>com.introproventures</groupId>
66
<artifactId>graphql-jpa-query-build</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.1.0-SNAPSHOT</version>
88
<relativePath>../build</relativePath>
99
</parent>
1010

examples/spring-graphql-web/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<groupId>com.introproventures</groupId>
99
<artifactId>graphql-jpa-query-examples</artifactId>
10-
<version>1.0.1-SNAPSHOT</version>
10+
<version>1.1.0-SNAPSHOT</version>
1111
<relativePath>../pom.xml</relativePath>
1212
</parent>
1313

introspection/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<parent>
44
<groupId>com.introproventures</groupId>
55
<artifactId>graphql-jpa-query-build</artifactId>
6-
<version>1.0.1-SNAPSHOT</version>
6+
<version>1.1.0-SNAPSHOT</version>
77
<relativePath>../build</relativePath>
88
</parent>
99
<artifactId>graphql-jpa-query-introspection</artifactId>

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.introproventures</groupId>
66
<artifactId>graphql-jpa-query</artifactId>
7-
<version>1.0.1-SNAPSHOT</version>
7+
<version>1.1.0-SNAPSHOT</version>
88
<packaging>pom</packaging>
99
<name>GraphQL JPA Query</name>
1010

scalars/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<parent>
1010
<groupId>com.introproventures</groupId>
1111
<artifactId>graphql-jpa-query-build</artifactId>
12-
<version>1.0.1-SNAPSHOT</version>
12+
<version>1.1.0-SNAPSHOT</version>
1313
<relativePath>../build</relativePath>
1414
</parent>
1515

0 commit comments

Comments
 (0)