File tree 9 files changed +10
-22
lines changed
src/main/java/org/springframework/orm/hibernate5
9 files changed +10
-22
lines changed Original file line number Diff line number Diff line change @@ -125,8 +125,8 @@ dependencies {
125
125
api(" org.glassfish:jakarta.el:4.0.2" )
126
126
api(" org.graalvm.sdk:graal-sdk:22.3.1" )
127
127
api(" org.hamcrest:hamcrest:2.2" )
128
- api(" org.hibernate:hibernate-core:7.0.0.Beta2 " )
129
- api(" org.hibernate:hibernate-validator:9.0.0.Beta3 " )
128
+ api(" org.hibernate.orm :hibernate-core:7.0.0.Beta3 " )
129
+ api(" org.hibernate.validator :hibernate-validator:9.0.0.CR1 " )
130
130
api(" org.hsqldb:hsqldb:2.7.4" )
131
131
api(" org.htmlunit:htmlunit:4.6.0" )
132
132
api(" org.javamoney:moneta:1.4.4" )
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
testImplementation(" jakarta.servlet:jakarta.servlet-api" )
27
27
testImplementation(" org.aspectj:aspectjweaver" )
28
28
testImplementation(" org.hsqldb:hsqldb" )
29
- testImplementation(" org.hibernate:hibernate-core" )
29
+ testImplementation(" org.hibernate.orm :hibernate-core" )
30
30
testImplementation(" org.jetbrains.kotlinx:kotlinx-coroutines-reactor" )
31
31
}
32
32
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ dependencies {
26
26
optional(" org.apache-extras.beanshell:bsh" )
27
27
optional(" org.aspectj:aspectjweaver" )
28
28
optional(" org.crac:crac" )
29
- optional(" org.hibernate:hibernate-validator" )
29
+ optional(" org.hibernate.validator :hibernate-validator" )
30
30
optional(" org.jetbrains.kotlin:kotlin-reflect" )
31
31
optional(" org.jetbrains.kotlin:kotlin-stdlib" )
32
32
optional(" org.jetbrains.kotlinx:kotlinx-coroutines-core" )
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ dependencies {
11
11
optional(project(" :spring-web" ))
12
12
optional(" jakarta.servlet:jakarta.servlet-api" )
13
13
optional(" org.eclipse.persistence:org.eclipse.persistence.jpa" )
14
- optional(" org.hibernate:hibernate-core" )
14
+ optional(" org.hibernate.orm :hibernate-core" )
15
15
testImplementation(project(" :spring-core-test" ))
16
16
testImplementation(testFixtures(project(" :spring-beans" )))
17
17
testImplementation(testFixtures(project(" :spring-context" )))
Original file line number Diff line number Diff line change @@ -285,18 +285,6 @@ public LocalSessionFactoryBuilder setEntityTypeFilters(TypeFilter... entityTypeF
285
285
return this ;
286
286
}
287
287
288
- /**
289
- * Add the given annotated classes in a batch.
290
- * @see #addAnnotatedClass
291
- * @see #scanPackages
292
- */
293
- public LocalSessionFactoryBuilder addAnnotatedClasses (Class <?>... annotatedClasses ) {
294
- for (Class <?> annotatedClass : annotatedClasses ) {
295
- addAnnotatedClass (annotatedClass );
296
- }
297
- return this ;
298
- }
299
-
300
288
/**
301
289
* Add the given annotated packages in a batch.
302
290
* @see #addPackage
Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ dependencies {
77
77
}
78
78
testImplementation(" org.awaitility:awaitility" )
79
79
testImplementation(" org.easymock:easymock" )
80
- testImplementation(" org.hibernate:hibernate-core" )
81
- testImplementation(" org.hibernate:hibernate-validator" )
80
+ testImplementation(" org.hibernate.orm :hibernate-core" )
81
+ testImplementation(" org.hibernate.validator :hibernate-validator" )
82
82
testImplementation(" org.hsqldb:hsqldb" )
83
83
testImplementation(" org.junit.platform:junit-platform-testkit" )
84
84
testRuntimeOnly(" com.sun.xml.bind:jaxb-core" )
Original file line number Diff line number Diff line change @@ -99,5 +99,5 @@ dependencies {
99
99
testRuntimeOnly(" org.eclipse.angus:angus-mail" )
100
100
testRuntimeOnly(" org.eclipse:yasson" )
101
101
testRuntimeOnly(" org.glassfish:jakarta.el" )
102
- testRuntimeOnly(" org.hibernate:hibernate-validator" )
102
+ testRuntimeOnly(" org.hibernate.validator :hibernate-validator" )
103
103
}
Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ dependencies {
52
52
testImplementation(" org.apache.tomcat.embed:tomcat-embed-core" )
53
53
testImplementation(" org.eclipse.jetty:jetty-reactive-httpclient" )
54
54
testImplementation(" org.eclipse.jetty:jetty-server" )
55
- testImplementation(" org.hibernate:hibernate-validator" )
55
+ testImplementation(" org.hibernate.validator :hibernate-validator" )
56
56
testImplementation(" org.jetbrains.kotlinx:kotlinx-serialization-json" )
57
57
testRuntimeOnly(" com.sun.xml.bind:jaxb-core" )
58
58
testRuntimeOnly(" com.sun.xml.bind:jaxb-impl" )
Original file line number Diff line number Diff line change @@ -59,7 +59,7 @@ dependencies {
59
59
testImplementation(" org.eclipse.jetty.ee10:jetty-ee10-servlet" ) {
60
60
exclude group : " jakarta.servlet" , module : " jakarta.servlet-api"
61
61
}
62
- testImplementation(" org.hibernate:hibernate-validator" )
62
+ testImplementation(" org.hibernate.validator :hibernate-validator" )
63
63
testImplementation(" org.mozilla:rhino" )
64
64
testImplementation(" org.skyscreamer:jsonassert" )
65
65
testImplementation(" org.xmlunit:xmlunit-assertj" )
You can’t perform that action at this time.
0 commit comments