1234567891011121314151617181920212223242526 |
- apply plugin: 'java'
- sourceCompatibility = 1.8
- dependencies {
- compile project(":mybatis-plus-annotation")
- compile rootProject.ext.dependencies["mybatis"]
- compile rootProject.ext.dependencies["jsqlparser"]
- // compile rootProject.ext.dependencies["mybatis-spring"]
- provided rootProject.ext.dependencies["cglib"]
- provided rootProject.ext.dependencies["spring-aop"]
- // provided rootProject.ext.dependencies["spring-tx"]
- testCompile rootProject.ext.dependencies["mybatis-ehcache"]
- testCompile rootProject.ext.dependencies["logback-classic"]
- testCompile(rootProject.ext.dependencies["commons-dbcp2"]) {
- exclude module: "commons-logging"
- }
- testCompile rootProject.ext.dependencies["aspectjweaver"]
- testCompile rootProject.ext.dependencies["hikaricp"]
- testCompile rootProject.ext.dependencies["druid"]
- testCompile rootProject.ext.dependencies["fastjson"]
- testCompile rootProject.ext.dependencies["tomcatjdbc"]
- }
|