Commit 846cafabb572f089ab34b66aeb7493b206b0488c
1 parent
96a9f19c
调整依赖引入的位置
Showing
3 changed files
with
25 additions
and
16 deletions
jeecg-boot/jeecg-boot-base/jeecg-boot-base-core/pom.xml
... | ... | @@ -106,21 +106,6 @@ |
106 | 106 | <artifactId>dynamic-datasource-spring-boot-starter</artifactId> |
107 | 107 | <version>${dynamic-datasource-spring-boot-starter.version}</version> |
108 | 108 | </dependency> |
109 | - <dependency> | |
110 | - <groupId>org.hibernate</groupId> | |
111 | - <artifactId>hibernate-core</artifactId> | |
112 | - <exclusions> | |
113 | - <exclusion> | |
114 | - <groupId>commons-collections</groupId> | |
115 | - <artifactId>commons-collections</artifactId> | |
116 | - </exclusion> | |
117 | - </exclusions> | |
118 | - </dependency> | |
119 | - <dependency> | |
120 | - <groupId>org.jeecgframework.boot</groupId> | |
121 | - <artifactId>hibernate-re</artifactId> | |
122 | - <version>3.2.0-beta</version> | |
123 | - </dependency> | |
124 | 109 | |
125 | 110 | <!-- 数据库驱动 --> |
126 | 111 | <!--mysql--> |
... | ... |
jeecg-boot/jeecg-boot-module-system/pom.xml
... | ... | @@ -34,6 +34,15 @@ |
34 | 34 | <groupId>org.jeecgframework.boot</groupId> |
35 | 35 | <artifactId>jeecg-system-local-api</artifactId> |
36 | 36 | </dependency> |
37 | + <dependency> | |
38 | + <groupId>org.hibernate</groupId> | |
39 | + <artifactId>hibernate-core</artifactId> | |
40 | + </dependency> | |
41 | + <dependency> | |
42 | + <groupId>org.jeecgframework.boot</groupId> | |
43 | + <artifactId>hibernate-re</artifactId> | |
44 | + </dependency> | |
45 | + | |
37 | 46 | <!-- 企业微信/钉钉 api --> |
38 | 47 | <dependency> |
39 | 48 | <groupId>org.jeecgframework</groupId> |
... | ... |
jeecg-boot/pom.xml
... | ... | @@ -203,7 +203,22 @@ |
203 | 203 | <artifactId>jeecg-boot-starter-shardingsphere</artifactId> |
204 | 204 | <version>${jeecgboot.version}</version> |
205 | 205 | </dependency> |
206 | - | |
206 | + <dependency> | |
207 | + <groupId>org.hibernate</groupId> | |
208 | + <artifactId>hibernate-core</artifactId> | |
209 | + <version>5.6.7.Final</version> | |
210 | + <exclusions> | |
211 | + <exclusion> | |
212 | + <groupId>commons-collections</groupId> | |
213 | + <artifactId>commons-collections</artifactId> | |
214 | + </exclusion> | |
215 | + </exclusions> | |
216 | + </dependency> | |
217 | + <dependency> | |
218 | + <groupId>org.jeecgframework.boot</groupId> | |
219 | + <artifactId>hibernate-re</artifactId> | |
220 | + <version>3.2.0-beta</version> | |
221 | + </dependency> | |
207 | 222 | |
208 | 223 | <!-- 七牛云SDK --> |
209 | 224 | <dependency> |
... | ... |