|
@@ -4,25 +4,25 @@ dependencies {
|
|
|
api(project(":mybatis-plus-extension"))
|
|
|
implementation(project(":mybatis-plus-generator"))
|
|
|
|
|
|
- testCompile("${lib["spring-web"]}")
|
|
|
- testCompile("${lib["javax.servlet-api"]}")
|
|
|
+ testImplementation("${lib["spring-web"]}")
|
|
|
+ testImplementation("${lib["javax.servlet-api"]}")
|
|
|
|
|
|
- testCompile("${lib["spring-test"]}")
|
|
|
- testCompile("${lib["fastjson"]}")
|
|
|
+ testImplementation("${lib["spring-test"]}")
|
|
|
+ testImplementation("${lib["fastjson"]}")
|
|
|
|
|
|
- testCompile("${lib["hikaricp"]}")
|
|
|
- testCompile("${lib["commons-dbcp2"]}")
|
|
|
- testCompile("${lib["druid"]}")
|
|
|
- testCompile("${lib["tomcatjdbc"]}")
|
|
|
+ testImplementation("${lib["hikaricp"]}")
|
|
|
+ testImplementation("${lib["commons-dbcp2"]}")
|
|
|
+ testImplementation("${lib["druid"]}")
|
|
|
+ testImplementation("${lib["tomcatjdbc"]}")
|
|
|
|
|
|
- testCompile("${lib["h2"]}")
|
|
|
- testCompile("${lib["sqlserver"]}")
|
|
|
- testCompile("${lib["postgresql"]}")
|
|
|
- testCompile(lib["oracle"] as ConfigurableFileTree)
|
|
|
- testCompile("${lib["mysql"]}")
|
|
|
- testCompile("${lib["jackson"]}")
|
|
|
- testCompile("${lib["logback-classic"]}")
|
|
|
+ testImplementation("${lib["h2"]}")
|
|
|
+ testImplementation("${lib["sqlserver"]}")
|
|
|
+ testImplementation("${lib["postgresql"]}")
|
|
|
+ testImplementation(lib["oracle"] as ConfigurableFileTree)
|
|
|
+ testImplementation("${lib["mysql"]}")
|
|
|
+ testImplementation("${lib["jackson"]}")
|
|
|
+ testImplementation("${lib["logback-classic"]}")
|
|
|
|
|
|
- testCompile("${lib["spring-context-support"]}")
|
|
|
- testCompile("${lib["spring-jdbc"]}")
|
|
|
+ testImplementation("${lib["spring-context-support"]}")
|
|
|
+ testImplementation("${lib["spring-jdbc"]}")
|
|
|
}
|