build.gradle 1.1 KB

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'java'
  2. sourceCompatibility = 1.7
  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 'junit:junit:4.12'
  11. testCompile rootProject.ext.dependencies["lombok"]
  12. testCompile rootProject.ext.dependencies["spring-test"]
  13. testCompile rootProject.ext.dependencies["fastjson"]
  14. testCompile rootProject.ext.dependencies["hikaricp"]
  15. testCompile rootProject.ext.dependencies["commons-dbcp2"]
  16. testCompile rootProject.ext.dependencies["druid"]
  17. testCompile rootProject.ext.dependencies["tomcatjdbc"]
  18. testCompile rootProject.ext.dependencies["h2"]
  19. testCompile rootProject.ext.dependencies["sqlserver"]
  20. testCompile rootProject.ext.dependencies["postgresql"]
  21. testCompile rootProject.ext.dependencies["oracle"]
  22. testCompile rootProject.ext.dependencies["mysql"]
  23. }