build.gradle 1.2 KB

123456789101112131415161718192021222324252627282930313233
  1. apply plugin: 'java'
  2. sourceCompatibility = 1.8
  3. dependencies {
  4. compile project(":mybatis-plus-core")
  5. compile rootProject.ext.dependencies["mybatis-spring"]
  6. compile rootProject.ext.dependencies["mybatis"]
  7. provided rootProject.ext.dependencies["spring-context-support"]
  8. provided rootProject.ext.dependencies["spring-jdbc"]
  9. testCompile group: 'org.springframework', name: 'spring-web', version: '4.3.5.RELEASE'
  10. testCompile 'javax.servlet:servlet-api:2.5'
  11. testCompile 'junit:junit:4.12'
  12. testCompile rootProject.ext.dependencies["lombok"]
  13. testCompile rootProject.ext.dependencies["spring-test"]
  14. testCompile rootProject.ext.dependencies["fastjson"]
  15. testCompile rootProject.ext.dependencies["hikaricp"]
  16. testCompile rootProject.ext.dependencies["commons-dbcp2"]
  17. testCompile rootProject.ext.dependencies["druid"]
  18. testCompile rootProject.ext.dependencies["tomcatjdbc"]
  19. testCompile rootProject.ext.dependencies["h2"]
  20. testCompile rootProject.ext.dependencies["sqlserver"]
  21. testCompile rootProject.ext.dependencies["postgresql"]
  22. testCompile rootProject.ext.dependencies["oracle"]
  23. testCompile rootProject.ext.dependencies["mysql"]
  24. }