|
1 | 1 | dependencies {
|
2 |
| - api(project(":mybatis-plus-extension")) |
3 |
| - implementation(project(":mybatis-plus-generator")) |
| 2 | + api project(":mybatis-plus-extension") |
| 3 | + implementation project(":mybatis-plus-generator") |
4 | 4 |
|
5 |
| - testCompile("${lib.'spring-web'}") |
6 |
| - testCompile("${lib.'javax.servlet-api'}") |
| 5 | + testImplementation "${lib.'spring-web'}" |
| 6 | + testImplementation "${lib.'javax.servlet-api'}" |
7 | 7 |
|
8 |
| - testCompile("${lib.'spring-test'}") |
9 |
| - testCompile("${lib.fastjson}") |
| 8 | + testImplementation "${lib.'spring-test'}" |
| 9 | + testImplementation "${lib.fastjson}" |
10 | 10 |
|
11 |
| - testCompile("${lib.h2}") |
12 |
| - testCompile("${lib.sqlserver}") |
13 |
| - testCompile("${lib.postgresql}") |
14 |
| - testCompile(lib.oracle as ConfigurableFileTree) |
15 |
| - testCompile("${lib.mysql}") |
16 |
| - testCompile("${lib.jackson}") |
17 |
| - testCompile("${lib.'mybatis-ehcache'}") |
18 |
| - testCompile("${lib.'mybatis-redis'}") |
19 |
| - testCompile("${lib.'spring-context-support'}") |
20 |
| - testCompile("${lib.'spring-jdbc'}") |
21 |
| - testCompile("javax.annotation:javax.annotation-api:1.3.2") |
22 |
| - testCompile("${lib.cglib}") |
| 11 | + testImplementation "${lib.h2}" |
| 12 | + testImplementation "${lib.sqlserver}" |
| 13 | + testImplementation "${lib.postgresql}" |
| 14 | + testImplementation lib.oracle as ConfigurableFileTree |
| 15 | + testImplementation "${lib.mysql}" |
| 16 | + testImplementation "${lib.jackson}" |
| 17 | + testImplementation "${lib.'mybatis-ehcache'}" |
| 18 | + testImplementation "${lib.'mybatis-redis'}" |
| 19 | + testImplementation "${lib.'spring-context-support'}" |
| 20 | + testImplementation "${lib.'spring-jdbc'}" |
| 21 | + testImplementation "javax.annotation:javax.annotation-api:1.3.2" |
| 22 | + testImplementation "${lib.cglib}" |
23 | 23 | // testCompile ('org.apache.phoenix:phoenix-core:5.0.0-HBase-2.0')
|
24 | 24 | }
|
0 commit comments