|
@@ -1,28 +1,28 @@
|
|
|
apply plugin: 'org.jetbrains.kotlin.jvm'
|
|
|
dependencies {
|
|
|
api project(":mybatis-plus-core")
|
|
|
- api rootProject.ext.dependencies["mybatis-spring"]
|
|
|
- api rootProject.ext.dependencies["mybatis"]
|
|
|
+ api lib."mybatis-spring" as String
|
|
|
+ api lib.mybatis as String
|
|
|
|
|
|
- implementation rootProject.ext.dependencies["kotlin-stdlib-jdk8"]
|
|
|
- implementation rootProject.ext.dependencies["kotlin-reflect"]
|
|
|
- implementation rootProject.ext.dependencies["spring-context-support"]
|
|
|
- implementation rootProject.ext.dependencies["spring-jdbc"]
|
|
|
- implementation rootProject.ext.dependencies["slf4j-api"]
|
|
|
+ implementation lib."kotlin-stdlib-jdk8" as String
|
|
|
+ implementation lib."kotlin-reflect" as String
|
|
|
+ implementation lib."spring-context-support" as String
|
|
|
+ implementation lib."spring-jdbc" as String
|
|
|
+ implementation lib."slf4j-api" as String
|
|
|
|
|
|
- testCompile rootProject.ext.dependencies["spring-web"]
|
|
|
- testCompile rootProject.ext.dependencies["javax.servlet-api"]
|
|
|
- testCompile rootProject.ext.dependencies["spring-test"]
|
|
|
- testCompile rootProject.ext.dependencies["fastjson"]
|
|
|
+ testCompile lib."spring-web" as String
|
|
|
+ testCompile lib."javax.servlet-api" as String
|
|
|
+ testCompile lib."spring-test" as String
|
|
|
+ testCompile lib.fastjson as String
|
|
|
|
|
|
- testCompile rootProject.ext.dependencies["hikaricp"]
|
|
|
- testCompile rootProject.ext.dependencies["commons-dbcp2"]
|
|
|
- testCompile rootProject.ext.dependencies["druid"]
|
|
|
- testCompile rootProject.ext.dependencies["tomcatjdbc"]
|
|
|
+ testCompile lib.hikaricp as String
|
|
|
+ testCompile lib."commons-dbcp2" as String
|
|
|
+ testCompile lib.druid as String
|
|
|
+ testCompile lib.tomcatjdbc as String
|
|
|
|
|
|
- testCompile rootProject.ext.dependencies["h2"]
|
|
|
- testCompile rootProject.ext.dependencies["sqlserver"]
|
|
|
- testCompile rootProject.ext.dependencies["postgresql"]
|
|
|
- testCompile rootProject.ext.dependencies["oracle"]
|
|
|
- testCompile rootProject.ext.dependencies["mysql"]
|
|
|
+ testCompile lib.h2 as String
|
|
|
+ testCompile lib.sqlserver as String
|
|
|
+ testCompile lib.postgresql as String
|
|
|
+ testCompile lib.oracle as ConfigurableFileTree
|
|
|
+ testCompile lib.mysql as String
|
|
|
}
|