Skip to content

Commit 68160d1

Browse files
committed
feat: spring boot 3.3 update
1 parent 09e82af commit 68160d1

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

backend/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313
plugins {
1414
id 'java'
15-
id 'org.springframework.boot' version '3.2.2'
15+
id 'org.springframework.boot' version '3.3.0'
1616
id 'org.graalvm.buildtools.native' version '0.10.0'
1717
id 'io.spring.dependency-management' version '1.1.4'
1818
id 'org.hibernate.orm' version '6.3.1.Final'
@@ -44,7 +44,7 @@ dependencies {
4444
implementation 'org.springframework.boot:spring-boot-starter-validation'
4545
implementation 'io.micrometer:micrometer-registry-prometheus'
4646
implementation 'org.liquibase:liquibase-core'
47-
implementation 'com.graphql-java:graphql-java-extended-scalars:21.0'
47+
implementation 'com.graphql-java:graphql-java-extended-scalars:22.0'
4848
implementation 'commons-net:commons-net:3.8.0'
4949
testImplementation 'org.springframework.boot:spring-boot-starter-test'
5050
testImplementation 'org.springframework.security:spring-security-test'

backend/src/main/java/ch/xxx/maps/adapter/controller/CompanySiteController.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ public Boolean resetDb() {
9090
}
9191

9292
@MutationMapping
93-
public Boolean deletePolygon(@Argument Long companySiteId, @Argument Long polygonId) {
93+
public Boolean deletePolygon(@Argument("companySiteId") Long companySiteId, @Argument("polygonId") Long polygonId) {
9494
LOGGER.info("companySiteId: {} polygonId: {}", companySiteId, polygonId);
9595
return this.companySiteService.deletePolygon(companySiteId, polygonId);
9696
}

0 commit comments

Comments
 (0)