@@ -3,13 +3,13 @@ buildscript {
33        mavenCentral()
44    }
55    dependencies {
6-         classpath " org.hibernate:hibernate-gradle-plugin:5.4.22 .Final" 
6+         classpath " org.hibernate.orm :hibernate-gradle-plugin:6.2.2 .Final" 
77    }
88}
99plugins  {
1010    id ' nu.studer.jooq' ' 6.0.1' 
1111    id ' de.undercouch.download' ' 4.1.1' 
12-     id ' org.springframework.boot' ' 2.7.1 ' 
12+     id ' org.springframework.boot' ' 3.1.0 ' 
1313    id ' io.spring.dependency-management' ' 1.1.0' 
1414    id ' io.gatling.gradle' ' 3.6.1' 
1515    id ' java' 
@@ -18,22 +18,26 @@ apply plugin: 'org.hibernate.orm'
1818
1919def  jooqSrcDir =  ' src/main/jooq-gen' 
2020def  versions =  [
21-     java : ' 11 ' 
22-     flyway : ' 7.3 .1' 
23-     springdoc : ' 1.6.9 ' 
24-     spdx : ' 2.2.4 ' 
25-     gcloud : ' 1.113.4 ' 
26-     azure : ' 12.9 .0' 
27-     guava : ' 28.2 -jre' 
21+     java : ' 17 ' 
22+     flyway : ' 9.19 .1' 
23+     springdoc : ' 2.1.0 ' 
24+     spdx : ' 2.2.8 ' 
25+     gcloud : ' 2.22.3 ' 
26+     azure : ' 12.18 .0' 
27+     guava : ' 30.0 -jre' 
2828    junit : ' 5.7.1' 
2929    testcontainers : ' 1.15.2' 
30-     jackson : ' 2.12.5 ' 
31-     woodstox : ' 6.2.4 ' 
32-     jobrunr : ' 5.1.2 ' 
33-     bucket4j : ' 0.4 .0' 
34-     ehcache : ' 3.10.0 ' 
30+     jackson : ' 2.15.2 ' 
31+     woodstox : ' 6.4.0 ' 
32+     jobrunr : ' 6.2.0 ' 
33+     bucket4j : ' 0.9 .0' 
34+     ehcache : ' 3.10.8 ' 
3535    tika : ' 2.6.0' 
36-     bouncycastle : ' 1.69' 
36+     bouncycastle : ' 1.69' 
37+     commons_lang3 : ' 3.12.0' 
38+     httpclient5 : ' 5.2.1' 
39+     jaxb_api : ' 2.3.1' 
40+     jaxb_impl : ' 2.3.8' 
3741]
3842ext[' junit-jupiter.version' =  versions. junit
3943sourceCompatibility =  versions. java
@@ -75,18 +79,22 @@ dependencies {
7579    implementation " org.bouncycastle:bcpkix-jdk15on:${ versions.bouncycastle} " 
7680    implementation " org.ehcache:ehcache:${ versions.ehcache} " 
7781    implementation " com.giffing.bucket4j.spring.boot.starter:bucket4j-spring-boot-starter:${ versions.bucket4j} " 
78-     implementation " org.jobrunr:jobrunr-spring-boot-starter:${ versions.jobrunr} " 
82+     implementation " org.jobrunr:jobrunr-spring-boot-3- starter:${ versions.jobrunr} " 
7983    implementation " org.flywaydb:flyway-core:${ versions.flyway} " 
8084    implementation " com.google.cloud:google-cloud-storage:${ versions.gcloud} " 
8185    implementation " com.azure:azure-storage-blob:${ versions.azure} " 
82-     implementation " org.springdoc:springdoc-openapi-ui:${ versions.springdoc} " 
86+     implementation " org.springdoc:springdoc-openapi-starter-webmvc- ui:${ versions.springdoc} " 
8387    implementation " com.google.guava:guava:${ versions.guava} " 
8488    implementation " com.fasterxml.jackson.core:jackson-core:${ versions.jackson} " 
8589    implementation " com.fasterxml.jackson.core:jackson-annotations:${ versions.jackson} " 
8690    implementation " com.fasterxml.jackson.core:jackson-databind:${ versions.jackson} " 
8791    implementation " com.fasterxml.jackson.module:jackson-module-jaxb-annotations:${ versions.jackson} " 
8892    implementation " com.fasterxml.woodstox:woodstox-core:${ versions.woodstox} " 
8993    implementation " com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${ versions.jackson} " 
94+     implementation " javax.xml.bind:jaxb-api:${ versions.jaxb_api} " 
95+     implementation " com.sun.xml.bind:jaxb-impl:${ versions.jaxb_impl} " 
96+     implementation " org.apache.commons:commons-lang3:${ versions.commons_lang3} " 
97+     implementation " org.apache.httpcomponents.client5:httpclient5:${ versions.httpclient5} " 
9098    implementation " org.apache.tika:tika-core:${ versions.tika} " 
9199    implementation(" org.spdx:spdx-tools:${ versions.spdx} " 
92100        exclude group : ' net.sf.saxon' 
@@ -109,13 +117,6 @@ dependencies {
109117    testRuntimeOnly " org.testcontainers:postgresql:${ versions.testcontainers} " 
110118}
111119
112- hibernate  {
113-     enhance {
114-         enableLazyInitialization =  true 
115-         enableDirtyTracking =  true 
116-     }
117- }
118- 
119120jooq  {
120121    //  use jOOQ version defined in Spring Boot
121122    version =  dependencyManagement. importedProperties[' jooq.version' 
0 commit comments