File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed
spring-orm-hibernate4/src/main/java/org/springframework/orm/hibernate4 Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ configure(allprojects) { project ->
19
19
group = " org.springframework"
20
20
version = qualifyVersionIfNecessary(version)
21
21
22
- ext. aspectjVersion = " 1.8.2 "
22
+ ext. aspectjVersion = " 1.8.3 "
23
23
ext. eclipseLinkVersion = " 2.4.2"
24
24
ext. groovyVersion = " 1.8.9"
25
25
ext. hibernate3Version = " 3.6.10.Final"
26
- ext. hibernate4Version = " 4.2.15 .Final"
26
+ ext. hibernate4Version = " 4.2.16 .Final"
27
27
ext. hibVal4Version = " 4.3.2.Final"
28
28
ext. hsqldbVersion = " 2.3.2"
29
29
ext. jackson1Version = " 1.9.13"
Original file line number Diff line number Diff line change 25
25
import org .hibernate .SessionFactory ;
26
26
import org .hibernate .cache .spi .RegionFactory ;
27
27
import org .hibernate .cfg .Configuration ;
28
- import org .hibernate .cfg .NamingStrategy ;
29
28
30
29
import org .springframework .beans .factory .DisposableBean ;
31
30
import org .springframework .beans .factory .FactoryBean ;
@@ -85,7 +84,8 @@ public class LocalSessionFactoryBean extends HibernateExceptionTranslator
85
84
86
85
private Interceptor entityInterceptor ;
87
86
88
- private NamingStrategy namingStrategy ;
87
+ @ SuppressWarnings ("deprecation" )
88
+ private org .hibernate .cfg .NamingStrategy namingStrategy ;
89
89
90
90
private Object jtaTransactionManager ;
91
91
@@ -219,7 +219,8 @@ public void setEntityInterceptor(Interceptor entityInterceptor) {
219
219
* physical column and table names given the info in the mapping document.
220
220
* @see org.hibernate.cfg.Configuration#setNamingStrategy
221
221
*/
222
- public void setNamingStrategy (NamingStrategy namingStrategy ) {
222
+ @ SuppressWarnings ("deprecation" )
223
+ public void setNamingStrategy (org .hibernate .cfg .NamingStrategy namingStrategy ) {
223
224
this .namingStrategy = namingStrategy ;
224
225
}
225
226
You can’t perform that action at this time.
0 commit comments