Skip to content

Commit 41fa198

Browse files
committed
feat: update to java 24
1 parent 5e6d3d0 commit 41fa198

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

backend/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
plugins {
1414
id 'java'
1515
id 'org.springframework.boot' version '3.4.0'
16-
id 'org.graalvm.buildtools.native' version '0.10.3'
17-
id 'io.spring.dependency-management' version '1.1.6'
16+
id 'org.graalvm.buildtools.native' version '0.10.6'
17+
id 'io.spring.dependency-management' version '1.1.7'
1818
id 'org.hibernate.orm' version '6.6.3.Final'
1919
}
2020

@@ -23,21 +23,21 @@ version = '0.0.1-SNAPSHOT'
2323

2424
java {
2525
toolchain {
26-
languageVersion = JavaLanguageVersion.of(21)
26+
languageVersion = JavaLanguageVersion.of(24)
2727
}
2828
}
2929

3030
repositories {
3131
mavenCentral()
3232
}
33-
33+
/*
3434
hibernate {
3535
enhancement {
3636
lazyInitialization = true
3737
dirtyTracking = true
3838
}
3939
}
40-
40+
*/
4141
dependencies {
4242
implementation project(':frontend')
4343
implementation 'org.springframework.boot:spring-boot-starter'
@@ -54,7 +54,7 @@ dependencies {
5454
testImplementation 'org.springframework.boot:spring-boot-starter-test'
5555
testImplementation 'org.springframework.security:spring-security-test'
5656
testImplementation 'org.springframework.graphql:spring-graphql-test'
57-
testImplementation group: 'com.tngtech.archunit', name: 'archunit-junit5', version: '1.3.0'
57+
testImplementation 'com.tngtech.archunit:archunit-junit5:1.4.0'
5858

5959
if(project.hasProperty('withAngular')) {
6060
implementation 'org.postgresql:postgresql'
+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.13-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)