123456789101112131415161718192021222324252627282930313233 |
- apply plugin: 'java'
- sourceCompatibility = 1.8
- dependencies {
- compile project(":mybatis-plus-core")
- compile rootProject.ext.dependencies["mybatis-spring"]
- compile rootProject.ext.dependencies["mybatis"]
- provided rootProject.ext.dependencies["spring-context-support"]
- provided rootProject.ext.dependencies["spring-jdbc"]
- testCompile group: 'org.springframework', name: 'spring-web', version: '4.3.5.RELEASE'
- testCompile 'javax.servlet:servlet-api:2.5'
- testCompile 'junit:junit:4.12'
- testCompile rootProject.ext.dependencies["lombok"]
- testCompile rootProject.ext.dependencies["spring-test"]
- testCompile rootProject.ext.dependencies["fastjson"]
- testCompile rootProject.ext.dependencies["hikaricp"]
- testCompile rootProject.ext.dependencies["commons-dbcp2"]
- testCompile rootProject.ext.dependencies["druid"]
- testCompile rootProject.ext.dependencies["tomcatjdbc"]
- 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"]
- }
|